reviewed 0.4.6 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/.ruby-version +1 -1
  3. data/lib/reviewed/article.rb +0 -1
  4. data/lib/reviewed/attachable.rb +14 -7
  5. data/lib/reviewed/product.rb +0 -1
  6. data/lib/reviewed/version.rb +1 -1
  7. data/spec/attachable_spec.rb +22 -0
  8. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +338 -289
  9. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +237 -245
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +280 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +281 -301
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +340 -324
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +237 -245
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +237 -245
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +237 -245
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +237 -245
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +237 -245
  18. data/spec/fixtures/vcr/Reviewed_Article/does_not_request_for_an_attachment_if_it_can_be_found_in_attributes.yml +387 -0
  19. data/spec/fixtures/vcr/Reviewed_Article/fetches_all_attachments_when_no_tag_is_asked_for.yml +195 -0
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_attachments_when_non-existent.yml +137 -0
  21. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +75 -0
  22. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_an_tag_is_not_in_pre-loaded_set.yml +75 -0
  23. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +377 -394
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +471 -487
  25. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +471 -487
  26. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +471 -487
  27. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +137 -0
  28. data/spec/fixtures/vcr/Reviewed_Article/sets_DEFAULT_ATTACHMENTS.yml +75 -0
  29. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +138 -195
  30. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +48 -71
  31. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +73 -113
  32. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +73 -113
  33. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +140 -197
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +73 -113
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +73 -113
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +73 -113
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +73 -113
  38. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +73 -113
  39. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +73 -113
  40. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +73 -113
  41. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +210 -307
  42. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +73 -113
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +98 -125
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +98 -136
  45. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +55 -81
  46. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +98 -136
  47. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +98 -125
  48. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +55 -81
  49. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +55 -81
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +49 -67
  51. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +138 -195
  52. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +47 -51
  53. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +105 -207
  54. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +138 -195
  55. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +138 -195
  56. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +237 -245
  57. data/spec/spec_helper.rb +1 -1
  58. metadata +45 -55
@@ -1,358 +1,261 @@
1
- ---
2
- http_interactions:
3
- - request:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
4
  method: get
5
5
  uri: https://the-guide-staging.herokuapp.com/api/v1/products
6
- body:
6
+ body:
7
7
  encoding: US-ASCII
8
- string: ""
9
- headers:
10
- X-Reviewed-Authorization:
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.7
12
+ X-Reviewed-Authorization:
11
13
  - 38e397252ec670ec441733a95204f141
12
- Accept-Encoding:
14
+ Accept-Encoding:
13
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
- Accept:
15
- - "*/*"
16
- User-Agent:
17
- - Ruby
18
- response:
19
- status:
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
20
  code: 200
21
21
  message: OK
22
- headers:
23
- Access-Control-Allow-Credentials:
24
- - "true"
25
- Access-Control-Allow-Headers:
26
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
27
- Access-Control-Allow-Methods:
22
+ headers:
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
27
+ x-skip-cache, Content-Type
28
+ Access-Control-Allow-Methods:
28
29
  - OPTIONS, GET, POST, PUT, DELETE
29
- Access-Control-Allow-Origin:
30
- - "*"
31
- Access-Control-Max-Age:
32
- - "1000"
33
- Cache-Control:
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
34
35
  - no-cache, no-store
35
- Content-Encoding:
36
- - gzip
37
- Content-Type:
36
+ Content-Type:
38
37
  - application/json; charset=utf-8
39
- Date:
40
- - Sat, 27 Apr 2013 01:46:20 GMT
41
- Status:
38
+ Date:
39
+ - Thu, 27 Jun 2013 15:42:18 GMT
40
+ Etag:
41
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
+ Status:
42
43
  - 200 OK
43
- Strict-Transport-Security:
44
+ Strict-Transport-Security:
44
45
  - max-age=31536000
45
- Vary:
46
+ Vary:
46
47
  - Accept-Encoding
47
- X-Request-Id:
48
- - fe83c94f4c77d3ac90f30998ba64be02
49
- X-Runtime:
50
- - "1.955995"
51
- X-Ua-Compatible:
48
+ X-Request-Id:
49
+ - f8324104d6ab1c70ca2beea8bf0a0827
50
+ X-Runtime:
51
+ - '0.000519'
52
+ X-Ua-Compatible:
52
53
  - IE=Edge,chrome=1
53
- Transfer-Encoding:
54
+ Transfer-Encoding:
54
55
  - chunked
55
- Connection:
56
+ Connection:
56
57
  - keep-alive
