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/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/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/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..f06c2bcd8 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/pom.xml @@ -0,0 +1,165 @@ + + + 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 + + + + io.springfox + springfox-swagger2 + 2.9.2 + + + io.springfox + springfox-swagger-ui + 2.9.2 + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + angular-ecommerce + sut + + + + + 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..810faefd2 --- /dev/null +++ b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/java/com/techie/shoppingstore/config/AppSecurityConfig.java @@ -0,0 +1,86 @@ +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/**", +// MODIFIED + "/v2/api-docs/**") + .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/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/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..cbc44bd30 --- /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.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/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 000000000..0e316f376 Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/auth.jks differ 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 000000000..8cd62f05e Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page-with-filters.PNG differ 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 000000000..b950c35fc Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/category-page.PNG differ diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/homepage.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/homepage.PNG new file mode 100644 index 000000000..8fd9c465a Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/homepage.PNG differ 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 000000000..b9102b2a1 Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-description-section.PNG differ diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-review-section.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-review-section.PNG new file mode 100644 index 000000000..6489b4389 Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page-review-section.PNG differ 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 000000000..e2fba5f9b Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/product-page.PNG differ diff --git a/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/search-page.PNG b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/search-page.PNG new file mode 100644 index 000000000..f454176c3 Binary files /dev/null and b/jdk_8_maven/cs/rest/original/angular-ecommerce/src/main/resources/images/search-page.PNG differ 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 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..5cf41c771 --- /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.elasticsearch.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 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..f729f2149 --- /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.elasticsearch.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 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/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 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|✓|