57
- body:
58
- encoding: ASCII-8BIT
59
- string: !binary |
60
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Rd+Km4gQ4ZqOtlVm1tGqLlL8/0P5bI9IX/T0+oo7jP8oxk1rGDebGFfGiFhz
81
- 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
- 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
- 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
- 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
- V7bHuYG+YCkjbaCU+IA5D4Jr+RGNYmm2jWIiY0poJElkJKeVVpv6Ferk/JNR
86
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- OG35witBuHY2CwGB1kwPGMZQHOrKkYAgPjX87ZsaN98SsOH3YF3O7X0J8DMO
95
- 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
- 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
- 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
- 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
- zAxCAhsEidAQsFpmvruF1TLvTmrKx2nmC7mJSSvchJX/B4WEH4+bGmuohCIA
100
- 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
- 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
- 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
- JOl974MA4OLz70tsmlmOb2yOfspfzszp2D0+Ma2tCULEjjhH1wgjyInkElLt
104
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- CQt74GBPRUjrXQ67YX+j9LjMde8CI/rLJ//y/HLJ+2Ka52ubFz34w3h4GPJp
113
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
127
-
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":17660,"total_pages":883,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"5139fc6e095ca50e890005f3","created_at":"2013-03-08T14:57:50Z","updated_at":"2013-04-23T17:24:07Z","name":"Panasonic
61
+ Viera TC-L47E5","slug":"panasonic-viera-tc-l47e5-2","_type":"Electronics::Television","types":[],"msrp":799.0,"article_ids":["51389dc50ac94eacc70003f3"],"website_ids":[],"publish_on":"2013-03-08T14:04:53+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"513a0a39095ca5e0ee000560","model":"","resource_uri":"/products/panasonic-viera-tc-l47e5-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"5139febd07989eb5fc0004cc","created_at":"2013-03-08T15:07:41Z","updated_at":"2013-03-08T15:07:41Z","name":"Front-Vanity.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s50x50_Front-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s150x150_Front-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s250x250_Front-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x150_Front-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x112_Front-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s500x500_Front-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x400_Front-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x600_Front-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x400_Front-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x350_Front-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x110_Front-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/Front-Vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/uploads/tmp/20130308-1507-41-8884/Front-Vanity.jpg","file_size":113973},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139febd07989eb5fc0004cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139febd07989eb5fc0004cc"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e700001f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e700001f"}}},{"id":"5138d3ec90a1bfbef20005ab","created_at":"2013-03-07T17:52:44Z","updated_at":"2013-03-08T01:46:10Z","name":"Ariston
62
+ TVF63X","slug":"tvf63x","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:36:10+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b0","brand_id":"51390ce25693113d8c00010c","model":"","resource_uri":"/products/tvf63x","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":2.9,"ranking":{"total":50,"rank":48,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003b0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"Dryers","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b0"}}},"attachments":[{"id":"5139011c9da86c5336000023","created_at":"2013-03-07T21:05:32Z","updated_at":"2013-03-07T21:17:18Z","name":"Ariston-TVF63X-vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s50x50_Ariston-TVF63X-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s150x150_Ariston-TVF63X-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s250x250_Ariston-TVF63X-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x150_Ariston-TVF63X-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x112_Ariston-TVF63X-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s500x500_Ariston-TVF63X-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x400_Ariston-TVF63X-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x600_Ariston-TVF63X-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x400_Ariston-TVF63X-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x350_Ariston-TVF63X-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x110_Ariston-TVF63X-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg","file_size":74734},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139011c9da86c5336000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139011c9da86c5336000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000020","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000020"}}},{"id":"5138cff9de88c3180e0006a0","created_at":"2013-03-07T17:35:53Z","updated_at":"2013-03-11T21:04:39Z","name":"GTDS820EDWS","slug":"gtds820edws","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":1099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:15:50+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"5138d10d12494f43310004ae","model":"","resource_uri":"/products/gtds820edws","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000021","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000021"}}},{"id":"5138b9f4cb4ae870aa000522","created_at":"2013-03-07T16:01:56Z","updated_at":"2013-03-08T02:20:05Z","name":"Frigidaire
63
+ FAHE4044MW ","slug":"frigidaire-fahe4044mw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":649.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-04-06T14:20:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"51394ad545ba4bfa85000100","model":"","resource_uri":"/products/frigidaire-fahe4044mw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":50,"rank":47,"percentile":6},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
64
+ Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"attachments":[{"id":"513900c17a0082ebca000031","created_at":"2013-03-07T21:04:01Z","updated_at":"2013-03-10T02:33:58Z","name":"Front.jpg","type":"file","tags":["Front.jpg","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/Front.jpg"},"caption":"The
65
+ front of the washer","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/Front.jpg","file_size":126981},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/513900c17a0082ebca000031","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/513900c17a0082ebca000031"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000022","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000022"}}},{"id":"513639647226fa851900061f","created_at":"2013-03-05T18:28:53Z","updated_at":"2013-03-31T14:38:12Z","name":"ELEFT325","slug":"eleft325","_type":"Electronics::Television","types":[],"msrp":290.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-08T08:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"513a47f29da86c965800080b","model":"","resource_uri":"/products/eleft325","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.94,"ranking":{"total":262,"rank":163,"percentile":38},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
66
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000023","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000023"}}},{"id":"51362cdf9e4e47720b0004d2","created_at":"2013-03-05T17:35:27Z","updated_at":"2013-03-31T14:38:11Z","name":"Magnavox
67
+ 32MD301B","slug":"magnavox-32md301b","_type":"Electronics::Television","types":[],"msrp":499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-05T04:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"51377ceffcc113c3fc000490","model":"","resource_uri":"/products/magnavox-32md301b","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.24,"ranking":{"total":262,"rank":254,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
68
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"51362fe2f15f513c230006d6","created_at":"2013-03-05T17:48:18Z","updated_at":"2013-03-10T02:30:07Z","name":"front.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg"},"caption":"Maybe
69
+ it''s just us, but that red stripe below the logo is kind of ugly.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg","file_size":64804},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51362fe2f15f513c230006d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51362fe2f15f513c230006d6"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000024","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000024"}}},{"id":"5134bf84f7fb8dc21b000223","created_at":"2013-03-04T15:36:36Z","updated_at":"2013-03-14T14:12:53Z","name":"LG
70
+ WT1101CW","slug":"lg-wt1101cw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":699.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-04T15:14:13+00:00","upc":"","price_grabber_id":"1080763319","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"513a04289da86c69df000691","model":"","resource_uri":"/products/lg-wt1101cw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.23,"ranking":{"total":50,"rank":42,"percentile":16},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
71
+ Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"attachments":[{"id":"5134be6bf83e98e0f200029b","created_at":"2013-03-04T15:31:55Z","updated_at":"2013-03-10T02:28:50Z","name":"Vanity","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s150x150_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x600_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg","file_size":11636},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5134be6bf83e98e0f200029b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5134be6bf83e98e0f200029b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000025","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000025"}}},{"id":"512cfd37ba5f4c688e000099","created_at":"2013-02-26T18:21:43Z","updated_at":"2013-03-11T21:05:28Z","name":"Nikon
72
+ Coolpix S31","slug":"nikon-coolpix-s31","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":119.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-03T13:01:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512cff109ca88f193b0001aa","model":"","resource_uri":"/products/nikon-coolpix-s31","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d589156bdb6e7000026","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d589156bdb6e7000026"}}},{"id":"512cf3e000a2d9744d000091","created_at":"2013-02-26T17:41:53Z","updated_at":"2013-03-11T21:05:06Z","name":"Nikon
73
+ Coolpix AW110","slug":"nikon-coolpix-aw110","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":349.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-01-31T12:48:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512e3e1c9c4005ed4e000024","model":"","resource_uri":"/products/nikon-coolpix-aw110","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e7000027","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e7000027"}}},{"id":"512ce285ebb3185cc600066a","created_at":"2013-02-26T16:27:49Z","updated_at":"2013-03-11T21:04:00Z","name":"Nikon
74
+ Coolpix S9500","slug":"nikon-coolpix-s9500","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":349.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-02T11:23:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512e3a3bb4ea102fca00002c","model":"","resource_uri":"/products/nikon-coolpix-s9500","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e7000028","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e7000028"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-11T21:04:15Z","name":"Fujifilm
75
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-01T10:26:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512ce232184a8a15e800019b","model":"","resource_uri":"/products/fujifilm-f900exr","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e7000029","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e7000029"}}},{"id":"512be11481470fe1c10001a6","created_at":"2013-02-25T22:09:24Z","updated_at":"2013-03-11T21:05:26Z","name":"Canon
76
+ PowerShot ELPH 115 IS","slug":"canon-powershot-elph-115-is","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":169.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-05T17:43:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512be189a8758504860001e9","model":"","resource_uri":"/products/canon-powershot-elph-115-is","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002a"}}},{"id":"512bc7f34b8e6d1129000109","created_at":"2013-02-25T20:22:11Z","updated_at":"2013-03-11T21:03:58Z","name":"Canon
77
+ PowerShot 330 HS","slug":"powershot-330-hs","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-01T13:55:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512bcc738f5db50843000114","model":"","resource_uri":"/products/powershot-330-hs","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002b"}}},{"id":"51278bac6143ac867900023c","created_at":"2013-02-22T15:15:56Z","updated_at":"2013-03-31T14:38:13Z","name":"Hisense
78
+ 55XT710","slug":"hisense-55xt710","_type":"Electronics::Television","types":[],"msrp":1099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-19T09:09:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5139d7a59da86c69df000506","model":"","resource_uri":"/products/hisense-55xt710","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.69,"ranking":{"total":262,"rank":200,"percentile":24},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
79
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"512f6e1375dec71baf0003ec","created_at":"2013-02-28T14:47:47Z","updated_at":"2013-03-07T21:38:33Z","name":"Front.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/Front.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/Front.jpg","file_size":52258},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/512f6e1375dec71baf0003ec","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/512f6e1375dec71baf0003ec"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002c"}}},{"id":"5124f2fad7ee352066000492","created_at":"2013-02-20T15:59:54Z","updated_at":"2013-03-31T14:38:13Z","name":"Sceptre
80
+ E325BV-HDH","slug":"sceptre-e325bv-hdh","_type":"Electronics::Television","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-20T15:17:23+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5138f58e1eb889ace70006ec","model":"","resource_uri":"/products/sceptre-e325bv-hdh","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":6.53,"ranking":{"total":262,"rank":68,"percentile":75},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
81
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"5124f32449a663e0a4000078","created_at":"2013-02-20T16:00:36Z","updated_at":"2013-02-28T04:50:10Z","name":"Vanity","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s50x50_Sceptre-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s150x150_Sceptre-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s250x250_Sceptre-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s300x150_Sceptre-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s300x112_Sceptre-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s500x500_Sceptre-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s600x400_Sceptre-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s600x600_Sceptre-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x400_Sceptre-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x350_Sceptre-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x110_Sceptre-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/Sceptre-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/Sceptre-vanity.jpg","file_size":102514},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5124f32449a663e0a4000078","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5124f32449a663e0a4000078"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002d"}}},{"id":"5123ba2a6c477e686e000811","created_at":"2013-02-19T17:45:14Z","updated_at":"2013-03-31T14:38:13Z","name":"LG
82
+ 47LM8600","slug":"lg-47lm8600","_type":"Electronics::Television","types":[],"msrp":2299.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-15T12:59:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5138f6a4e2289ec912000723","model":"","resource_uri":"/products/lg-47lm8600","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":6.1,"ranking":{"total":262,"rank":130,"percentile":51},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
83
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"5124dd0bd7ee35a84e00049d","created_at":"2013-02-20T14:26:19Z","updated_at":"2013-02-28T04:50:05Z","name":"Vanity","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/Front.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/Front.jpg","file_size":41661},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5124dd0bd7ee35a84e00049d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5124dd0bd7ee35a84e00049d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002e"}}},{"id":"511e5a198021d5fed7000425","created_at":"2013-02-15T15:54:01Z","updated_at":"2013-03-11T21:03:59Z","name":"Nikon
84
+ 1 V2","slug":"nikon-1-v2-2","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-15T15:50:06+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"511e8fe3a82eb136f1000028","model":"","resource_uri":"/products/nikon-1-v2-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d599156bdb6e700002f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d599156bdb6e700002f"}}},{"id":"51101841be0d9f1d3c000045","created_at":"2013-02-04T20:21:21Z","updated_at":"2013-03-11T21:04:00Z","name":"Fujifilm
85
+ X-E1","slug":"fujifilm-x-e1-3","_type":"Electronics::Cameras::DSLR","types":[],"msrp":999.95,"article_ids":[],"website_ids":[],"publish_on":"2013-02-04T20:16:10+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"51101841be0d9f1d3c000047","model":"","resource_uri":"/products/fujifilm-x-e1-3","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5a9156bdb6e7000030","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5a9156bdb6e7000030"}}},{"id":"510019f7a0a353b1fc000076","created_at":"2013-01-23T17:12:23Z","updated_at":"2013-03-11T21:06:04Z","name":"Dell
86
+ UltraSharp U2713HM","slug":"dell-ultrasharp-u2713hm","_type":"Electronics::ComputerMonitor","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e0000029"],"publish_on":"2013-01-31T12:05:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"51001f564ffb7443bf000015","model":"","resource_uri":"/products/dell-ultrasharp-u2713hm","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5a9156bdb6e7000031","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5a9156bdb6e7000031"}}},{"id":"50fa347b96ab5860160c8e5e","created_at":"2013-01-14T18:13:17Z","updated_at":"2013-01-21T07:43:59Z","name":"Dacor
87
+ DDW24S","slug":"dacor-ddw24s","_type":"Appliances::MajorAppliances::Dishwasher","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000021"],"publish_on":"2013-01-14T18:13:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"DDW24S","resource_uri":"/products/dacor-ddw24s","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5a9156bdb6e7000032","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5a9156bdb6e7000032"}}}]}'
128
88
  http_version:
129
- recorded_at: Sat, 27 Apr 2013 01:46:20 GMT
130
- - request:
89
+ recorded_at: Thu, 27 Jun 2013 15:42:19 GMT
90
+ - request:
131
91
  method: get
132
92
  uri: https://the-guide-staging.herokuapp.com/api/v1/products?page=2
133
- body:
93
+ body:
134
94
  encoding: US-ASCII
135
- string: ""
136
- headers:
137
- X-Reviewed-Authorization:
95
+ string: ''
96
+ headers:
97
+ User-Agent:
98
+ - Faraday v0.8.7
99
+ X-Reviewed-Authorization:
138
100
  - 38e397252ec670ec441733a95204f141
139
- Accept-Encoding:
101
+ Accept-Encoding:
140
102
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
141
- Accept:
142
- - "*/*"
143
- User-Agent:
144
- - Ruby
145
- response:
146
- status:
103
+ Accept:
104
+ - '*/*'
105
+ response:
106
+ status:
147
107
  code: 200
148
108
  message: OK
149
- headers:
150
- Access-Control-Allow-Credentials:
151
- - "true"
152
- Access-Control-Allow-Headers:
153
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
154
- Access-Control-Allow-Methods:
109
+ headers:
110
+ Access-Control-Allow-Credentials:
111
+ - 'true'
112
+ Access-Control-Allow-Headers:
113
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
114
+ x-skip-cache, Content-Type
115
+ Access-Control-Allow-Methods:
155
116
  - OPTIONS, GET, POST, PUT, DELETE
156
- Access-Control-Allow-Origin:
157
- - "*"
158
- Access-Control-Max-Age:
159
- - "1000"
160
- Cache-Control:
117
+ Access-Control-Allow-Origin:
118
+ - '*'
119
+ Access-Control-Max-Age:
120
+ - '1000'
121
+ Cache-Control:
161
122
  - no-cache, no-store
162
- Content-Encoding:
163
- - gzip
164
- Content-Type:
123
+ Content-Type:
165
124
  - application/json; charset=utf-8
166
- Date:
167
- - Sat, 27 Apr 2013 01:46:22 GMT
168
- Status:
125
+ Date:
126
+ - Thu, 27 Jun 2013 15:42:21 GMT
127
+ Etag:
128
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
129
+ Status:
169
130
  - 200 OK
170
- Strict-Transport-Security:
131
+ Strict-Transport-Security:
171
132
  - max-age=31536000
172
- Vary:
133
+ Vary:
173
134
  - Accept-Encoding
174
- X-Request-Id:
175
- - 46a3b4cffe83014883058935abf065d3
176
- X-Runtime:
177
- - "0.970373"
178
- X-Ua-Compatible:
135
+ X-Request-Id:
136
+ - 1677317d06d66f9da865017162d409b4
137
+ X-Runtime:
138
+ - '0.019178'
139
+ X-Ua-Compatible:
179
140
  - IE=Edge,chrome=1
180
- Transfer-Encoding:
141
+ Transfer-Encoding:
181
142
  - chunked
182
- Connection:
143
+ Connection:
183
144
  - keep-alive
184
- body:
185
- encoding: ASCII-8BIT
186
- string: !binary |
187
- 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
- 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
- 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
- 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
- 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
- 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
- lC+g0C8Kpz5XUbFHJ/uxLKr+vlxGIY09ltr2B/p3wjcLPj2yGOoWVSEq35T3
194
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- lJIY+pBt37KIPYZFb9m8Xf/rYn74xrw4R0+19KCCydd1HVHXIL4i6ij8G7PX
213
- 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
- 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
- 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
- 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
- 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
- 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
- ZCUqrUT9Vm5Nf/989fXq09mFXs3sr618DP8NkymrC3/xlflEUTfem5vkBT8u
220
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
228
-
145
+ body:
146
+ encoding: UTF-8
147
+ string: '{"pagination":{"total":17660,"total_pages":883,"first_page":false,"last_page":false,"previous_page":1,"next_page":3,"out_of_bounds":false,"offset":20,"current_page":2,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa347b96ab5860160c8e5d","created_at":"2013-01-14T18:05:45Z","updated_at":"2013-01-21T07:43:43Z","name":"Dacor
148
+ DR30D","slug":"dacor-dr30d","_type":"Appliances::MajorAppliances::Oven","types":["Gas","Electric","Dual-Fuel"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-14T18:05:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"DR30D","resource_uri":"/products/dacor-dr30d","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5bf82dc772ea000041","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5bf82dc772ea000041"}}},{"id":"50fa347b96ab5860160c8e5c","created_at":"2013-01-14T18:05:41Z","updated_at":"2013-01-21T17:34:01Z","name":"Dacor
149
+ DR30DI","slug":"dacor-dr30di","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-14T18:05:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"DR30DI","resource_uri":"/products/dacor-dr30di","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5bf82dc772ea000042","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5bf82dc772ea000042"}}},{"id":"50fa347b96ab5860160c8e5b","created_at":"2013-01-14T18:00:09Z","updated_at":"2013-01-21T07:43:28Z","name":"Dacor
150
+ EF36IWF","slug":"dacor-ef36iwf","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
151
+ Door","French Door"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2013-01-14T18:00:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"EF36IWF","resource_uri":"/products/dacor-ef36iwf","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5bf82dc772ea000043","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5bf82dc772ea000043"}}},{"id":"50fa347b96ab5860160c8e5a","created_at":"2013-01-14T17:51:01Z","updated_at":"2013-02-27T18:17:12Z","name":"Dacor
152
+ IF36BNNFSF","slug":"dacor-if36bnnfsf","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
153
+ Door"],"msrp":2999.0,"article_ids":[],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2013-01-14T17:50:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"IF36BNNFSF","resource_uri":"/products/dacor-if36bnnfsf","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fcf4f0bd028662a701385c","created_at":"2013-01-21T07:57:36Z","updated_at":"2013-01-21T07:57:36Z","name":"Dacor-EF36BNNFSS-front.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s50x50_Dacor-EF36BNNFSS-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s150x150_Dacor-EF36BNNFSS-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s250x250_Dacor-EF36BNNFSS-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s300x150_Dacor-EF36BNNFSS-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s300x112_Dacor-EF36BNNFSS-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s500x500_Dacor-EF36BNNFSS-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s600x400_Dacor-EF36BNNFSS-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s600x600_Dacor-EF36BNNFSS-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s940x400_Dacor-EF36BNNFSS-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s940x350_Dacor-EF36BNNFSS-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/s940x110_Dacor-EF36BNNFSS-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/Dacor-EF36BNNFSS-front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/553a3264d0a2d9e82735a9ad9a8171fe8b2279bc/Dacor-EF36BNNFSS-front.jpg","file_size":13867,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fcf4f0bd028662a701385c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf4f0bd028662a701385c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5bf82dc772ea000044","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5bf82dc772ea000044"}}},{"id":"50fa347a96ab5860160c8e59","created_at":"2013-01-14T17:46:33Z","updated_at":"2013-01-21T07:43:28Z","name":"Dacor
154
+ EF36BNNFSS ","slug":"dacor-ef36bnnfss","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
155
+ Door","French Door"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2013-01-14T17:46:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"EF36BNNFSS","resource_uri":"/products/dacor-ef36bnnfss","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5bf82dc772ea000045","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5bf82dc772ea000045"}}},{"id":"50fa347a96ab5860160c8e58","created_at":"2013-01-14T17:31:36Z","updated_at":"2013-01-21T07:43:27Z","name":"Dacor
156
+ RDW24I ","slug":"dacor-rdw24i","_type":"Appliances::MajorAppliances::Dishwasher","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000021"],"publish_on":"2013-01-14T17:31:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"RDW24I","resource_uri":"/products/dacor-rdw24i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea000046","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea000046"}}},{"id":"50fa347a96ab5860160c8e57","created_at":"2013-01-14T17:31:02Z","updated_at":"2013-01-21T07:43:23Z","name":"Dacor
157
+ RDW24S","slug":"dacor-rdw24s","_type":"Appliances::MajorAppliances::Dishwasher","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000021"],"publish_on":"2013-01-14T17:31:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"RDW24S","resource_uri":"/products/dacor-rdw24s","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea000047","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea000047"}}},{"id":"50fa347a96ab5860160c8e56","created_at":"2013-01-11T23:32:19Z","updated_at":"2013-03-11T21:05:10Z","name":"Moneual
158
+ TV700 OS","slug":"moneual-tv700-os","_type":"Electronics::Television","types":["LED"],"msrp":null,"article_ids":["50fc385fbd0286d5550ab62d"],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T23:32:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7fbd0286638e0002f2","model":"TV700
159
+ OS","resource_uri":"/products/moneual-tv700-os","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea000048","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea000048"}}},{"id":"50fa347a96ab5860160c8e55","created_at":"2013-01-11T23:11:06Z","updated_at":"2013-01-21T07:43:21Z","name":"Dacor
160
+ MRES30S ","slug":"dacor-mres30s","_type":"Appliances::MajorAppliances::Oven","types":["Electric"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-11T23:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"MRES30S","resource_uri":"/products/dacor-mres30s","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea000049","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea000049"}}},{"id":"50fa347a96ab5860160c8e54","created_at":"2013-01-11T23:10:26Z","updated_at":"2013-01-21T07:43:09Z","name":"Dacor
161
+ ER30GI ","slug":"dacor-er30gi","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-11T23:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"ER30GI","resource_uri":"/products/dacor-er30gi","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004a"}}},{"id":"50fa347996ab5860160c8e53","created_at":"2013-01-11T23:10:22Z","updated_at":"2013-01-21T07:43:04Z","name":"Dacor
162
+ ER36GI","slug":"dacor-er36gi","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-11T23:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"ER36GI","resource_uri":"/products/dacor-er36gi","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004b"}}},{"id":"50fa347996ab5860160c8e52","created_at":"2013-01-11T23:10:17Z","updated_at":"2013-01-21T07:43:00Z","name":"Dacor
163
+ ER30G","slug":"dacor-er30g","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-11T23:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"ER30G","resource_uri":"/products/dacor-er30g","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004c"}}},{"id":"50fa347996ab5860160c8e51","created_at":"2013-01-11T23:10:15Z","updated_at":"2013-01-21T07:42:48Z","name":"Dacor
164
+ ER36G","slug":"dacor-er36g","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-01-11T23:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"ER36G","resource_uri":"/products/dacor-er36g","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004d"}}},{"id":"50fa347996ab5860160c8e50","created_at":"2013-01-11T20:10:10Z","updated_at":"2013-01-21T07:42:28Z","name":"VIZIO
165
+ E500d","slug":"vizio-e500d","_type":"Electronics::Television","types":["LED","3D"],"msrp":729.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:10:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E500d","resource_uri":"/products/vizio-e500d","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004e"}}},{"id":"50fa347996ab5860160c8e4f","created_at":"2013-01-11T20:09:10Z","updated_at":"2013-01-21T07:42:24Z","name":"VIZIO
166
+ E420d","slug":"vizio-e420d","_type":"Electronics::Television","types":["LED","3D"],"msrp":529.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:09:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E420d","resource_uri":"/products/vizio-e420d","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5cf82dc772ea00004f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5cf82dc772ea00004f"}}},{"id":"50fa347996ab5860160c8e4e","created_at":"2013-01-11T20:08:34Z","updated_at":"2013-01-21T07:42:22Z","name":"VIZIO
167
+ E650i","slug":"vizio-e650i","_type":"Electronics::Television","types":["LED"],"msrp":1299.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:08:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E650i","resource_uri":"/products/vizio-e650i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5df82dc772ea000050","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5df82dc772ea000050"}}},{"id":"50fa347896ab5860160c8e4d","created_at":"2013-01-11T20:08:06Z","updated_at":"2013-01-21T07:42:21Z","name":"VIZIO
168
+ E500i","slug":"vizio-e500i","_type":"Electronics::Television","types":["LCD"],"msrp":699.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:08:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E500i","resource_uri":"/products/vizio-e500i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5df82dc772ea000051","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5df82dc772ea000051"}}},{"id":"50fa347896ab5860160c8e4c","created_at":"2013-01-11T20:07:42Z","updated_at":"2013-01-21T07:42:04Z","name":"VIZIO
169
+ E470i","slug":"vizio-e470i","_type":"Electronics::Television","types":["LED"],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:07:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E470i","resource_uri":"/products/vizio-e470i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5df82dc772ea000052","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5df82dc772ea000052"}}},{"id":"50fa347896ab5860160c8e4b","created_at":"2013-01-11T20:07:12Z","updated_at":"2013-01-21T07:42:02Z","name":"VIZIO
170
+ E420i","slug":"vizio-e420i","_type":"Electronics::Television","types":["LED"],"msrp":499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:07:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E420i","resource_uri":"/products/vizio-e420i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5df82dc772ea000053","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5df82dc772ea000053"}}},{"id":"50fa347896ab5860160c8e4a","created_at":"2013-01-11T20:06:45Z","updated_at":"2013-01-21T07:41:41Z","name":"VIZIO
171
+ E390i","slug":"vizio-e390i","_type":"Electronics::Television","types":[],"msrp":399.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-11T20:06:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed75bd0286638e00018b","model":"E390i","resource_uri":"/products/vizio-e390i","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5df82dc772ea000054","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5df82dc772ea000054"}}}]}'
229
172
  http_version:
230
- recorded_at: Sat, 27 Apr 2013 01:46:22 GMT
231
- - request:
173
+ recorded_at: Thu, 27 Jun 2013 15:42:22 GMT
174
+ - request:
232
175
  method: get
233
176
  uri: https://the-guide-staging.herokuapp.com/api/v1/products?page=1
234
- body:
177
+ body:
235
178
  encoding: US-ASCII
236
- string: ""
237
- headers:
238
- X-Reviewed-Authorization:
179
+ string: ''
180
+ headers:
181
+ User-Agent:
182
+ - Faraday v0.8.7
183
+ X-Reviewed-Authorization:
239
184
  - 38e397252ec670ec441733a95204f141
240
- Accept-Encoding:
185
+ Accept-Encoding:
241
186
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
242
- Accept:
243
- - "*/*"
244
- User-Agent:
245
- - Ruby
246
- response:
247
- status:
187
+ Accept:
188
+ - '*/*'
189
+ response:
190
+ status:
248
191
  code: 200
249
192
  message: OK
250
- headers:
251
- Access-Control-Allow-Credentials:
252
- - "true"
253
- Access-Control-Allow-Headers:
254
- - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization, x-skip-cache, Content-Type
255
- Access-Control-Allow-Methods:
193
+ headers:
194
+ Access-Control-Allow-Credentials:
195
+ - 'true'
196
+ Access-Control-Allow-Headers:
197
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
198
+ x-skip-cache, Content-Type
199
+ Access-Control-Allow-Methods:
256
200
  - OPTIONS, GET, POST, PUT, DELETE
257
- Access-Control-Allow-Origin:
258
- - "*"
259
- Access-Control-Max-Age:
260
- - "1000"
261
- Cache-Control:
201
+ Access-Control-Allow-Origin:
202
+ - '*'
203
+ Access-Control-Max-Age:
204
+ - '1000'
205
+ Cache-Control:
262
206
  - no-cache, no-store
263
- Content-Encoding:
264
- - gzip
265
- Content-Type:
207
+ Content-Type:
266
208
  - application/json; charset=utf-8
267
- Date:
268
- - Sat, 27 Apr 2013 01:46:24 GMT
269
- Status:
209
+ Date:
210
+ - Thu, 27 Jun 2013 15:42:25 GMT
211
+ Etag:
212
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
213
+ Status:
270
214
  - 200 OK
271
- Strict-Transport-Security:
215
+ Strict-Transport-Security:
272
216
  - max-age=31536000
273
- Vary:
217
+ Vary:
274
218
  - Accept-Encoding
275
- X-Request-Id:
276
- - 8e0186eac59cd696c985de11982c4bd7
277
- X-Runtime:
278
- - "1.725476"
279
- X-Ua-Compatible:
219
+ X-Request-Id:
220
+ - 6237ca62dd67e9ffbbc8a7c9454f679c
221
+ X-Runtime:
222
+ - '0.025699'
223
+ X-Ua-Compatible:
280
224
  - IE=Edge,chrome=1
281
- Transfer-Encoding:
225
+ Transfer-Encoding:
282
226
  - chunked
283
- Connection:
227
+ Connection:
284
228
  - keep-alive
285
- body:
286
- encoding: ASCII-8BIT
287
- string: !binary |
288
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- kB/y5DaJZZLrwYd3Hy8IIOTqZrBmpVnl+0aOtcu/e2hLzRtZjK1ArqQd+BNd
313
- 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
- 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
- +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
- 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
- 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
- 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
- HdaG3ZW8ncj77HGA0dU5BvCXNd/vFlk+Rncxdlb0QaAnL/GC7AM9HQLyE0Af
320
- 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
- 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
- 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
- bMq5uy8BfsaBgza/A7D34LwK8vcenFdEft4Z+fkm+ZEyMQ4iSQ1RjM+RJ8Tu
324
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Oh3b+qifFC+HKGQviXDYQ9EqqoMc0e60KuFC8oByCgh3tj/UoiVF94uwB2oP
335
- 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
- jaVrBNgcf3wEgHZohdq20SPyU6kAc0PjiAJOsNMAbOvx3CG2Hpo9NN8mNHVn
337
- 0NRb0Ax4JBWDBEvFWeCgibBqhCaqoonovs1y6zjaehDLx6TQk0IPKP0yDOqL
338
- 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
- mybYzuMh6iG0AGxSE/UxtK8xkqqPoX1FsD88rO35mjdhTwwyMg60xhQBxqpY
340
- /YZNExb2wMGeipA2uxx2w/5a6WmZ68EFRvSXz/7H849r3hfzPF/bvOjeH8fj
341
- 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
- 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
- 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
- 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
- BQcIxtTo2BmSpDo5YTffaWXTkxC08XqLJ/FqcPAZeVthatC/R80nH6+83OfX
346
- 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
- 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
- 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
- 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
- zKeD31EA8cerNRItH1J/5goUroA/cwXGd41ozO6ms1LnV/a6zI5/FDwSz2wF
351
- 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
- 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
- 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
- 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
355
-
229
+ body:
230
+ encoding: UTF-8
231
+ string: '{"pagination":{"total":17660,"total_pages":883,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"5139fc6e095ca50e890005f3","created_at":"2013-03-08T14:57:50Z","updated_at":"2013-04-23T17:24:07Z","name":"Panasonic
232
+ Viera TC-L47E5","slug":"panasonic-viera-tc-l47e5-2","_type":"Electronics::Television","types":[],"msrp":799.0,"article_ids":["51389dc50ac94eacc70003f3"],"website_ids":[],"publish_on":"2013-03-08T14:04:53+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"513a0a39095ca5e0ee000560","model":"","resource_uri":"/products/panasonic-viera-tc-l47e5-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"5139febd07989eb5fc0004cc","created_at":"2013-03-08T15:07:41Z","updated_at":"2013-03-08T15:07:41Z","name":"Front-Vanity.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s50x50_Front-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s150x150_Front-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s250x250_Front-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x150_Front-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x112_Front-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s500x500_Front-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x400_Front-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x600_Front-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x400_Front-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x350_Front-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x110_Front-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/Front-Vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/uploads/tmp/20130308-1507-41-8884/Front-Vanity.jpg","file_size":113973},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139febd07989eb5fc0004cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139febd07989eb5fc0004cc"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ef82dc798de000049","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ef82dc798de000049"}}},{"id":"5138d3ec90a1bfbef20005ab","created_at":"2013-03-07T17:52:44Z","updated_at":"2013-03-08T01:46:10Z","name":"Ariston
233
+ TVF63X","slug":"tvf63x","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:36:10+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b0","brand_id":"51390ce25693113d8c00010c","model":"","resource_uri":"/products/tvf63x","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":2.9,"ranking":{"total":50,"rank":48,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003b0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"Dryers","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b0"}}},"attachments":[{"id":"5139011c9da86c5336000023","created_at":"2013-03-07T21:05:32Z","updated_at":"2013-03-07T21:17:18Z","name":"Ariston-TVF63X-vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s50x50_Ariston-TVF63X-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s150x150_Ariston-TVF63X-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s250x250_Ariston-TVF63X-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x150_Ariston-TVF63X-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x112_Ariston-TVF63X-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s500x500_Ariston-TVF63X-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x400_Ariston-TVF63X-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x600_Ariston-TVF63X-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x400_Ariston-TVF63X-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x350_Ariston-TVF63X-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x110_Ariston-TVF63X-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg","file_size":74734},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139011c9da86c5336000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139011c9da86c5336000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ef82dc798de00004a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ef82dc798de00004a"}}},{"id":"5138cff9de88c3180e0006a0","created_at":"2013-03-07T17:35:53Z","updated_at":"2013-03-11T21:04:39Z","name":"GTDS820EDWS","slug":"gtds820edws","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":1099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:15:50+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"5138d10d12494f43310004ae","model":"","resource_uri":"/products/gtds820edws","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ef82dc798de00004b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ef82dc798de00004b"}}},{"id":"5138b9f4cb4ae870aa000522","created_at":"2013-03-07T16:01:56Z","updated_at":"2013-03-08T02:20:05Z","name":"Frigidaire
234
+ FAHE4044MW ","slug":"frigidaire-fahe4044mw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":649.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-04-06T14:20:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"51394ad545ba4bfa85000100","model":"","resource_uri":"/products/frigidaire-fahe4044mw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":50,"rank":47,"percentile":6},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
235
+ Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"attachments":[{"id":"513900c17a0082ebca000031","created_at":"2013-03-07T21:04:01Z","updated_at":"2013-03-10T02:33:58Z","name":"Front.jpg","type":"file","tags":["Front.jpg","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/Front.jpg"},"caption":"The
236
+ front of the washer","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f297fb066af56dc0200641c108a986c8e27a7ead/Front.jpg","file_size":126981},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/513900c17a0082ebca000031","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/513900c17a0082ebca000031"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ef82dc798de00004c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ef82dc798de00004c"}}},{"id":"513639647226fa851900061f","created_at":"2013-03-05T18:28:53Z","updated_at":"2013-03-31T14:38:12Z","name":"ELEFT325","slug":"eleft325","_type":"Electronics::Television","types":[],"msrp":290.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-08T08:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"513a47f29da86c965800080b","model":"","resource_uri":"/products/eleft325","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.94,"ranking":{"total":262,"rank":163,"percentile":38},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
237
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ef82dc798de00004d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ef82dc798de00004d"}}},{"id":"51362cdf9e4e47720b0004d2","created_at":"2013-03-05T17:35:27Z","updated_at":"2013-03-31T14:38:11Z","name":"Magnavox
238
+ 32MD301B","slug":"magnavox-32md301b","_type":"Electronics::Television","types":[],"msrp":499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-05T04:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"51377ceffcc113c3fc000490","model":"","resource_uri":"/products/magnavox-32md301b","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.24,"ranking":{"total":262,"rank":254,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
239
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"51362fe2f15f513c230006d6","created_at":"2013-03-05T17:48:18Z","updated_at":"2013-03-10T02:30:07Z","name":"front.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg"},"caption":"Maybe
240
+ it''s just us, but that red stripe below the logo is kind of ugly.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg","file_size":64804},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51362fe2f15f513c230006d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51362fe2f15f513c230006d6"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de00004e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de00004e"}}},{"id":"5134bf84f7fb8dc21b000223","created_at":"2013-03-04T15:36:36Z","updated_at":"2013-03-14T14:12:53Z","name":"LG
241
+ WT1101CW","slug":"lg-wt1101cw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":699.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-04T15:14:13+00:00","upc":"","price_grabber_id":"1080763319","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"513a04289da86c69df000691","model":"","resource_uri":"/products/lg-wt1101cw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.23,"ranking":{"total":50,"rank":42,"percentile":16},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
242
+ Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"attachments":[{"id":"5134be6bf83e98e0f200029b","created_at":"2013-03-04T15:31:55Z","updated_at":"2013-03-10T02:28:50Z","name":"Vanity","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s150x150_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x600_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg","file_size":11636},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5134be6bf83e98e0f200029b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5134be6bf83e98e0f200029b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de00004f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de00004f"}}},{"id":"512cfd37ba5f4c688e000099","created_at":"2013-02-26T18:21:43Z","updated_at":"2013-03-11T21:05:28Z","name":"Nikon
243
+ Coolpix S31","slug":"nikon-coolpix-s31","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":119.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-03T13:01:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512cff109ca88f193b0001aa","model":"","resource_uri":"/products/nikon-coolpix-s31","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000050","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000050"}}},{"id":"512cf3e000a2d9744d000091","created_at":"2013-02-26T17:41:53Z","updated_at":"2013-03-11T21:05:06Z","name":"Nikon
244
+ Coolpix AW110","slug":"nikon-coolpix-aw110","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":349.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-01-31T12:48:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512e3e1c9c4005ed4e000024","model":"","resource_uri":"/products/nikon-coolpix-aw110","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000051","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000051"}}},{"id":"512ce285ebb3185cc600066a","created_at":"2013-02-26T16:27:49Z","updated_at":"2013-03-11T21:04:00Z","name":"Nikon
245
+ Coolpix S9500","slug":"nikon-coolpix-s9500","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":349.95,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-02T11:23:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512e3a3bb4ea102fca00002c","model":"","resource_uri":"/products/nikon-coolpix-s9500","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000052","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000052"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-11T21:04:15Z","name":"Fujifilm
246
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-01T10:26:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512ce232184a8a15e800019b","model":"","resource_uri":"/products/fujifilm-f900exr","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000053","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000053"}}},{"id":"512be11481470fe1c10001a6","created_at":"2013-02-25T22:09:24Z","updated_at":"2013-03-11T21:05:26Z","name":"Canon
247
+ PowerShot ELPH 115 IS","slug":"canon-powershot-elph-115-is","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":169.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-05T17:43:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512be189a8758504860001e9","model":"","resource_uri":"/products/canon-powershot-elph-115-is","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000054","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000054"}}},{"id":"512bc7f34b8e6d1129000109","created_at":"2013-02-25T20:22:11Z","updated_at":"2013-03-11T21:03:58Z","name":"Canon
248
+ PowerShot 330 HS","slug":"powershot-330-hs","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-01T13:55:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512bcc738f5db50843000114","model":"","resource_uri":"/products/powershot-330-hs","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000055","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000055"}}},{"id":"51278bac6143ac867900023c","created_at":"2013-02-22T15:15:56Z","updated_at":"2013-03-31T14:38:13Z","name":"Hisense
249
+ 55XT710","slug":"hisense-55xt710","_type":"Electronics::Television","types":[],"msrp":1099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-19T09:09:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5139d7a59da86c69df000506","model":"","resource_uri":"/products/hisense-55xt710","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.69,"ranking":{"total":262,"rank":200,"percentile":24},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
250
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"512f6e1375dec71baf0003ec","created_at":"2013-02-28T14:47:47Z","updated_at":"2013-03-07T21:38:33Z","name":"Front.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/Front.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/18854f7a0bd828558fef3e17f91eebfda017a260/Front.jpg","file_size":52258},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/512f6e1375dec71baf0003ec","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/512f6e1375dec71baf0003ec"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d5ff82dc798de000056","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d5ff82dc798de000056"}}},{"id":"5124f2fad7ee352066000492","created_at":"2013-02-20T15:59:54Z","updated_at":"2013-03-31T14:38:13Z","name":"Sceptre
251
+ E325BV-HDH","slug":"sceptre-e325bv-hdh","_type":"Electronics::Television","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-20T15:17:23+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5138f58e1eb889ace70006ec","model":"","resource_uri":"/products/sceptre-e325bv-hdh","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":6.53,"ranking":{"total":262,"rank":68,"percentile":75},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
252
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"5124f32449a663e0a4000078","created_at":"2013-02-20T16:00:36Z","updated_at":"2013-02-28T04:50:10Z","name":"Vanity","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s50x50_Sceptre-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s150x150_Sceptre-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s250x250_Sceptre-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s300x150_Sceptre-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s300x112_Sceptre-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s500x500_Sceptre-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s600x400_Sceptre-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s600x600_Sceptre-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x400_Sceptre-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x350_Sceptre-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/s940x110_Sceptre-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/Sceptre-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/cc7ee4dd808e6c1fd44aee4410d5a38aadf4018c/Sceptre-vanity.jpg","file_size":102514},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5124f32449a663e0a4000078","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5124f32449a663e0a4000078"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de000057","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de000057"}}},{"id":"5123ba2a6c477e686e000811","created_at":"2013-02-19T17:45:14Z","updated_at":"2013-03-31T14:38:13Z","name":"LG
253
+ 47LM8600","slug":"lg-47lm8600","_type":"Electronics::Television","types":[],"msrp":2299.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-02-15T12:59:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"5138f6a4e2289ec912000723","model":"","resource_uri":"/products/lg-47lm8600","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":6.1,"ranking":{"total":262,"rank":130,"percentile":51},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
254
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"attachments":[{"id":"5124dd0bd7ee35a84e00049d","created_at":"2013-02-20T14:26:19Z","updated_at":"2013-02-28T04:50:05Z","name":"Vanity","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/Front.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/24f678aada559ffa66d89622c204a49b8468bc28/Front.jpg","file_size":41661},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5124dd0bd7ee35a84e00049d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5124dd0bd7ee35a84e00049d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de000058","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de000058"}}},{"id":"511e5a198021d5fed7000425","created_at":"2013-02-15T15:54:01Z","updated_at":"2013-03-11T21:03:59Z","name":"Nikon
255
+ 1 V2","slug":"nikon-1-v2-2","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2013-02-15T15:50:06+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"511e8fe3a82eb136f1000028","model":"","resource_uri":"/products/nikon-1-v2-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de000059","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de000059"}}},{"id":"51101841be0d9f1d3c000045","created_at":"2013-02-04T20:21:21Z","updated_at":"2013-03-11T21:04:00Z","name":"Fujifilm
256
+ X-E1","slug":"fujifilm-x-e1-3","_type":"Electronics::Cameras::DSLR","types":[],"msrp":999.95,"article_ids":[],"website_ids":[],"publish_on":"2013-02-04T20:16:10+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"51101841be0d9f1d3c000047","model":"","resource_uri":"/products/fujifilm-x-e1-3","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de00005a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de00005a"}}},{"id":"510019f7a0a353b1fc000076","created_at":"2013-01-23T17:12:23Z","updated_at":"2013-03-11T21:06:04Z","name":"Dell
257
+ UltraSharp U2713HM","slug":"dell-ultrasharp-u2713hm","_type":"Electronics::ComputerMonitor","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e0000029"],"publish_on":"2013-01-31T12:05:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"51001f564ffb7443bf000015","model":"","resource_uri":"/products/dell-ultrasharp-u2713hm","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de00005b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de00005b"}}},{"id":"50fa347b96ab5860160c8e5e","created_at":"2013-01-14T18:13:17Z","updated_at":"2013-01-21T07:43:59Z","name":"Dacor
258
+ DDW24S","slug":"dacor-ddw24s","_type":"Appliances::MajorAppliances::Dishwasher","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000021"],"publish_on":"2013-01-14T18:13:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c5","model":"DDW24S","resource_uri":"/products/dacor-ddw24s","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d60f82dc798de00005c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d60f82dc798de00005c"}}}]}'
356
259
  http_version:
357
- recorded_at: Sat, 27 Apr 2013 01:46:24 GMT
358
- recorded_with: VCR 2.3.0
260
+ recorded_at: Thu, 27 Jun 2013 15:42:26 GMT
261
+ recorded_with: VCR 2.5.0