reviewed 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/lib/faraday/cache.rb +13 -11
  3. data/lib/reviewed/cache.rb +18 -0
  4. data/lib/reviewed/version.rb +1 -1
  5. data/reviewed.gemspec +1 -1
  6. data/spec/article_spec.rb +1 -1
  7. data/spec/client_spec.rb +1 -1
  8. data/spec/collection_spec.rb +1 -1
  9. data/spec/faraday/cache_spec.rb +9 -9
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
  18. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
  19. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
  21. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
  22. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
  23. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
  25. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
  26. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
  27. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
  28. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
  29. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
  30. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
  31. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
  32. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
  33. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
  38. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
  39. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
  40. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
  41. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
  42. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
  45. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
  46. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
  47. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
  48. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
  49. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
  51. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
  52. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
  53. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
  54. data/spec/product_spec.rb +1 -1
  55. data/spec/request_spec.rb +4 -4
  56. metadata +35 -62
  57. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
@@ -8,9 +8,9 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.8.7
11
+ - Faraday v0.8.6
12
12
  X-Reviewed-Authorization:
13
- - 38e397252ec670ec441733a95204f141
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
@@ -36,19 +36,19 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:41:59 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:24:12 GMT
42
40
  Status:
43
41
  - 200 OK
44
42
  Strict-Transport-Security:
45
43
  - max-age=31536000
46
44
  Vary:
47
45
  - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
48
  X-Request-Id:
49
- - 37a7a04c078213e7320bb2f4b298d351
49
+ - 1994d3b6554ae1e114aaa7560e78be08
50
50
  X-Runtime:
51
- - '0.020183'
51
+ - '1.606745'
52
52
  X-Ua-Compatible:
53
53
  - IE=Edge,chrome=1
54
54
  Transfer-Encoding:
@@ -57,99 +57,90 @@ http_interactions:
57
57
  - keep-alive
58
58
  body:
59
59
  encoding: UTF-8
60
- string: '{"pagination":{"total":13067,"total_pages":654,"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":"51bb4116aba4288eda0000d7","created_at":"2013-06-14T16:13:10Z","updated_at":"2013-06-24T14:58:49Z","name":"OMG
61
- a feature on a branch","branch_name":"master","summary":null,"meta_description":"weeee
62
- feature","website_ids":["50e669d7bd028648e0000023"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["feature"],"publish_on":"2013-06-14T16:08:43+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/omg-a-feature","disqus_uri":"/features/omg-a-feature","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"omg-a-feature","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51bb4116aba4288eda0000d7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51bb4116aba4288eda0000d7"}}},{"id":"51b24cc90a7e677be0000033","created_at":"2013-06-07T21:12:41Z","updated_at":"2013-06-07T21:12:41Z","name":"Untitled
63
- Article About Reviewed.com 2.5 project","branch_name":"master","summary":null,"meta_description":null,"website_ids":[],"author_ids":["50fc4eadbd0286d5550b4c8e"],"tags":[],"classifications":[],"publish_on":"2013-06-07T21:12:09+00:00","attachment_ids":["51c47ea8bfc80eb31e00020b"],"primary_product_id":null,"resource_uri":"/content/untitled-article-about-reviewed.com
64
- 2.5 project","disqus_uri":"/content/untitled-article-about-reviewed.com 2.5
65
- project","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"untitled-article-about-reviewed.com
66
- 2.5 project","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51b24cc90a7e677be0000033","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51b24cc90a7e677be0000033"}}},{"id":"519fb125c4fb49ab860000b3","created_at":"2013-05-24T18:27:49Z","updated_at":"2013-06-24T14:04:29Z","name":"It''s
67
- not a bug, it''s a feature... article BRANCH","branch_name":"master","summary":"test","meta_description":"feature
68
- article that will show up in consolidated. AND IT''S NOW A BRANCH OMG.","website_ids":["50e669d7bd028648e0000021","50e669d7bd028648e0000025"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["feature"],"publish_on":"2013-05-23T18:26:44+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/it-s-not-a-bug-it-s-a-feature...
69
- article","disqus_uri":"/features/it-s-not-a-bug-it-s-a-feature... article","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"it-s-not-a-bug-it-s-a-feature...
70
- article","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/519fb125c4fb49ab860000b3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/519fb125c4fb49ab860000b3"}}},{"id":"519ba1767547f6983900003a","created_at":"2013-05-21T16:31:50Z","updated_at":"2013-05-21T16:38:43Z","name":"Mr.
71
- Coffee 9001 on Sale","branch_name":"master","summary":null,"meta_description":"It''s
72
- over 9000","website_ids":["50e669d7bd028648e0000025"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["deal"],"publish_on":"2013-05-21T16:30:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/deals/mr.
73
- Coffee 9001 on Sale","disqus_uri":"/deals/mr. Coffee 9001 on Sale","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mr.
74
- Coffee 9001 on Sale","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/519ba1767547f6983900003a","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/519ba1767547f6983900003a"}}},{"id":"51911420260a173a55000051","created_at":"2013-05-13T16:26:08Z","updated_at":"2013-05-24T19:56:17Z","name":"Mon
75
- 1123","branch_name":"master","summary":"test","meta_description":"test","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eacbd0286d5550b4c89"],"tags":[],"classifications":["feature"],"publish_on":"2013-05-13T19:23:28+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/mon-1123","disqus_uri":"/features/mon-1123","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mon-1123","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51911420260a173a55000051","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51911420260a173a55000051"}}},{"id":"50fb3191bd0286d555016885","created_at":"2012-08-28T15:44:06Z","updated_at":"2013-06-14T14:38:18Z","name":"2013
76
- Kia Optima Sedan Review","branch_name":"master","summary":"The 2013 Kia Optima
77
- is a competent midsize sedan that knows how to dress well. The exterior design,
78
- and perhaps the safety rating, are the most compelling reasons to put this
79
- car on your short list.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4e92bd0286d5550b4bf5"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-30T11:00:00+00:00","attachment_ids":["50fb3192bd0286d55501688e","50fb3192bd0286d55501689d","50fb3193bd0286d5550168b7","50fb3193bd0286d5550168b8"],"primary_product_id":"50fa332996ab5860160c87a1","resource_uri":"/deals/2013-kia-optima-sedan-review.htm","disqus_uri":"2013-Kia-Optima-Sedan-Review","product_ids":["50fa332996ab5860160c87a1"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-10-02T20:28:00+00:00","slug":"2013-kia-optima-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa332996ab5860160c87a1","created_at":"2012-08-21T21:01:33Z","updated_at":"2013-04-22T19:57:33Z","name":"2013
80
- Kia Optima LX","slug":"kia-2013-optima-lx","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":21200.0,"article_ids":["50fb3191bd0286d555016885","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-10-02T20:28:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed75bd0286638e000179","model":"2013
81
- Optima","resource_uri":"/products/kia-2013-optima-lx","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"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a1bd0286fb1f0130df","created_at":"2013-01-21T07:47:45Z","updated_at":"2013-01-21T07:47:45Z","name":"2013-Kia-Optima-vanity3.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s50x50_2013-Kia-Optima-vanity3.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s150x150_2013-Kia-Optima-vanity3.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s250x250_2013-Kia-Optima-vanity3.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s300x150_2013-Kia-Optima-vanity3.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s300x112_2013-Kia-Optima-vanity3.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s500x500_2013-Kia-Optima-vanity3.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s600x400_2013-Kia-Optima-vanity3.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s600x600_2013-Kia-Optima-vanity3.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x400_2013-Kia-Optima-vanity3.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x350_2013-Kia-Optima-vanity3.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/s940x110_2013-Kia-Optima-vanity3.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/2013-Kia-Optima-vanity3.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7d83bc6f4f4d0e0711cd3c093f580cc76b521502/2013-Kia-Optima-vanity3.jpg","file_size":65660,"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/50fcf2a1bd0286fb1f0130df","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a1bd0286fb1f0130df"}}}],"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/51cc5d44f82dc7b9e0000033","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d44f82dc7b9e0000033"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3191bd0286d555016885","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3191bd0286d555016885"}}},{"id":"50fb318abd0286d5550167ba","created_at":"2012-08-04T15:29:01Z","updated_at":"2013-06-14T14:44:07Z","name":"2012
82
- Hyundai Sonata Hybrid Sedan Review","branch_name":"master","summary":"Well-equipped
83
- for $25k -- and even better at $35k -- the Sonata Hybrid impressed us with
84
- its style and road feel, but its mid-30s gas mileage may disappoint those
85
- looking for a high-MPG sedan.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T16:00:00+00:00","attachment_ids":["50fb318bbd0286d5550167c3","50fb318bbd0286d5550167d2","50fb318bbd0286d5550167df","50fb318cbd0286d5550167ed"],"primary_product_id":"50fa324a96ab5860160c8359","resource_uri":"/deals/2012-hyundai-sonata-hybrid-sedan-review.htm","disqus_uri":"2012-Hyundai-Sonata-Hybrid-Sedan-Review","product_ids":["50fa324a96ab5860160c8359"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-13T20:33:00+00:00","slug":"2012-hyundai-sonata-hybrid-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa324a96ab5860160c8359","created_at":"2012-07-16T13:52:40Z","updated_at":"2013-04-22T19:58:32Z","name":"2012
86
- Hyundai Sonata Hybrid ","slug":"hyundai-2012-sonata-hybrid","_type":"Automobiles::Sedan","types":["Sedan","Hybrid"],"msrp":25850.0,"article_ids":["50fb318abd0286d5550167ba","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-13T20:33:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed75bd0286638e000176","model":"2012
87
- Sonata Hybrid","resource_uri":"/products/hyundai-2012-sonata-hybrid","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"}}},"is_primary_product":true,"attachments":[{"id":"50fc5a31bd0286ac750022bc","created_at":"2013-01-20T20:57:21Z","updated_at":"2013-01-20T20:57:21Z","name":"Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s50x50_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s150x150_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s250x250_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s300x150_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s300x112_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s500x500_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s600x400_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s600x600_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x400_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x350_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/s940x110_Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6fd7f6f59106f4652f279f7a2919783e03ad86c0/Hyundai_Sonata_Hybrid-Front-DS-Angled-Exterior.jpg","file_size":76144,"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/50fc5a31bd0286ac750022bc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a31bd0286ac750022bc"}}}],"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/51cc5d45f82dc7b9e0000034","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d45f82dc7b9e0000034"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318abd0286d5550167ba","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318abd0286d5550167ba"}}},{"id":"50fb318ebd0286d555016820","created_at":"2012-08-10T19:55:28Z","updated_at":"2013-06-18T16:14:57Z","name":"2012
88
- Scion iQ Minicompact Review","branch_name":"master","summary":"The Scion iQ
89
- is a small car with an even smaller target audience. Starting at $15,995 and
90
- near $20,000 with options, its not very fun to drive and near useless outside
91
- of the most crowded cities.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T15:00:00+00:00","attachment_ids":["50fb318fbd0286d555016829","50fb318fbd0286d555016838","50fb3190bd0286d555016852"],"primary_product_id":"50fa325196ab5860160c837d","resource_uri":"/deals/2012-scion-iq-minicompact-review.htm","disqus_uri":"2012-Scion-iQ-Minicompact-Review","product_ids":["50fa325196ab5860160c837d"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-07-16T19:58:00+00:00","slug":"2012-scion-iq-minicompact-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa325196ab5860160c837d","created_at":"2012-07-16T20:00:58Z","updated_at":"2013-04-22T19:58:34Z","name":"2012
92
- Scion iQ ","slug":"scion-2012-iq","_type":"Automobiles::Hatchback","types":["Hatchback","Hatchback"],"msrp":15995.0,"article_ids":["50fb318ebd0286d555016820","50fc43c2bd0286d5550b1134"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-07-16T19:58:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed76bd0286638e00019c","model":"2012
93
- iQ","resource_uri":"/products/scion-2012-iq","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"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a0bd028663f10130d4","created_at":"2013-01-21T07:47:44Z","updated_at":"2013-01-21T07:47:44Z","name":"Scion-IQ-Vanity2.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s50x50_Scion-IQ-Vanity2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s150x150_Scion-IQ-Vanity2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s250x250_Scion-IQ-Vanity2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s300x150_Scion-IQ-Vanity2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s300x112_Scion-IQ-Vanity2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s500x500_Scion-IQ-Vanity2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s600x400_Scion-IQ-Vanity2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s600x600_Scion-IQ-Vanity2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x400_Scion-IQ-Vanity2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x350_Scion-IQ-Vanity2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/s940x110_Scion-IQ-Vanity2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/Scion-IQ-Vanity2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b5cbac980b868638c53466be22418eaa4db73f3d/Scion-IQ-Vanity2.jpg","file_size":82466,"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/50fcf2a0bd028663f10130d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a0bd028663f10130d4"}}}],"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/51cc5d45f82dc7b9e0000035","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d45f82dc7b9e0000035"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318ebd0286d555016820","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318ebd0286d555016820"}}},{"id":"50fb318cbd0286d5550167ee","created_at":"2012-08-09T19:01:15Z","updated_at":"2013-06-14T14:45:39Z","name":"2012
94
- Chrysler 300 SRT8 Sedan Review","branch_name":"master","summary":"The Chrysler
95
- 300 SRT8 is the best sedan the company offers, and one of the finest American
96
- muscle cars. Luckily, lesser models of 300 are just as good where it counts
97
- for most drivers.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T14:00:00+00:00","attachment_ids":["50fb318dbd0286d5550167f7","50fb318dbd0286d555016806"],"primary_product_id":"50fa32e596ab5860160c864e","resource_uri":"/deals/2012-chrysler-300-srt8-sedan-review.htm","disqus_uri":"2012-Chrysler-300-SRT8-Sedan-Review","product_ids":["50fa32e596ab5860160c864e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-13T19:52:00+00:00","slug":"2012-chrysler-300-srt8-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa32e596ab5860160c864e","created_at":"2012-08-08T03:29:42Z","updated_at":"2013-04-22T19:59:03Z","name":"2012
98
- Chrysler 300 SRT8 ","slug":"chrysler-2012-300-srt8","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":48670.0,"article_ids":["50fb318cbd0286d5550167ee","50fc43cebd0286d5550b115b"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-13T19:52:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7ebd0286638e0002c0","model":"2012
99
- 300 SRT8","resource_uri":"/products/chrysler-2012-300-srt8","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"}}},"is_primary_product":true,"attachments":[{"id":"50fc5a31bd028600af0022bb","created_at":"2013-01-20T20:57:21Z","updated_at":"2013-01-20T20:57:21Z","name":"Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s50x50_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s150x150_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s250x250_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s300x150_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s300x112_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s500x500_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s600x400_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s600x600_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x400_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x350_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/s940x110_Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a9992163603b3fe2ce3d07a4659981aa674e5b1a/Chrysler_300_SRT8-Front-DS-Angled-Exterior.jpg","file_size":116369,"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/50fc5a31bd028600af0022bb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a31bd028600af0022bb"}}}],"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/51cc5d45f82dc7b9e0000036","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d45f82dc7b9e0000036"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb318cbd0286d5550167ee","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb318cbd0286d5550167ee"}}},{"id":"50fb3193bd0286d5550168b9","created_at":"2012-10-04T13:08:27Z","updated_at":"2013-06-14T14:46:26Z","name":"2012
100
- Toyota Prius C Hybrid Hatchback Review","branch_name":"master","summary":"With
101
- a starting price that''s about $3000 less than a base Prius, the Prius C isn''t
102
- a cheaper version of the mainstream Prius. It''s a hybridized Yaris, and the
103
- cost-cutting is apparent with a subpar interior and sluggish performance.
104
- It''s not a bad choice if you need 49+ MPG fuel economy and must have a brand
105
- new car, but a gently used mainstream Prius would be an even better choice.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["deal"],"publish_on":"2013-04-24T12:00:00+00:00","attachment_ids":["50fb3194bd0286d5550168c2","50fb3195bd0286d5550168d1","50fb3195bd0286d5550168de","50fb3196bd0286d5550168ec"],"primary_product_id":"50fa323696ab5860160c82fb","resource_uri":"/deals/toyota-prius-c-hybrid-hatchback-review.htm","disqus_uri":"Toyota-Prius-C-Hybrid-Hatchback-Review","product_ids":["50fa323696ab5860160c82fb"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-10-17T16:08:00+00:00","slug":"toyota-prius-c-hybrid-hatchback-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa323696ab5860160c82fb","created_at":"2012-07-12T16:39:07Z","updated_at":"2013-04-22T19:58:28Z","name":"2012
106
- Toyota Prius c Three","slug":"toyota-2012-prius-c-three","_type":"Automobiles::Hatchback","types":["Hatchback","Hybrid","Hatchback"],"msrp":21635.0,"article_ids":["50fb3193bd0286d5550168b9","50fc43c2bd0286d5550b1134","50fc43cabd0286d5550b114e"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-10-17T16:08:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed74bd0286638e000173","model":"2012
107
- Prius c","resource_uri":"/products/toyota-2012-prius-c-three","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"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a2bd0286ffdf0130fd","created_at":"2013-01-21T07:47:46Z","updated_at":"2013-01-21T07:47:46Z","name":"Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s50x50_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s150x150_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s250x250_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s300x150_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s300x112_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s500x500_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s600x400_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s600x600_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x400_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x350_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/s940x110_Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/Toyota-Prius-C-Front-DS-Angled-Exterior.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ccf835297dbddd0109a1e191b325d53ba51d9193/Toyota-Prius-C-Front-DS-Angled-Exterior.jpg","file_size":97645,"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/50fcf2a2bd0286ffdf0130fd","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a2bd0286ffdf0130fd"}}}],"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/51cc5d45f82dc7b9e0000037","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d45f82dc7b9e0000037"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3193bd0286d5550168b9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3193bd0286d5550168b9"}}},{"id":"51755819b8c63701fa0000ca","created_at":"2013-04-22T15:32:41Z","updated_at":"2013-04-22T15:41:34Z","name":"Toy
108
- Camera","branch_name":"master","summary":"asdfasdf","meta_description":null,"website_ids":["50e669d7bd028648e000000d"],"author_ids":["5113c597f981b8f03b00057d"],"tags":["toy","fischer
109
- price"],"classifications":["deal"],"publish_on":"2013-04-22T15:08:22+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/deals/toy-camera","disqus_uri":"/deals/toy-camera","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"toy-camera","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51755819b8c63701fa0000ca","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51755819b8c63701fa0000ca"}}},{"id":"50fb3190bd0286d555016853","created_at":"2012-08-21T17:08:55Z","updated_at":"2013-06-14T14:54:32Z","name":"2012
110
- Nissan Versa SV Sedan Review","branch_name":"master","summary":"The redesigned
111
- 2012 Versa sedan is almost charmingly simple, meeting and even exceeding basic
112
- transportation needs. Just don''t expect to pay $10,990 and be done with it.","meta_description":"","website_ids":["50e669d7bd028648e0000033","50e669d7bd028648e0000025"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":["super-hero3"],"classifications":["deal"],"publish_on":"2013-04-10T16:00:00+00:00","attachment_ids":["50fb3190bd0286d55501685c","50fb3191bd0286d55501686b","51b78eaf3967a5a53c000017"],"primary_product_id":"50fa320796ab5860160c821f","resource_uri":"/deals/2012-nissan-versa-sv-sedan-review.htm","disqus_uri":"2012-Nissan-Versa-SV-Sedan-Review","product_ids":["50fa320796ab5860160c821f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-08-22T20:30:00+00:00","slug":"2012-nissan-versa-sv-sedan-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa320796ab5860160c821f","created_at":"2012-07-09T16:35:20Z","updated_at":"2013-04-22T19:58:20Z","name":"2012
113
- Nissan Versa Sedan 1.6 SV","slug":"nissan-2012-versa-sedan-1-6-sv","_type":"Automobiles::Sedan","types":["Sedan"],"msrp":14980.0,"article_ids":["50fb3190bd0286d555016853"],"website_ids":["50e669d7bd028648e0000033"],"publish_on":"2012-08-22T20:30:00+00:00","upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed71bd0286638e0000f6","model":"2012
114
- Versa","resource_uri":"/products/nissan-2012-versa-sedan-1-6-sv","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"}}},"is_primary_product":true,"attachments":[{"id":"50fcf2a0bd0286027b0130d9","created_at":"2013-01-21T07:47:44Z","updated_at":"2013-01-21T07:47:44Z","name":"Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s50x50_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s150x150_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s250x250_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s300x150_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s300x112_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s500x500_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s600x400_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s600x600_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x400_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x350_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/s940x110_Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/475f08423d30eb66fc5799278dec5bfb30365e3e/Nissan-Versa-Nissan-Versa-Driver-Side-Exterior.jpg.jpg","file_size":104227,"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/50fcf2a0bd0286027b0130d9","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf2a0bd0286027b0130d9"}}}],"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/51cc5d45f82dc7b9e0000038","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d45f82dc7b9e0000038"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/50fb3190bd0286d555016853","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb3190bd0286d555016853"}}},{"id":"510841ac51eb9385ae0003cb","created_at":"2013-01-29T21:39:56Z","updated_at":"2013-06-14T14:54:55Z","name":"Viking
115
- D3 RDSCD2305B Dual Fuel Range First Impression","branch_name":"master","summary":"Viking,
116
- known for applying design elements from commercial ranges to domestic ones,
117
- ventures away from the industrial design with the more affordable D3.","meta_description":"","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000025"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","gas","electric","stove","home-hero1"],"classifications":["deal"],"publish_on":"2013-04-05T00:00:00+00:00","attachment_ids":["510841522d85b5d7da000298","5108417f2d85b5d7da0002a4","510841a1c1c06298540002c0"],"primary_product_id":"50fa33af96ab5860160c8a31","resource_uri":"/deals/viking-d3-rdscd2305b","disqus_uri":"/deals/viking-d3-rdscd2305b","product_ids":["50fa33af96ab5860160c8a31"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-02-07T14:00:00+00:00","slug":"viking-d3-rdscd2305b","is_template":false,"is_branch":false,"products":[{"id":"50fa33af96ab5860160c8a31","created_at":"2012-10-09T19:16:50Z","updated_at":"2013-03-11T21:05:27Z","name":"Viking
118
- D3-RDSCD2305B","slug":"viking-d3-rdscd2305b","_type":"Appliances::MajorAppliances::Oven","types":["Gas","Electric","Dual-Fuel"],"msrp":4099.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2013-02-07T14:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed7bbd0286638e00024a","model":"D3-RDSCD2305B","resource_uri":"/products/viking-d3-rdscd2305b","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"}}},"is_primary_product":true,"attachments":[{"id":"5107ead3cc4b9b2ef4000b27","created_at":"2013-01-29T15:29:23Z","updated_at":"2013-02-19T17:45:02Z","name":"Front
119
- Photo ","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s50x50_Viking_D3-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s150x150_Viking_D3-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s250x250_Viking_D3-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s300x150_Viking_D3-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s300x112_Viking_D3-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s500x500_Viking_D3-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s600x400_Viking_D3-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s600x600_Viking_D3-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x400_Viking_D3-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x350_Viking_D3-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/s940x110_Viking_D3-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/Viking_D3-front.jpg"},"caption":"The
120
- D3 has an appealing compromise between the classic Viking industrial look
121
- and something a little more modern.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/87e9869f1e9966409fcd2f09be523bcc33e55ad5/Viking_D3-front.jpg","file_size":63354},"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/5107ead3cc4b9b2ef4000b27","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5107ead3cc4b9b2ef4000b27"}}}],"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/51cc5d46f82dc7b9e0000039","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d46f82dc7b9e0000039"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/510841ac51eb9385ae0003cb","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/510841ac51eb9385ae0003cb"}}},{"id":"51264af0c53c59a2a10002ab","created_at":"2013-02-21T16:27:28Z","updated_at":"2013-06-14T14:55:38Z","name":"Whirlpool
122
- WFG720H0AS Gas Range Review","branch_name":"master","summary":"Loaded with
123
- an impressive rangetop, an Aqualift cleaning system, and a stylish look, this
124
- Whirlpool falls far short in oven performance.","meta_description":"","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000025"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["deal"],"publish_on":"2013-03-27T01:00:00+00:00","attachment_ids":["513a0ce6b55586eafd00056f"],"primary_product_id":"50fa342096ab5860160c8c60","resource_uri":"/deals/whirlpool-wfg720h0as-gas-range-review.htm","disqus_uri":"/deals/whirlpool-wfg720h0as-gas-range-review.htm","product_ids":["50fa342096ab5860160c8c60"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-21T16:02:00+00:00","slug":"whirlpool-wfg720h0as-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa342096ab5860160c8c60","created_at":"2012-11-21T16:39:13Z","updated_at":"2013-03-14T14:11:59Z","name":"Whirlpool
125
- WFG720H0AS","slug":"whirlpool-wfg720h0as","_type":"Appliances::MajorAppliances::Oven","types":["Gas"],"msrp":1349.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-21T16:02:00+00:00","upc":"","price_grabber_id":"956620871","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c5","model":"WFG720H0AS","resource_uri":"/products/whirlpool-wfg720h0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.47,"ranking":{"total":30,"rank":28,"percentile":7},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
126
- Oven Rubric","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/50f9ed93bd0286638e0003b9","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b9"}}},"is_primary_product":true,"attachments":[{"id":"51253c3ba97ff8be2200003d","created_at":"2013-02-20T21:12:27Z","updated_at":"2013-02-20T21:56:35Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/front.jpg"},"caption":"This
127
- stylish exterior is a less aggressive stainless steel alternative to the pro
128
- ranges. ","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/4ef9588cb3f41ead5821d7d8ff76029c2dc61d7b/front.jpg","file_size":181504},"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/51253c3ba97ff8be2200003d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51253c3ba97ff8be2200003d"}}}],"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/51cc5d46f82dc7b9e000003a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d46f82dc7b9e000003a"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51264af0c53c59a2a10002ab","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51264af0c53c59a2a10002ab"}}},{"id":"513758cc0aa7bb04a600052b","created_at":"2013-03-06T14:55:08Z","updated_at":"2013-06-14T14:57:11Z","name":"Reviewed.com
129
- March Camcorder Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e0000005","50e669d7bd028648e0000025"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["deal"],"publish_on":"2013-03-24T10:03:00+00:00","attachment_ids":["51379d265048fd875f00054f","51379d4864401acda7000160","51379d67c0f8497336000208","5137a01f3f0c86ae1b000525","5137a0dbfcc11319db00044e","5137a11b64401a5b940005db"],"primary_product_id":null,"resource_uri":"/deals/reviewed-com-march-camcorder-deals-roundup","disqus_uri":"/deals/reviewed-com-march-camcorder-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-camcorder-deals-roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513758cc0aa7bb04a600052b","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513758cc0aa7bb04a600052b"}}},{"id":"513663d88f4eb684df0001f8","created_at":"2013-03-05T21:30:00Z","updated_at":"2013-06-14T14:58:06Z","name":"Reviewed.com
130
- March Television Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000f","50e669d7bd028648e0000025"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["deal"],"publish_on":"2013-03-22T13:00:00+00:00","attachment_ids":["5136672f5e2ce88bae0005aa","5136674a542c9272da000706","513667750844bcb143000671","513667adb5a96df4930006dd","513667db4505ea901600064e","51366803262dad9de50006dc"],"primary_product_id":null,"resource_uri":"/deals/reviewed-com-march-television-deals-roundup","disqus_uri":"/deals/reviewed-com-march-television-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-television-deals-roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513663d88f4eb684df0001f8","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513663d88f4eb684df0001f8"}}},{"id":"511e672a8ff8dbf974000452","created_at":"2013-02-15T16:50:04Z","updated_at":"2013-03-08T16:09:43Z","name":"Maytag
131
- MGR7685AB Gas Range Review","branch_name":"master","summary":"The MGR7685''s
132
- rangetop performed well, but bakers won''t like the oven.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-20T06:00:00+00:00","attachment_ids":["511e670aeb2b169d5c0003f8","511e6722c91563c71e000362","512d346533d5c429640000fb"],"primary_product_id":"50fa341596ab5860160c8c1c","resource_uri":"/content/maytag-mgr7685ab-gas-range-review.htm","disqus_uri":"/content/maytag-mgr7685ab-gas-range-review.htm","product_ids":["50fa341596ab5860160c8c1c"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-20T13:16:00+00:00","slug":"maytag-mgr7685ab-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa341596ab5860160c8c1c","created_at":"2012-11-20T13:59:36Z","updated_at":"2013-03-14T14:11:59Z","name":"Maytag
133
- MGR7685AB","slug":"maytag-mgr7685ab","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":749.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-20T13:16:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001ca","model":"MGR7685AB","resource_uri":"/products/maytag-mgr7685ab","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.71,"ranking":{"total":30,"rank":26,"percentile":14},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
134
- Oven Rubric","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/50f9ed93bd0286638e0003b9","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b9"}}},"is_primary_product":true,"attachments":[{"id":"511d472c444cb07fb50000c8","created_at":"2013-02-14T20:21:00Z","updated_at":"2013-02-25T16:24:30Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s150x150_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s600x600_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/Front.jpg"},"caption":"This
135
- all-black range surprisingly draws attention to itself.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/a0186403ceb4fb30b7cce4c1c214f13f14d8c8d7/Front.jpg","file_size":73385},"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/511d472c444cb07fb50000c8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/511d472c444cb07fb50000c8"}}}],"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/51cc5d46f82dc7b9e000003b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d46f82dc7b9e000003b"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/511e672a8ff8dbf974000452","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/511e672a8ff8dbf974000452"}}},{"id":"513a1db09da86c533600077e","created_at":"2013-03-08T17:19:44Z","updated_at":"2013-05-24T19:57:06Z","name":"Reviewed.com
136
- March Appliance Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-18T13:30:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/reviewed.com
137
- March Appliance Deals Roundup","disqus_uri":"/features/reviewed.com March
138
- Appliance Deals Roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed.com
139
- March Appliance Deals Roundup","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513a1db09da86c533600077e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a1db09da86c533600077e"}}},{"id":"513a099345ba4bfacb000630","created_at":"2013-03-08T15:53:55Z","updated_at":"2013-03-08T22:06:33Z","name":"Samsung
140
- PN60E6500 Review","branch_name":"master","summary":"","meta_description":"","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":["samsung
141
- plasma","samsung 2012 plasma tv","samsung smart hub","smart hub","samsung
142
- smart tv"],"classifications":["review"],"publish_on":"2013-03-13T11:28:00+00:00","attachment_ids":[],"primary_product_id":"50fa2f7f96ab5860160c7603","resource_uri":"/content/samsung-pn60e6500-review","disqus_uri":"/content/samsung-pn60e6500-review","product_ids":["50fa2f7f96ab5860160c7603"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-03-21T15:43:00+00:00","slug":"samsung-pn60e6500-review","is_template":false,"is_branch":false,"products":[{"id":"50fa2f7f96ab5860160c7603","created_at":"2012-03-21T15:43:59Z","updated_at":"2013-06-26T18:24:32Z","name":"Samsung
143
- PN60E6500","slug":"samsung-pn60e6500","_type":"Electronics::Television","types":[],"msrp":2199.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2012-03-21T15:43:00+00:00","upc":"","price_grabber_id":"965608824","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed6fbd0286638e0000b8","model":"PN60E6500","resource_uri":"/products/samsung-pn60e6500","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.66,"ranking":{"total":262,"rank":6,"percentile":98},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
144
- 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"}}},"is_primary_product":true,"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/51cc5d47f82dc7b9e000003c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d47f82dc7b9e000003c"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/513a099345ba4bfacb000630","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a099345ba4bfacb000630"}}},{"id":"5138b9dd12494f322a000647","created_at":"2013-03-07T16:01:34Z","updated_at":"2013-03-07T21:54:23Z","name":"LG
145
- LFX31935ST Blast Chiller Refrigerator Review","branch_name":"master","summary":"We
146
- love this fridge''s Blast Chiller feature, which takes minutes to cool a bottle
147
- of wine or a can of soda. But outside of the innovation, it proved to be a
148
- darn good refrigerator in our regular tests.","meta_description":"","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":[],"classifications":["review"],"publish_on":"2013-03-12T11:45:00+00:00","attachment_ids":[],"primary_product_id":"50fa2dab96ab5860160c6d8e","resource_uri":"/content/lg-lfx31935st-blast-chiller-refrigerator-review","disqus_uri":"/content/lg-lfx31935st-blast-chiller-refrigerator-review","product_ids":["50fa2dab96ab5860160c6d8e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-07T21:10:00+00:00","slug":"lg-lfx31935st-blast-chiller-refrigerator-review","is_template":false,"is_branch":false,"products":[{"id":"50fa2dab96ab5860160c6d8e","created_at":"2012-01-09T17:42:54Z","updated_at":"2013-03-11T21:15:10Z","name":"LG
149
- LFX31935ST Blast Chiller","slug":"lg-lfx31935st-blast-chiller","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
150
- Door","French Door"],"msrp":3849.99,"article_ids":["50fb3950bd0286d55501b999","50fb39fdbd0286d55501c3e8","50fc49e3bd0286d5550b3ceb"],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2012-11-07T21:10:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003ae","brand_id":"50f9ed70bd0286638e0000d8","model":"LFX31935ST
151
- Blast Chiller","resource_uri":"/products/lg-lfx31935st-blast-chiller","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":56,"rank":56,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003ae","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
152
- Refrigerator Rubric","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/50f9ed93bd0286638e0003ae","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003ae"}}},"is_primary_product":true,"attachments":[{"id":"50fc7385bd0286f12a005021","created_at":"2013-01-20T22:45:25Z","updated_at":"2013-01-20T22:45:25Z","name":"LG-LFX31935ST-front.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s50x50_LG-LFX31935ST-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s150x150_LG-LFX31935ST-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s250x250_LG-LFX31935ST-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s300x150_LG-LFX31935ST-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s300x112_LG-LFX31935ST-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s500x500_LG-LFX31935ST-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s600x400_LG-LFX31935ST-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s600x600_LG-LFX31935ST-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x400_LG-LFX31935ST-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x350_LG-LFX31935ST-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/s940x110_LG-LFX31935ST-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/LG-LFX31935ST-front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fc548f5be04de13a2d7f0c792e6ced6920851c07/LG-LFX31935ST-front.jpg","file_size":19757,"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/50fc7385bd0286f12a005021","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc7385bd0286f12a005021"}}}],"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/51cc5d47f82dc7b9e000003d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d47f82dc7b9e000003d"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/5138b9dd12494f322a000647","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138b9dd12494f322a000647"}}}]}'
60
+ string: '{"pagination":{"total":14082,"total_pages":705,"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":"51f279625bfa62856d000008","created_at":"2013-07-26T13:28:02Z","updated_at":"2013-07-26T13:30:16Z","name":"How
61
+ we test great lyrics","branch_name":"master","summary":null,"meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["science"],"publish_on":"2013-07-25T13:28:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/science/science-duh","disqus_uri":"/science/science-duh","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"science-duh","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51f279625bfa62856d000008","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51f279625bfa62856d000008"}}},{"id":"51e0180841b4e31831000d95","created_at":"2013-07-12T14:51:52Z","updated_at":"2013-07-16T20:19:18Z","name":"Some
62
+ Dude Hacks Microwave, Puts Manufacturers to Shame","branch_name":"master","summary":"Microwave
63
+ manufacturers take note: You\u2019re doing it wrong, and some guy from New
64
+ Zealand just showed you up.","meta_description":"Microwave manufacturers take
65
+ note: You\u2019re doing it wrong, and some guy from New Zealand just showed
66
+ you up.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["news"],"publish_on":"2013-07-17T13:00:55+00:00","attachment_ids":["51e019ef346e69649100253b","51e01ba140e6830d42000bef","51e01bea41b4e35bf40022e2"],"primary_product_id":null,"resource_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","disqus_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"some-dude-hacks-microwave-puts-manufacturers-to-shame","is_template":false,"is_branch":false,"attachments":[{"id":"51e01ba140e6830d42000bef","created_at":"2013-07-12T15:07:13Z","updated_at":"2013-07-12T15:07:37Z","name":"mic-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s50x50_mic-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s150x150_mic-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s200x75_mic-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s250x250_mic-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x150_mic-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x112_mic-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s500x500_mic-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x400_mic-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x600_mic-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s630x235_mic-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x400_mic-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x350_mic-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x110_mic-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg","file_size":79704,"content_type":"image/jpeg"},"position":1,"processing":"complete","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/51e01ba140e6830d42000bef","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e01ba140e6830d42000bef"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e0180841b4e31831000d95","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e0180841b4e31831000d95"}}},{"id":"51d6c5696ce265e17a000628","created_at":"2013-07-05T13:08:57Z","updated_at":"2013-07-22T14:11:41Z","name":"2013
67
+ Flagship TV Shootout","branch_name":"master","summary":"We break down four
68
+ of 2013''s most posh televisions\u2014only one can be the best.","meta_description":"We
69
+ break down four of 2013''s most posh televisions\u2014only one can be the
70
+ best.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-16T22:19:53+00:00","attachment_ids":["51d6d159d928061d94000006","51d6d391ad64a781ef0006fb","51d6d6c2ee3eb291050002ec","51d6d97e9665581e8b000032","51d6ef7e4cb07e7094000249","51d6f19e452883f7e400040c","51e59a0139c22ac13600039f","51e5b601ed7f09ef9c000030","51e5b9960cbbbb900c000076"],"primary_product_id":null,"resource_uri":"/features/2013-flagship-tv-shootout","disqus_uri":"/features/2013-flagship-tv-shootout","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"2013-flagship-tv-shootout","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b9960cbbbb900c000076","created_at":"2013-07-16T21:22:30Z","updated_at":"2013-07-16T21:43:39Z","name":"4K_Shoutout_Hero_940x110_01.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s50x50_4K_Shoutout_Hero_940x110_01.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s150x150_4K_Shoutout_Hero_940x110_01.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s200x75_4K_Shoutout_Hero_940x110_01.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s250x250_4K_Shoutout_Hero_940x110_01.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x150_4K_Shoutout_Hero_940x110_01.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x112_4K_Shoutout_Hero_940x110_01.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s500x500_4K_Shoutout_Hero_940x110_01.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x400_4K_Shoutout_Hero_940x110_01.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x600_4K_Shoutout_Hero_940x110_01.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s630x235_4K_Shoutout_Hero_940x110_01.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x400_4K_Shoutout_Hero_940x110_01.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x350_4K_Shoutout_Hero_940x110_01.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x110_4K_Shoutout_Hero_940x110_01.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg","file_size":31386,"content_type":"image/jpeg"},"position":8,"processing":"complete","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/51e5b9960cbbbb900c000076","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b9960cbbbb900c000076"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51d6c5696ce265e17a000628","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51d6c5696ce265e17a000628"}}},{"id":"51e444dea7569ff6ac0005a4","created_at":"2013-07-15T18:52:14Z","updated_at":"2013-07-17T14:07:56Z","name":"Fujifilm
71
+ X20 Digital Camera Review","branch_name":"master","summary":"Fujifilm\u2019s
72
+ X10 followup is more refresh than reboot.","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["511d598e4fb5ad962100011c"],"tags":["x20","fujifilm","camera","digital","review","super-hero4","home-hero1"],"classifications":["review"],"publish_on":"2013-07-16T22:10:43+00:00","attachment_ids":["51e44b6b6abc192a78000006","51e5c2ef0cbbbb3e7200015d","51e5c31da7f00a2c58000113","51e5c352bbfad2e8d300016d","51e5ae18ea2f015cca000006","51e5a8f612b5b38c22001307","51e5a3c7e5973d3821000836","51e57be736bf0921f7000003","51e57be636bf0921f7000001","51e57be736bf0921f7000004","51e57be736bf0921f7000002","51e57be736bf0921f7000005","51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453174ca865cd9400000b","51e453164ca865cd9400000a","51e45dfa78e86bf301001646","51e57e1339c22a631c0001d8","51e57f08e5973d382100062c","51e57f1512b5b398dc000a36","51e57f1f12b5b3b8fb000ad5","51e594604423e12640000259","51e5972612b5b388c20012aa","51e5a17c4423e1fde1000924"],"primary_product_id":"50fa345c96ab5860160c8daa","resource_uri":"/content/fujifilm-x20-digital-camera-review","disqus_uri":"/content/fujifilm-x20-digital-camera-review","product_ids":["50fa345c96ab5860160c8daa"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"fujifilm-x20-digital-camera-review","is_template":false,"is_branch":false,"products":[{"id":"50fa345c96ab5860160c8daa","created_at":"2013-01-07T23:59:16Z","updated_at":"2013-07-16T22:00:11Z","name":"Fujifilm
73
+ X20","slug":"fujifilm-x20","_type":"Electronics::Cameras::PointAndShoot","types":["Ultra
74
+ Compact"],"msrp":599.99,"article_ids":["50fb9c28bd0286d55504d235","51c1c7cdf2e2a298d6000192","51e444dea7569ff6ac0005a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a0","brand_id":"50f9ed76bd0286638e0001b6","model":"X20","resource_uri":"/products/fujifilm-x20","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.77,"ranking":{"total":139,"rank":20,"percentile":86},"rubric":{"id":"50f9ed93bd0286638e0003a0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-07-12T20:14:53Z","name":"2009-2010
75
+ Point & Shoot 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/50f9ed93bd0286638e0003a0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a0"}}},"is_primary_product":true,"attachments":[{"id":"51dc384d9f94b642880000a0","created_at":"2013-07-09T16:20:29Z","updated_at":"2013-07-09T16:21:18Z","name":"vanityschmanitycrop.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s50x50_vanityschmanitycrop.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s150x150_vanityschmanitycrop.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s200x75_vanityschmanitycrop.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s250x250_vanityschmanitycrop.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x150_vanityschmanitycrop.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x112_vanityschmanitycrop.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s500x500_vanityschmanitycrop.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x400_vanityschmanitycrop.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x600_vanityschmanitycrop.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s630x235_vanityschmanitycrop.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x400_vanityschmanitycrop.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x350_vanityschmanitycrop.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x110_vanityschmanitycrop.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg","file_size":589336,"content_type":"image/jpeg"},"position":37,"processing":"complete","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/51dc384d9f94b642880000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc384d9f94b642880000a0"}}}],"bulk_uploads":[{"id":"51c1c92a10a21e32940001cf","created_at":"2013-06-19T15:07:22Z","updated_at":"2013-06-19T15:09:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/hNN-S9qMMK0UfJM5J57r9g/Archive.zip","tags":"sample-photo","status":"complete","article_id":null,"product_id":"50fa345c96ab5860160c8daa","attachment_ids":["51c1c9362689c22995000010","51c1c9372689c22995000011","51c1c9382689c22995000012","51c1c9392689c22995000013","51c1c93b2689c22995000014","51c1c9452689c22995000015","51c1c9532689c22995000016","51c1c95e2689c22995000017","51c1c9632689c22995000018","51c1c96c2689c22995000019","51c1c9702689c2299500001a","51c1c9782689c2299500001b","51c1c9822689c2299500001c","51c1c98c2689c2299500001d","51c1c98e2689c2299500001e","51c1c9902689c2299500001f","51c1c9972689c22995000020","51c1c99d2689c22995000021","51c1c9a62689c22995000022","51c1c9b72689c22995000023"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51c1c92a10a21e32940001cf","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51c1c92a10a21e32940001cf"}}}],"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/51f6dd7b7801411f26000001","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000001"}}}],"attachments":[{"id":"51e45dfa78e86bf301001646","created_at":"2013-07-15T20:39:22Z","updated_at":"2013-07-17T13:19:47Z","name":"x20hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s50x50_x20hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s150x150_x20hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s200x75_x20hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s250x250_x20hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x150_x20hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x112_x20hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s500x500_x20hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x400_x20hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x600_x20hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s630x235_x20hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x400_x20hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x350_x20hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x110_x20hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg","file_size":235867,"content_type":"image/jpeg"},"position":23,"processing":"complete","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/51e45dfa78e86bf301001646","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e45dfa78e86bf301001646"}}}],"bulk_uploads":[{"id":"51e44b67946be06a13001859","created_at":"2013-07-15T19:20:07Z","updated_at":"2013-07-15T19:20:07Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/iRLhMxX44jkXqasR9U4Wew/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e44b6b6abc192a78000006"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e44b67946be06a13001859","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e44b67946be06a13001859"}}},{"id":"51e452f6946be00d51001630","created_at":"2013-07-15T19:52:22Z","updated_at":"2013-07-15T19:52:55Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/J68qrnm-1dbFHAoc_NscEA/gal2.zip","tags":"gallery2","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453164ca865cd9400000a","51e453174ca865cd9400000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e452f6946be00d51001630","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e452f6946be00d51001630"}}},{"id":"51e57aaccb0477fb5d000106","created_at":"2013-07-16T16:54:04Z","updated_at":"2013-07-16T16:54:04Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/5-Jl_GqpxwYeM3cXdm69qA/handling.zip","tags":"gallery2","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57aaccb0477fb5d000106","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57aaccb0477fb5d000106"}}},{"id":"51e57ad5c63de5ba0e000eea","created_at":"2013-07-16T16:54:45Z","updated_at":"2013-07-16T16:54:45Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/7L3STz82Kr9jMwxwQ5_2Bg/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea"}}},{"id":"51e57be4cb0477db2b001220","created_at":"2013-07-16T16:59:16Z","updated_at":"2013-07-16T16:59:19Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/Ut4fD_YhSA1QIROkGMAazA/tryagain.zip","tags":"gallery1","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e57be636bf0921f7000001","51e57be736bf0921f7000002","51e57be736bf0921f7000003","51e57be736bf0921f7000004","51e57be736bf0921f7000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57be4cb0477db2b001220","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57be4cb0477db2b001220"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e444dea7569ff6ac0005a4","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e444dea7569ff6ac0005a4"}}},{"id":"51e570a1c63de5d7ce000680","created_at":"2013-07-16T16:11:13Z","updated_at":"2013-07-16T21:02:21Z","name":"Deals:
76
+ Adventure Cam Discounts for Outdoor Enthusiasts","branch_name":"master","summary":"Your
77
+ camera might get a little down and dirty but that doesn''t mean it has to
78
+ suffer. Adventure cameras are able to withstand nontraditional environments.
79
+ Here are some discounted ones to consider.","meta_description":null,"website_ids":["50e669d7bd028648e000000d","50e669d7bd028648e0000005"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["adventure","camera","tough","Panasonic","Pentax","Olympus","Polaroid","waterproof","shockproof"],"classifications":["deal"],"publish_on":"2013-07-16T21:02:20+00:00","attachment_ids":["51e58c8a8cb8389fb40012bf","51e58c9c4423e1647e001112","51e58cb0c63de5d7ce00080a","51e59067cb047718b400064f","51e59071e16820d264001233","51e5a551e168208da0001259"],"primary_product_id":null,"resource_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","disqus_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-adventure-cam-discounts-for-outdoor-enthusiasts","is_template":false,"is_branch":false,"attachments":[{"id":"51e59067cb047718b400064f","created_at":"2013-07-16T18:26:47Z","updated_at":"2013-07-16T18:27:21Z","name":"Panasonic_Lumix_TS5_DCI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s50x50_Panasonic_Lumix_TS5_DCI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s150x150_Panasonic_Lumix_TS5_DCI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s200x75_Panasonic_Lumix_TS5_DCI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s250x250_Panasonic_Lumix_TS5_DCI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x150_Panasonic_Lumix_TS5_DCI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x112_Panasonic_Lumix_TS5_DCI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s500x500_Panasonic_Lumix_TS5_DCI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x400_Panasonic_Lumix_TS5_DCI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x600_Panasonic_Lumix_TS5_DCI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s630x235_Panasonic_Lumix_TS5_DCI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x400_Panasonic_Lumix_TS5_DCI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x350_Panasonic_Lumix_TS5_DCI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x110_Panasonic_Lumix_TS5_DCI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg","file_size":91638,"content_type":"image/jpeg"},"position":3,"processing":"complete","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/51e59067cb047718b400064f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e59067cb047718b400064f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e570a1c63de5d7ce000680","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e570a1c63de5d7ce000680"}}},{"id":"51e562abe16820d264000fe0","created_at":"2013-07-16T15:11:39Z","updated_at":"2013-07-17T13:21:26Z","name":"KitchenAid
80
+ KEBS109BSS Electric Wall Oven Review","branch_name":"master","summary":"Inconspicuous,
81
+ unremarkable and expensive","meta_description":"The KitchenAid KEBS109BSS
82
+ is a 5.1 cubic foot electric wall oven designed to complement the current
83
+ crop of KitchenAid stovetops. At $2,249.00 ($1,949.00 for the black or white
84
+ options) the KEBS109BSS represents a pretty sizable investment for any homeowner
85
+ or renovator.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove","super-hero6"],"classifications":["review"],"publish_on":"2013-07-16T18:07:37+00:00","attachment_ids":["51e5670139c22ac13600003d"],"primary_product_id":"51e55f0939c22a88c00008ae","resource_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","disqus_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","product_ids":["51e55f0939c22a88c00008ae"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"kitchenaid-kebs109bss-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e55f0939c22a88c00008ae","created_at":"2013-07-16T14:56:09Z","updated_at":"2013-07-16T15:21:00Z","name":"KitchenAid
86
+ KEBS109BSS","slug":"kitchenaid-kebs109bss","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":2249.0,"article_ids":["51e562abe16820d264000fe0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c7","model":"","resource_uri":"/products/kitchenaid-kebs109bss","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"}}},"is_primary_product":true,"attachments":[{"id":"51e55f2725099a34c4000005","created_at":"2013-07-16T14:56:39Z","updated_at":"2013-07-16T15:01:41Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg","file_size":80466,"content_type":"image/jpeg"},"position":5,"processing":"complete","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/51e55f2725099a34c4000005","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e55f2725099a34c4000005"}}}],"bulk_uploads":[{"id":"51e55f2439c22a526b000039","created_at":"2013-07-16T14:56:36Z","updated_at":"2013-07-16T14:56:36Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/X1CN6jG6SwYMT_kzA-vvBQ/KitchenAid
87
+ KEBS109BSS.zip","tags":"","status":"creating","article_id":null,"product_id":"51e55f0939c22a88c00008ae","attachment_ids":["51e55f2625099a34c4000002","51e55f2625099a34c4000003","51e55f2725099a34c4000004","51e55f2725099a34c4000005","51e55f2725099a34c4000006","51e55f2725099a34c4000007","51e55f2825099a34c4000008","51e55f2825099a34c4000009","51e55f2825099a34c400000a"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e55f2439c22a526b000039","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e55f2439c22a526b000039"}}}],"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/51f6dd7b7801411f26000002","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000002"}}}],"attachments":[{"id":"51e5670139c22ac13600003d","created_at":"2013-07-16T15:30:09Z","updated_at":"2013-07-17T13:21:09Z","name":"KitchenAid-Mock-Hero-Convection-2.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s50x50_KitchenAid-Mock-Hero-Convection-2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s150x150_KitchenAid-Mock-Hero-Convection-2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s200x75_KitchenAid-Mock-Hero-Convection-2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s250x250_KitchenAid-Mock-Hero-Convection-2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x150_KitchenAid-Mock-Hero-Convection-2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x112_KitchenAid-Mock-Hero-Convection-2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s500x500_KitchenAid-Mock-Hero-Convection-2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x400_KitchenAid-Mock-Hero-Convection-2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x600_KitchenAid-Mock-Hero-Convection-2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s630x235_KitchenAid-Mock-Hero-Convection-2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x400_KitchenAid-Mock-Hero-Convection-2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x350_KitchenAid-Mock-Hero-Convection-2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x110_KitchenAid-Mock-Hero-Convection-2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg","file_size":371328,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e5670139c22ac13600003d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5670139c22ac13600003d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e562abe16820d264000fe0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e562abe16820d264000fe0"}}},{"id":"51df177941b4e382d2000a92","created_at":"2013-07-11T20:37:13Z","updated_at":"2013-07-16T15:57:49Z","name":"Scientists
88
+ Use Terminator-Like Liquid Metal for 3-D Printing","branch_name":"master","summary":"This
89
+ stretchable liquid metal alloy may be the technology smart clothing has been
90
+ waiting for.","meta_description":"This stretchable liquid metal alloy may
91
+ be the technology smart clothing has been waiting for.","website_ids":["50e669d7bd028648e0000015"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["super-hero3"],"classifications":["feature"],"publish_on":"2013-07-16T15:45:20+00:00","attachment_ids":["51df194941b4e364020009fe","51df1aca435fce49c9000d00","51df1ae741b4e3d9c9000b3e","51df1c3c346e696491000b50"],"primary_product_id":null,"resource_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","disqus_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"scientists-use-terminator-like-liquid-metal-for-3-d-printing","is_template":false,"is_branch":false,"attachments":[{"id":"51df1aca435fce49c9000d00","created_at":"2013-07-11T20:51:22Z","updated_at":"2013-07-11T20:52:08Z","name":"liquid-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s50x50_liquid-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s150x150_liquid-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s200x75_liquid-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s250x250_liquid-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x150_liquid-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x112_liquid-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s500x500_liquid-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x400_liquid-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x600_liquid-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s630x235_liquid-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x400_liquid-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x350_liquid-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x110_liquid-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg","file_size":124248,"content_type":"image/jpeg"},"position":1,"processing":"complete","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/51df1aca435fce49c9000d00","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df1aca435fce49c9000d00"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df177941b4e382d2000a92","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df177941b4e382d2000a92"}}},{"id":"51e06951e839fded5f0000fb","created_at":"2013-07-12T20:38:42Z","updated_at":"2013-07-22T14:21:48Z","name":"Don\u2019t
92
+ Get Played by Your Own Brain: The Confirmation Bias","branch_name":"master","summary":"Even
93
+ the human thought processes can get bugs.","meta_description":"Even the human
94
+ thought processes can get bugs.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["super-hero1"],"classifications":["science"],"publish_on":"2013-07-16T14:03:23+00:00","attachment_ids":["51e0698dd4b55d700a00038e","51e06af7fa4b299f8800029e","51e06c7ed4b55d815a000319","51e5b8179d57a6743f000085"],"primary_product_id":null,"resource_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","disqus_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"dont-get-played-by-your-own-brain-the-confirmation-bias","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b8179d57a6743f000085","created_at":"2013-07-16T21:16:07Z","updated_at":"2013-07-16T21:43:24Z","name":"Undiscovered_Genius.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s50x50_Undiscovered_Genius.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s150x150_Undiscovered_Genius.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s200x75_Undiscovered_Genius.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s250x250_Undiscovered_Genius.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x150_Undiscovered_Genius.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x112_Undiscovered_Genius.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s500x500_Undiscovered_Genius.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x400_Undiscovered_Genius.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x600_Undiscovered_Genius.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s630x235_Undiscovered_Genius.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x400_Undiscovered_Genius.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x350_Undiscovered_Genius.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x110_Undiscovered_Genius.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg","file_size":75985,"content_type":"image/jpeg"},"position":3,"processing":"complete","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/51e5b8179d57a6743f000085","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b8179d57a6743f000085"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e06951e839fded5f0000fb","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e06951e839fded5f0000fb"}}},{"id":"51e066d7e839fdfe9a00012c","created_at":"2013-07-12T20:28:08Z","updated_at":"2013-07-16T22:28:04Z","name":"How
95
+ Long Could a Tour de France Rider Power Your House?","branch_name":"master","summary":"What
96
+ if we could put all that hard work to use?","meta_description":"What if we
97
+ could put all that hard work to use?","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":[],"classifications":["science"],"publish_on":"2013-07-16T14:03:00+00:00","attachment_ids":["51e59e564423e1c724000713","51e5bfb73a9b26e96a00019a"],"primary_product_id":null,"resource_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","disqus_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-long-could-a-tour-de-france-rider-power-your-house","is_template":false,"is_branch":false,"attachments":[{"id":"51e5bfb73a9b26e96a00019a","created_at":"2013-07-16T21:48:39Z","updated_at":"2013-07-16T21:49:04Z","name":"wiggo.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s50x50_wiggo.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s150x150_wiggo.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s200x75_wiggo.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s250x250_wiggo.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x150_wiggo.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x112_wiggo.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s500x500_wiggo.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x400_wiggo.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x600_wiggo.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s630x235_wiggo.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x400_wiggo.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x350_wiggo.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x110_wiggo.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg","file_size":162847,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e5bfb73a9b26e96a00019a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5bfb73a9b26e96a00019a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e066d7e839fdfe9a00012c","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e066d7e839fdfe9a00012c"}}},{"id":"51dd79adc626238784000cc7","created_at":"2013-07-10T15:11:41Z","updated_at":"2013-07-16T22:08:54Z","name":"Image
98
+ Stabilization Testing: How Do We Accurately Simulate Camera Shake?","branch_name":"master","summary":"Unlike
99
+ most performance testing, image stabilization requires a bit ingenuity to
100
+ measure.","meta_description":"Unlike most performance testing, image stabilization
101
+ requires a bit ingenuity to measure.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c","50fc4eb0bd0286d5550b4c9f"],"tags":["imaging","how
102
+ we test","video"],"classifications":["science"],"publish_on":"2013-07-16T14:00:00+00:00","attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000005","51dd7a0f107c979982000111","51e5a535c63de5ed5200046d","51e5a9ede5973d406e0000c1"],"primary_product_id":null,"resource_uri":"/science/how-do-we-accurately-simulate-camera-shake","disqus_uri":"/science/how-do-we-accurately-simulate-camera-shake","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-do-we-accurately-simulate-camera-shake","is_template":false,"is_branch":false,"attachments":[{"id":"51e5a9ede5973d406e0000c1","created_at":"2013-07-16T20:15:41Z","updated_at":"2013-07-16T20:42:41Z","name":"shakerhero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s50x50_shakerhero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s150x150_shakerhero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s200x75_shakerhero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s250x250_shakerhero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x150_shakerhero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x112_shakerhero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s500x500_shakerhero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x400_shakerhero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x600_shakerhero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s630x235_shakerhero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x400_shakerhero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x350_shakerhero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x110_shakerhero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg","file_size":152969,"content_type":"image/jpeg"},"position":6,"processing":"complete","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/51e5a9ede5973d406e0000c1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5a9ede5973d406e0000c1"}}}],"bulk_uploads":[{"id":"51dd79b8defe36c6f8000abe","created_at":"2013-07-10T15:11:52Z","updated_at":"2013-07-10T15:11:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/3A68eIyLelv_midazet74A/Archive
103
+ 2.zip","tags":"","status":"complete","article_id":"51dd79adc626238784000cc7","product_id":null,"attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd79adc626238784000cc7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd79adc626238784000cc7"}}},{"id":"51e41ba997ecd04b5e00086e","created_at":"2013-07-15T15:56:25Z","updated_at":"2013-07-16T14:32:15Z","name":"Deals:
104
+ Build Yourself a Home Theater System","branch_name":"master","summary":"Get
105
+ the most out of your entertainment with a complete home theater system. You''ll
106
+ be sure to have the best living room on the block.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","blu-ray","player","TiVo","TV","speaker","soundbar","Newegg","Best
107
+ Buy","Amazon","projector","home-hero3"],"classifications":["deal"],"publish_on":"2013-07-15T20:43:45+00:00","attachment_ids":["51e444b17a8f6c1ec70003f0","51e447cc97ecd0ceed00161b","51e44b96e36847e0980016a5","51e455cb97ecd072120000de","51e4568c946be06a13001915","51e45dcae168206547000086","51e45e8f97ecd05d6e000129","51e5594612b5b3b8fb00084c"],"primary_product_id":null,"resource_uri":"/deals/deals-build-yourself-a-home-theater-system","disqus_uri":"/deals/deals-build-yourself-a-home-theater-system","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-build-yourself-a-home-theater-system","is_template":false,"is_branch":false,"attachments":[{"id":"51e444b17a8f6c1ec70003f0","created_at":"2013-07-15T18:51:29Z","updated_at":"2013-07-15T18:52:23Z","name":"LG_50LN5700_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s50x50_LG_50LN5700_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s150x150_LG_50LN5700_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s200x75_LG_50LN5700_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s250x250_LG_50LN5700_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x150_LG_50LN5700_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x112_LG_50LN5700_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s500x500_LG_50LN5700_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x400_LG_50LN5700_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x600_LG_50LN5700_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s630x235_LG_50LN5700_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x400_LG_50LN5700_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x350_LG_50LN5700_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x110_LG_50LN5700_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg","file_size":82450,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e444b17a8f6c1ec70003f0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e444b17a8f6c1ec70003f0"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e41ba997ecd04b5e00086e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e41ba997ecd04b5e00086e"}}},{"id":"51e04d9df6e59c9b160000a0","created_at":"2013-07-12T18:40:29Z","updated_at":"2013-07-17T13:17:56Z","name":"Whirlpool
108
+ WOS92EC0AS Electric Wall Oven Review","branch_name":"master","summary":"The
109
+ Whirlpool WOS92ECOA: maximum performance in a minimalist shell.","meta_description":"The
110
+ WOS92EC0AS (MSRP $1,499-$1,699) is an electric convection wall oven with an
111
+ eight-pass broiler element, it comes in the standard black and stainless steel
112
+ as well as the Whirlpools new glossy white finish: White Ice.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-07-15T16:31:43+00:00","attachment_ids":["51e04e8accfde96a7c00009f"],"primary_product_id":"51e048ab0ecba0abc8000036","resource_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","disqus_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","product_ids":["51e048ab0ecba0abc8000036"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"whirlpool-wos92ec0as-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e048ab0ecba0abc8000036","created_at":"2013-07-12T18:19:23Z","updated_at":"2013-07-12T18:39:54Z","name":"Whirlpool
113
+ WOS92EC0AS","slug":"whirlpool-wos92ec0as","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":1699.0,"article_ids":["51e04d9df6e59c9b160000a0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c5","model":"","resource_uri":"/products/whirlpool-wos92ec0as","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"}}},"is_primary_product":true,"attachments":[{"id":"51e04b2a45cfff2661000008","created_at":"2013-07-12T18:30:02Z","updated_at":"2013-07-12T18:34:02Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg","file_size":92228,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e04b2a45cfff2661000008","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04b2a45cfff2661000008"}}}],"bulk_uploads":[{"id":"51e04b25c2998eec590000b2","created_at":"2013-07-12T18:29:57Z","updated_at":"2013-07-12T18:29:57Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/-qf2cZ8tveO3X8fZHG2tKg/untitled
114
+ folder.zip","tags":"","status":"creating","article_id":null,"product_id":"51e048ab0ecba0abc8000036","attachment_ids":["51e04b2745cfff2661000002","51e04b2845cfff2661000003","51e04b2845cfff2661000004","51e04b2945cfff2661000005","51e04b2945cfff2661000006","51e04b2a45cfff2661000007","51e04b2a45cfff2661000008","51e04b2a45cfff2661000009","51e04b2b45cfff266100000a","51e04b2b45cfff266100000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e04b25c2998eec590000b2","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e04b25c2998eec590000b2"}}}],"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/51f6dd7c7801411f26000003","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000003"}}}],"attachments":[{"id":"51e04e8accfde96a7c00009f","created_at":"2013-07-12T18:44:26Z","updated_at":"2013-07-15T20:34:12Z","name":"hero.JPG","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s50x50_Whirlpool_wall_oven_mock_hero.JPG","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s150x150_Whirlpool_wall_oven_mock_hero.JPG","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s200x75_Whirlpool_wall_oven_mock_hero.JPG","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s250x250_Whirlpool_wall_oven_mock_hero.JPG","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x150_Whirlpool_wall_oven_mock_hero.JPG","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x112_Whirlpool_wall_oven_mock_hero.JPG","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s500x500_Whirlpool_wall_oven_mock_hero.JPG","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x400_Whirlpool_wall_oven_mock_hero.JPG","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x600_Whirlpool_wall_oven_mock_hero.JPG","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s630x235_Whirlpool_wall_oven_mock_hero.JPG","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x400_Whirlpool_wall_oven_mock_hero.JPG","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x350_Whirlpool_wall_oven_mock_hero.JPG","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x110_Whirlpool_wall_oven_mock_hero.JPG","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG","file_size":129727,"content_type":"image/jpeg"},"position":0,"processing":"processing","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/51e04e8accfde96a7c00009f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04e8accfde96a7c00009f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e04d9df6e59c9b160000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e04d9df6e59c9b160000a0"}}},{"id":"51dedd5141b4e3ec2b000218","created_at":"2013-07-11T16:29:06Z","updated_at":"2013-07-16T15:57:34Z","name":"UK
115
+ Woman\u2019s Fridge Explodes, Jar of Rhubarb Chutney Blamed","branch_name":"master","summary":"Fermented
116
+ chutney has been blamed for laying waste to a senior citizen\u2019s kitchen,
117
+ though a volatile refrigerant is the more likely culprit.","meta_description":"","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["home-hero1"],"classifications":["feature"],"publish_on":"2013-07-15T15:45:09+00:00","attachment_ids":["51e4193097ecd04193001115","51e419f9946be00d51001166","51e56b81e168201a93000ec1"],"primary_product_id":null,"resource_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","disqus_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","is_template":false,"is_branch":false,"attachments":[{"id":"51e4193097ecd04193001115","created_at":"2013-07-15T15:45:52Z","updated_at":"2013-07-15T15:46:34Z","name":"Chutney
118
+ Hero","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s50x50_chutney-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s150x150_chutney-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s200x75_chutney-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s250x250_chutney-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x150_chutney-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x112_chutney-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s500x500_chutney-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x400_chutney-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x600_chutney-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s630x235_chutney-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x400_chutney-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x350_chutney-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x110_chutney-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg","file_size":112544,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e4193097ecd04193001115","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4193097ecd04193001115"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dedd5141b4e3ec2b000218","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dedd5141b4e3ec2b000218"}}},{"id":"51cd984553f40ab4d9000049","created_at":"2013-06-28T14:05:57Z","updated_at":"2013-07-17T13:17:51Z","name":"Samsung
119
+ ATIV Smart PC Pro 700T Review","branch_name":"master","summary":"A hybrid
120
+ laptop/tablet that uses the full potential of Windows 8","meta_description":"A
121
+ hybrid laptop/tablet that uses the full potential of Windows 8","website_ids":["50e669d7bd028648e000002f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":["samsung
122
+ ativ","windows 8 ativ","samsung tablet laptop","home-hero1","super-hero5"],"classifications":["review"],"publish_on":"2013-07-15T15:10:10+00:00","attachment_ids":["51defdc9903d89d7b3000001","51defde73947282a5c0007ac","51defe4f6b81be56bb0006ea","51df05e3394728eeef00074f","51df066339472841d800082a","51df068a346e6908160007d5","51df072939472841d8000849","51e40eb0946be0980d000345","51e40f3e946be021920010b2"],"primary_product_id":"51cc4b036f758de1020013fe","resource_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","disqus_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","product_ids":["51cc4b036f758de1020013fe"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samsung-ativ-smart-pc-pro-700t-review","is_template":false,"is_branch":false,"products":[{"id":"51cc4b036f758de1020013fe","created_at":"2013-06-27T14:24:04Z","updated_at":"2013-07-15T15:31:43Z","name":"Samsung
123
+ ATIV Smart PC Pro 700T","slug":"samsung-ativ-smart-pc-pro-700t","_type":"Electronics::Computers::Laptop","types":[],"msrp":1199.99,"article_ids":["51cd984553f40ab4d9000049"],"website_ids":["50e669d7bd028648e000002f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003bb","brand_id":"50f9ed6fbd0286638e0000b8","model":"","resource_uri":"/products/samsung-ativ-smart-pc-pro-700t","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.71,"ranking":{"total":15,"rank":4,"percentile":74},"rubric":{"id":"50f9ed93bd0286638e0003bb","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-28T22:44:24Z","name":"Laptops
124
+ 2012 Rubric","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/50f9ed93bd0286638e0003bb","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003bb"}}},"is_primary_product":true,"attachments":[{"id":"51e4140a946be06a130012c5","created_at":"2013-07-15T15:23:54Z","updated_at":"2013-07-15T15:24:40Z","name":"Samsung-ATIV-700T-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s50x50_Samsung-ATIV-700T-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s150x150_Samsung-ATIV-700T-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s200x75_Samsung-ATIV-700T-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s250x250_Samsung-ATIV-700T-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x150_Samsung-ATIV-700T-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x112_Samsung-ATIV-700T-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s500x500_Samsung-ATIV-700T-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x400_Samsung-ATIV-700T-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x600_Samsung-ATIV-700T-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s630x235_Samsung-ATIV-700T-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x400_Samsung-ATIV-700T-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x350_Samsung-ATIV-700T-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x110_Samsung-ATIV-700T-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg","file_size":98277,"content_type":"image/jpeg"},"position":7,"processing":"complete","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/51e4140a946be06a130012c5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4140a946be06a130012c5"}}}],"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/51f6dd7c7801411f26000004","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000004"}}}],"attachments":[{"id":"51e40eb0946be0980d000345","created_at":"2013-07-15T15:01:04Z","updated_at":"2013-07-15T15:01:33Z","name":"ativ-hero-final-940x400.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s50x50_ativ-hero-final-940x400.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s150x150_ativ-hero-final-940x400.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s200x75_ativ-hero-final-940x400.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s250x250_ativ-hero-final-940x400.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x150_ativ-hero-final-940x400.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x112_ativ-hero-final-940x400.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s500x500_ativ-hero-final-940x400.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x400_ativ-hero-final-940x400.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x600_ativ-hero-final-940x400.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s630x235_ativ-hero-final-940x400.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x400_ativ-hero-final-940x400.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x350_ativ-hero-final-940x400.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x110_ativ-hero-final-940x400.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg","file_size":162630,"content_type":"image/jpeg"},"position":7,"processing":"complete","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/51e40eb0946be0980d000345","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e40eb0946be0980d000345"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51cd984553f40ab4d9000049","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51cd984553f40ab4d9000049"}}},{"id":"51dc2b7e09f981a999000003","created_at":"2013-07-09T15:25:50Z","updated_at":"2013-07-15T14:58:12Z","name":"Changing
125
+ How We Rate TVs","branch_name":"master","summary":"Our scores are changing.
126
+ Here''s why.","meta_description":"Our scores are changing. Here''s why.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-15T12:58:48+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/changing-how-we-rate-tvs","disqus_uri":"/features/changing-how-we-rate-tvs","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"changing-how-we-rate-tvs","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dc2b7e09f981a999000003","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc2b7e09f981a999000003"}}},{"id":"51e02f8704bff9a86d000037","created_at":"2013-07-12T16:32:08Z","updated_at":"2013-07-12T20:37:21Z","name":"Deal
127
+ Roundup: Wedding Registry Must-Haves","branch_name":"master","summary":"Summer
128
+ is the time for weddings and with so many potentially on your plate, how will
129
+ you know what to purchase?","meta_description":null,"website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000019"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["cuisinart","Macy''s","wedding
130
+ registry","Amazon","Cooking.com","stand mixer","slow cooker","coffee maker"],"classifications":["deal"],"publish_on":"2013-07-12T20:37:21+00:00","attachment_ids":["51e055e1786c88775f0000b4","51e056f1b51116f4670000ab","51e056fcb51116544800008a","51e055f2b511165619000065","51e055f86e8b60406500010b","51e05a08786c884d7f0000e1"],"primary_product_id":null,"resource_uri":"/deals/deal-roundup-wedding-registry-must-haves","disqus_uri":"/deals/deal-roundup-wedding-registry-must-haves","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deal-roundup-wedding-registry-must-haves","is_template":false,"is_branch":false,"attachments":[{"id":"51e05a08786c884d7f0000e1","created_at":"2013-07-12T19:33:28Z","updated_at":"2013-07-12T19:34:10Z","name":"Cuisinart_ice_cream_maker.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s50x50_Cuisinart_ice_cream_maker.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s150x150_Cuisinart_ice_cream_maker.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s200x75_Cuisinart_ice_cream_maker.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s250x250_Cuisinart_ice_cream_maker.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x150_Cuisinart_ice_cream_maker.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x112_Cuisinart_ice_cream_maker.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s500x500_Cuisinart_ice_cream_maker.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x400_Cuisinart_ice_cream_maker.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x600_Cuisinart_ice_cream_maker.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s630x235_Cuisinart_ice_cream_maker.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x400_Cuisinart_ice_cream_maker.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x350_Cuisinart_ice_cream_maker.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x110_Cuisinart_ice_cream_maker.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg","file_size":45052,"content_type":"image/jpeg"},"position":5,"processing":"complete","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/51e05a08786c884d7f0000e1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e05a08786c884d7f0000e1"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e02f8704bff9a86d000037","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e02f8704bff9a86d000037"}}},{"id":"51df1e16435fcedc23000ad3","created_at":"2013-07-11T21:05:26Z","updated_at":"2013-07-15T15:24:59Z","name":"Reviewed.com
131
+ Weekly Roundup: July 12, 2013","branch_name":"master","summary":"We looked
132
+ at a great camera from a lesser-known brand, a Bosch dishwasher, and more.","meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4e99bd0286d5550b4c17"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T13:00:00+00:00","attachment_ids":["51df2476346e69f882000be3","51e01eab435fceb5fd0010e8","51df24824146740311000e04"],"primary_product_id":null,"resource_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","disqus_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-weekly-roundup-july-12-2013","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df1e16435fcedc23000ad3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df1e16435fcedc23000ad3"}}},{"id":"51dd59fa0637387398000704","created_at":"2013-07-10T12:56:26Z","updated_at":"2013-07-17T13:20:02Z","name":"Sony
133
+ Bravia KDL-50R550A Review","branch_name":"master","summary":"This 50-inch
134
+ LCD from Sony offers media and 3D, but lacks performance power.","meta_description":"This
135
+ 50-inch LCD from Sony offers media and 3D, but lacks performance power.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["review"],"publish_on":"2013-07-12T12:39:33+00:00","attachment_ids":["51e02e3a265255027e000086","51e02e43dbe7d2dc2a000049"],"primary_product_id":"51dd568890ced0d18700073a","resource_uri":"/content/sony-bravia-kdl-50r550a-review","disqus_uri":"/content/sony-bravia-kdl-50r550a-review","product_ids":["51dd568890ced0d18700073a"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"sony-bravia-kdl-50r550a-review","is_template":false,"is_branch":false,"products":[{"id":"51dd568890ced0d18700073a","created_at":"2013-07-10T12:41:44Z","updated_at":"2013-07-15T17:12:06Z","name":"Sony
136
+ Bravia KDL-50R550A","slug":"sony-bravia-kdl-50r550a","_type":"Electronics::Television","types":[],"msrp":999.99,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed6fbd0286638e0000b7","model":"","resource_uri":"/products/sony-bravia-kdl-50r550a","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.61,"ranking":{"total":106,"rank":97,"percentile":9},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-27T14:00:54Z","name":"TV
137
+ 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"}}},"is_primary_product":true,"attachments":[{"id":"51e02b5cbd47e6771a000021","created_at":"2013-07-12T16:14:20Z","updated_at":"2013-07-12T16:14:50Z","name":"vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s150x150_vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s200x75_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x600_vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s630x235_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg","file_size":26667,"content_type":"image/jpeg"},"position":10,"processing":"complete","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/51e02b5cbd47e6771a000021","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02b5cbd47e6771a000021"}}}],"bulk_uploads":[{"id":"51e0034e435fcea53e00017e","created_at":"2013-07-12T13:23:26Z","updated_at":"2013-07-12T13:23:32Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/1HiA0NKemcCVrXEGaUTgsA/charts.zip","tags":"color","status":"complete","article_id":null,"product_id":"51dd568890ced0d18700073a","attachment_ids":["51e00352b03e90493b000001","51e00352b03e90493b000002","51e00353b03e90493b000003","51e00353b03e90493b000004","51e00353b03e90493b000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e0034e435fcea53e00017e","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e0034e435fcea53e00017e"}}}],"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/51f6dd7c7801411f26000005","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000005"}}}],"attachments":[{"id":"51e02e3a265255027e000086","created_at":"2013-07-12T16:26:34Z","updated_at":"2013-07-12T19:21:57Z","name":"Hero2400px.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s50x50_Hero2400px.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s150x150_Hero2400px.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s200x75_Hero2400px.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s250x250_Hero2400px.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x150_Hero2400px.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x112_Hero2400px.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s500x500_Hero2400px.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x400_Hero2400px.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x600_Hero2400px.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s630x235_Hero2400px.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x400_Hero2400px.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x350_Hero2400px.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x110_Hero2400px.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg","file_size":172693,"content_type":"image/jpeg"},"position":0,"processing":"complete","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/51e02e3a265255027e000086","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02e3a265255027e000086"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd59fa0637387398000704","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd59fa0637387398000704"}}},{"id":"51dff7a16b81be8ef0000a3d","created_at":"2013-07-12T12:33:37Z","updated_at":"2013-07-12T18:25:19Z","name":"The
138
+ Weekly TV Roundup: July 12","branch_name":"master","summary":"It''s TV time
139
+ again!","meta_description":"It''s TV time again!","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c9b"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T12:30:56+00:00","attachment_ids":["51e0269941b4e3a10d00069c","51e02d7ccd6634b64100002f","51e046170ecba0d9f0000023"],"primary_product_id":null,"resource_uri":"/features/the-weekly-tv-roundup-july-12","disqus_uri":"/features/the-weekly-tv-roundup-july-12","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"the-weekly-tv-roundup-july-12","is_template":false,"is_branch":false,"attachments":[{"id":"51e046170ecba0d9f0000023","created_at":"2013-07-12T18:08:23Z","updated_at":"2013-07-12T18:08:37Z","name":"TV_Roundup_july12.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s50x50_TV_Roundup_july12.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s150x150_TV_Roundup_july12.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s200x75_TV_Roundup_july12.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s250x250_TV_Roundup_july12.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x150_TV_Roundup_july12.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x112_TV_Roundup_july12.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s500x500_TV_Roundup_july12.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x400_TV_Roundup_july12.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x600_TV_Roundup_july12.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s630x235_TV_Roundup_july12.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x400_TV_Roundup_july12.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x350_TV_Roundup_july12.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x110_TV_Roundup_july12.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg","file_size":115087,"content_type":"image/jpeg"},"position":2,"processing":"complete","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/51e046170ecba0d9f0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e046170ecba0d9f0000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dff7a16b81be8ef0000a3d","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dff7a16b81be8ef0000a3d"}}},{"id":"51decd888c7af461230027e9","created_at":"2013-07-11T15:21:44Z","updated_at":"2013-07-16T14:32:10Z","name":"Deals:
140
+ Never Leave Your Living Room Again","branch_name":"master","summary":"As the
141
+ temperatures outside swell, the need to stay inside gets stronger. Entertain
142
+ yourself this summer with deals on Google TVs and more.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["LG","Google","TV","smart","video
143
+ game","console","Xbox 360","deals"],"classifications":["deal"],"publish_on":"2013-07-11T20:53:19+00:00","attachment_ids":["51dedab4ce7281fd6f000001","51dedfa83947282a5c000328","51dedabe346e69158c0001f7","51dedac4120b11149300020c","51e01a13120b11ddb60004da"],"primary_product_id":null,"resource_uri":"/deals/deals-never-leave-your-living-room-again","disqus_uri":"/deals/deals-never-leave-your-living-room-again","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-never-leave-your-living-room-again","is_template":false,"is_branch":false,"attachments":[{"id":"51dedac4120b11149300020c","created_at":"2013-07-11T16:18:12Z","updated_at":"2013-07-11T19:55:56Z","name":"LG_GA6400_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s50x50_LG_GA6400_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s150x150_LG_GA6400_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s200x75_LG_GA6400_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s250x250_LG_GA6400_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x150_LG_GA6400_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x112_LG_GA6400_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s500x500_LG_GA6400_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x400_LG_GA6400_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x600_LG_GA6400_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s630x235_LG_GA6400_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x400_LG_GA6400_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x350_LG_GA6400_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x110_LG_GA6400_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg","file_size":21420,"content_type":"image/jpeg"},"position":3,"processing":"complete","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/51dedac4120b11149300020c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dedac4120b11149300020c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51decd888c7af461230027e9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51decd888c7af461230027e9"}}}]}'
153
144
  http_version:
154
- recorded_at: Thu, 27 Jun 2013 15:42:01 GMT
155
- recorded_with: VCR 2.5.0
145
+ recorded_at: Mon, 29 Jul 2013 21:24:12 GMT
146
+ recorded_with: VCR 2.4.0
@@ -8,9 +8,9 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.8.7
11
+ - Faraday v0.8.6
12
12
  X-Reviewed-Authorization:
13
- - 38e397252ec670ec441733a95204f141
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
@@ -36,19 +36,19 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:41:55 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:24:10 GMT
42
40
  Status:
43
41
  - 200 OK
44
42
  Strict-Transport-Security:
45
43
  - max-age=31536000
46
44
  Vary:
47
45
  - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
48
  X-Request-Id:
49
- - 651c5a3f278243fe81d8b568578d8ed2
49
+ - 1e84211d6339d4df76d4352c192dc1e5
50
50
  X-Runtime:
51
- - '0.016078'
51
+ - '0.104108'
52
52
  X-Ua-Compatible:
53
53
  - IE=Edge,chrome=1
54
54
  Transfer-Encoding:
@@ -57,9 +57,8 @@ http_interactions:
57
57
  - keep-alive
58
58
  body:
59
59
  encoding: UTF-8
60
- string: '{"pagination":{"total":13067,"total_pages":13067,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":1,"entries_on_page":1},"data":[{"id":"51bb4116aba4288eda0000d7","created_at":"2013-06-14T16:13:10Z","updated_at":"2013-06-24T14:58:49Z","name":"OMG
61
- a feature on a branch","branch_name":"master","summary":null,"meta_description":"weeee
62
- feature","website_ids":["50e669d7bd028648e0000023"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["feature"],"publish_on":"2013-06-14T16:08:43+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/omg-a-feature","disqus_uri":"/features/omg-a-feature","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"omg-a-feature","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51bb4116aba4288eda0000d7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51bb4116aba4288eda0000d7"}}}]}'
60
+ string: '{"pagination":{"total":14082,"total_pages":14082,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":1,"entries_on_page":1},"data":[{"id":"51f279625bfa62856d000008","created_at":"2013-07-26T13:28:02Z","updated_at":"2013-07-26T13:30:16Z","name":"How
61
+ we test great lyrics","branch_name":"master","summary":null,"meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["science"],"publish_on":"2013-07-25T13:28:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/science/science-duh","disqus_uri":"/science/science-duh","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"science-duh","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51f279625bfa62856d000008","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51f279625bfa62856d000008"}}}]}'
63
62
  http_version:
64
- recorded_at: Thu, 27 Jun 2013 15:41:56 GMT
65
- recorded_with: VCR 2.5.0
63
+ recorded_at: Mon, 29 Jul 2013 21:24:10 GMT
64
+ recorded_with: VCR 2.4.0
@@ -14,207 +14,90 @@ http_interactions:
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
17
- - ! '*/*'
17
+ - '*/*'
18
18
  response:
19
19
  status:
20
20
  code: 200
21
- message: !binary |-
22
- T0s=
21
+ message: OK
23
22
  headers:
24
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctQ3JlZGVudGlhbHM=":
25
- - !binary |-
26
- dHJ1ZQ==
27
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctSGVhZGVycw==":
28
- - !binary |-
29
- eC1wYWdpbmF0aW9uLCB4LXJlcXVlc3RlZC13aXRoLCB4LXJlcXVlc3RlZC1i
30
- eSwgeC1yZXZpZXdlZC1hdXRob3JpemF0aW9uLCB4LXNraXAtY2FjaGUsIENv
31
- bnRlbnQtVHlwZQ==
32
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctTWV0aG9kcw==":
33
- - !binary |-
34
- T1BUSU9OUywgR0VULCBQT1NULCBQVVQsIERFTEVURQ==
35
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctT3JpZ2lu":
36
- - !binary |-
37
- Kg==
38
- !binary "QWNjZXNzLUNvbnRyb2wtTWF4LUFnZQ==":
39
- - !binary |-
40
- MTAwMA==
41
- !binary "Q2FjaGUtQ29udHJvbA==":
42
- - !binary |-
43
- bm8tY2FjaGUsIG5vLXN0b3Jl
44
- !binary "Q29udGVudC1FbmNvZGluZw==":
45
- - !binary |-
46
- Z3ppcA==
47
- !binary "Q29udGVudC1UeXBl":
48
- - !binary |-
49
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
50
- !binary "RGF0ZQ==":
51
- - !binary |-
52
- V2VkLCAyNCBKdWwgMjAxMyAyMTowMjo0MiBHTVQ=
53
- !binary "U3RhdHVz":
54
- - !binary |-
55
- MjAwIE9L
56
- !binary "U3RyaWN0LVRyYW5zcG9ydC1TZWN1cml0eQ==":
57
- - !binary |-
58
- bWF4LWFnZT0zMTUzNjAwMA==
59
- !binary "VmFyeQ==":
60
- - !binary |-
61
- QWNjZXB0LUVuY29kaW5n
62
- !binary "WC1SYWNrLUNhY2hl":
63
- - !binary |-
64
- bWlzcw==
65
- !binary "WC1SZXF1ZXN0LUlk":
66
- - !binary |-
67
- YjRhZGVmMGU0OGNhMGNmNTkxM2U1Y2I0OTRhZTljMGY=
68
- !binary "WC1SdW50aW1l":
69
- - !binary |-
70
- Mi41MTAyNDc=
71
- !binary "WC1VYS1Db21wYXRpYmxl":
72
- - !binary |-
73
- SUU9RWRnZSxjaHJvbWU9MQ==
74
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
75
- - !binary |-
76
- Y2h1bmtlZA==
77
- !binary "Q29ubmVjdGlvbg==":
78
- - !binary |-
79
- a2VlcC1hbGl2ZQ==
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:
29
+ - OPTIONS, GET, POST, PUT, DELETE
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
35
+ - no-cache, no-store
36
+ Content-Type:
37
+ - application/json; charset=utf-8
38
+ Date:
39
+ - Mon, 29 Jul 2013 21:24:18 GMT
40
+ Status:
41
+ - 200 OK
42
+ Strict-Transport-Security:
43
+ - max-age=31536000
44
+ Vary:
45
+ - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
+ X-Request-Id:
49
+ - 1ad1183615c99ffbf88266411e33542d
50
+ X-Runtime:
51
+ - '2.914843'
52
+ X-Ua-Compatible:
53
+ - IE=Edge,chrome=1
54
+ Transfer-Encoding:
55
+ - chunked
56
+ Connection:
57
+ - keep-alive
80
58
  body:
81
- encoding: ASCII-8BIT
82
- string: !binary |-
83
- H4sIAPJA8FEAA+ydba/bNpaA/4rhD4tdbJTLV5Hyt26mgwG2nQ0mAXbQweJC
84
- L1Ti5l7bsH3TpEX/+1KW5GtbpHkoyuptoAJFEkumHpMizfP4iPxtvkk/LFfp
85
- frlezRe/zffrffowX2AhBX9V/+ten6F284VM2Kt5udzu9odX5ov99km9mj+k
86
- xxfK9GGnX9ls1efl+mnXvLp6enh4NV+pL+1p5NV8/bS/X5f32fppVeyOb1yX
87
- 5U7t5wv0ap4/bbdq1b4D60LVtn27PqwPbZdqd79eHV/8/dW8SPfpfPGv3+bL
88
- Yr6Yc1SmhCUiidOMyxjhGOUcCzHXpW9VulfFfaovNicIowjJiOD3WCwwWVD5
89
- kz7naVOcnUMjxKtzEF6gZMFQdc4qfdTXnv/t7eztx/V+vXtMt/vZj4xV19g9
90
- PH3Qxz5uos3xWPRYH7vff91Ub/z+QeX77Xq1zHeLxRtd2DbVf3m7Xq72362K
91
- dx/X670+uzpZV9K//u/V/HG33cwXSfI6SV7NdYHL/EHdL4vm6C8q2y337Qu6
92
- AlQcJ4XICkRkzKRCh/+KuT5185Q9LHcf76tWr2sAkwjz94jotl8g/p8ILRA6
93
- VEOuz5hXrbrM1f2HbZpluikONcwooxwjqY9unzJ9/PBy3d7ZNl0V921DJKqI
94
- y5ojpjVInui3Pa4LpW+3ebf6tmq3ftrqKz5tl/qEu812XTzl+92dsULTbf5x
95
- +Vnd7/a6zfTp2df7qvX0keXufpevt8vVh/ss3amH5er5Rm3eVbS3cv0hqm7Q
96
- NOz8cN89Lnc73T121QF94xxPr++iY2n1DXP8Z6F2umm/Nv/Wd2e6Wd7ry386
97
- lJOvH6q2b3rd9lAJd/qMu8/4rsbY6Yt/3Kqyuof2+81ucXe3/6iiD0/LQkX6
98
- c+pe++H1R7Vdf3pKN5vX+frx8v2/P9fiDS/ye/XR9vs0//ioe+XurP/lMRe8
99
- bvaEqRQhmibS0P9038IRQe8JXjC+INzS/zrnHPtf9HwDRdUNFGF9rRi9/nnz
100
- oelA+rRy+VDdEfpTHbrH53S13H+tOsNntT028I6jLxw19aGroxrL1C+qONbG
101
- jr5OH9Nf16v0l11dIccPf1cWWVpiwcqCl5xgVUohU1qiRLEMZYgoGQtOSXZX
102
- X+XeBb7D+jw8Ak5zHTcQQeiL4DfnqS8DwNHcZIT6aa7jBqJonAZrrgMEwmQc
103
- IEzcQBxVt/4YPexwHTdQrE9kIwA114EBxSMBxSAgqu9+evte31zHDZSwcZqs
104
- uQ4MiI7Q7ZvrwIAwHgdIX8cJpGdgVZjxcGug6xx6qpKnm3rWVU9T04f9/V6H
105
- Ju2/6xDit/nT1oTaTEL1+8egfXWYsdzvlr/q2YseynTclK9X+yosamY0y0cd
106
- /Nz9vFGHj7ZZ69n/4bOharq+zpWet64+tB/tD5jJns4L+040T8u4OqM9OfHu
107
- ytwzmMJeuJ4L69lk9vTw6f5p87BO27hsoJrX4VK60g1+DGTu26CoR9Mc39q3
108
- Ro4FXG2UY9jGcYkYKlGKiiSRecbyQzCKg69vL7kKTc5dgLxwAaZY5NwFMBbm
109
- AvgVF8CHcAHNMPZCVEA8rArgXiqATyrgZauApBkxJS8OI2biVgEJQAUkdhXA
110
- 229UPLYKUIJzJRIs9HATK8oTqb/1qShUoScCpUpy/fHjJC8tKqADHqgC4DgW
111
- FdAFClIBcB6zCjDgBKkADx6zCugChakAOJBFBViAeqsAT6CuCugChakAnx5m
112
- VAFdoDAVAAeyqAAzUH8V4AdkUAEGoCAV4AFkVgFdoDAVAAeyqAAzUH8V4Adk
113
- UAFmoP4qwA/IoAI6QIEqAAx0nWMkFTAQ7bkKwIxNKsBTBZjmnoOpgG7hkwrw
114
- VgHkZiqAAFSAKRa5UAG2WORUBWC7CtDd3qoC6mOBKgCzl5IXwBglUtJhZUBd
115
- R1AZUJ89yYAXKwPSutm5LGp9mjllAEVuGUCRXQboW6L+TiWj5wVIWsRMcX1t
116
- PSJJzHNEaJwVKYkxwzHTNYBElhQWGdABD80LAONYZEAXKCwvAMxjlgEGnLC8
117
- ADiPWQZ0gQLzAsBAFhlgAeqfF+AH1JUBXaDAvACPHmaUAV2gwLwAMJBFBpiB
118
- AvICvIAMMsAAFJYXAAcyy4AuUGBeABjIIgPMQAF5AV5ABhlgBgrIC/ACMsiA
119
- DlBoXgAU6DrHWHkBw9CeyQCWCDzJAE8ZYJp7DiYDuoVPMsBbBtCbyQAKkAGp
120
- UwZwW44yUAaIKzJADCIDxEuRAUKPd4wMnBkgvGSAmGTAn0IGIJSWhzHT1AGH
121
- lQGi/U6lY8uAmCsiShQLidJc8kIQleRUf+3nWS51F6CkZHFSphYZ0AEPlAFw
122
- HIsM6AIFyQA4j1kGGHCCZIAHj1kGdIHCZAAcyCIDLEC9ZYAnUFcGdIHCZIBP
123
- DzPKgC5QmAyAA1lkgBmovwzwAzLIAANQkAzwADLLgC5QmAyAA1lkgBmovwzw
124
- AzLIADNQfxngB2SQAR2gQBkABrrOMZIMGIj2XAbEHE0yoJ8MOJt7Di0DTgqf
125
- ZIC3DGA3kwHMIAOSCxlg+mHyVAZQHQMHyYB/SPtDAls5xEMChLwUGVA/JiAG
126
- lQFN/QFlQFOjkwx4sTKgqJudFEIcxszcLQMoQAZQqwyobqD6O5WNLQOoQnFJ
127
- VclJyoXuHYhhSRhDqYoLKhFPOVVZEQuzDOiCB8oAOI5ZBhiAgmQAnMcoA0w4
128
- QTLAg8coAwxAYTIADmSWATag3jLAE6gjAwxAYTLAp4eZZIABKEwGwIHMMsAC
129
- 1F8G+AF1ZYAJKEgGeAAZZYABKEwGwIHMMsAC1F8G+AF1ZYAFqL8M8APqyoAu
130
- UKAMAANd5xhJBgxEeykD5CQDPGWAae45mAzoFj7JAG8ZwG8mAzhABphikQsZ
131
- ELtkAF8QdhKL/H35ab2avVmvHzbLL7O3egaCnm3AqjoY5fXBaNMcvMGaAdUH
132
- zmJK4voeLTjniOKEVTF3dUiqVJ0cYlT/Mb+pQSCcx9ysESgVhMXJxcKDjTZI
133
- 6Jk2oGn1YIlTLmTkRC5cNoZVLZibZ2i34PpwxuAYJ+91fbJkQezB8cU5zQ2p
134
- Qykx09U103+Rs8PdNPu32eFumv0j3Wv43ezft4e/RLuNynezD9v10+Y/vn33
135
- cXelEYKubi/4qi0pEMf0xDBjPWRhqy3Ro0+ih6cFEXZbcn7O6QgVNZ0iOnSK
136
- etbBx9YlUnKZZfrDSpZmokAlITgjGY0zRksWqzzVkyaBZatLnOSBvgTO0/oS
137
- N1GQMIEDNcIEwBNkTDyAGmPiJgpTJnCiVpkAiXo7E08iTABEYdLEp5/V0sRN
138
- FGZN4EStNYER9dcmfkQxjCjIm3gQNd7ETRQmTuBErTiBEfU3J35EFNT7w9SJ
139
- H1GlTpxEge4ETOQAGUmeDIV7Zk8wjyWf9ImHPrFNRgfRJ+bCJ33irU/im+mT
140
- 2KBP0gt9Ujj1CbZFqzZ98iZdrVc6Sv1FbXWIup+9/yd+1id5dTDaVAd3+mC0
141
- /4Jvqk8UOdMnBc5v60gwifl/1ato2jSJoGhITUJPczAuKt2qSczNMGmSSZOM
142
- pUlYfPHlYd+GolYgejCybQPTOed0JIqOnSLSnaKeXsRjaxKcShyzXCWMYyUy
143
- keG4UDFJk1LRBNEkJizT/6tWkzjJAzUJnKfVJG6iIE0CB2o0CYAnSJN4ADWa
144
- xE0UpkngRK0mARL11iSeRJgAiMI0iU8/qzWJmyhMk8CJWk0CI+qvSfyIYhhR
145
- kCbxIGo0iZsoTJPAiVpNAiPqr0n8iCio94dpEj+iSpM4iQI1CZjIATKSJhkK
146
- 90yTCC6mbSk8LYlxLjqUJTEUPlkSb0sibmZJhMGSZBeWpHRaEusWeTZL8lbf
147
- IumX2f9Uw8zsf+lJhsnmcCRaV0eiX+ht00tkduZHMimO6SVZep5ekqMbq5OE
148
- CJs3YQiT5HL9Sj9vos69SVqeeJPTVrA6E0O7TMJkEiaj5ZXk9VtkKfHhe4Q7
149
- 80qoLfOtc87ZoBQdukOku0M9yxBj25K0wCQr8rzIUz0olSylPNEfXbOrvExY
150
- kmMqSyaOu3Zexw5UJXCYVpU4cII8CZym8SQumCBJ4kHTSBIHTpghgeO0hgSC
151
- 01uPeOJg4sIJcyM+vap2Iw6cMDECx2nFCACnvxXxw4kBOEFKxAOnUSIOnDAf
152
- AsdpfQgAp78M8cOh7o4eZkL8cCoTch0nUIOAca5RjORABmG92IwDTetv+qaJ
153
- mOaWg6WJdAufBIhTgOALTdFfSblLdgoQiZwChGKAAOFX0kS+Y/GJBLlMUEjr
154
- ozcTIYyxMxGia+HGtkMIeSVRhLA4FocdWG6cKNJUOzhTpGmIyXxM5mMs88Gb
155
- jZ1lxusvEOVMFbm2/sj5OZZUkapb1FMMObb94NU0qMykLFFGcFmkijKku7PI
156
- dd0pnuaoKKUUyJYr0kUPNCBwIFuyiAEpyILAiSzZIiagIBPiQWRJFzEghdkQ
157
- OJItX8SG1NuIeCIZEkYMSGFWxKe3mTNGDEhhZgSOZEsZsSD1tyN+SKacERNS
158
- kCHxQLIkjRiQwiwJHMmWNWJB6m9K/JBMaSMWpP62xA/JlDfSRQo0JmAkF8lI
159
- 1mQw3osnbHSAPqkTP3VinJwOpU4MhU/qxFud9N9Z1l1yV53kF+rE9Pj/hTpx
160
- 7mN6oU7++vTzUvfbx9nsr7qF3i6/zL6T5ESelM3xqNSHqyfr0vrwDezJH7Bk
161
- KWVCcpJcPERjWbJUxGfhJs7iEwvS1JrVfdjqcVqq9KUvVRqnJDus6GRXBb2X
162
- Kq16X9R0vKi6hfQXKpEiGdsTqDKnrEhYVsYFonkis0zXQMpSVZJED1Gc0gwl
163
- GW49gYM7UBLAaVpJ4OIJMgRwnMYQOGmC9IAHTqMHXDxhbgDO07oBEE9vMeDJ
164
- g4mTJ8wK+PSt2gq4eMKUAJynVQIQnv4+wI8nhvAEyQAPnkYGuHjCTACcpzUB
165
- EJ7+GsCPhwL6e5gD8OOpHICDJ1AAgHmuYowU/Q8Dexb6U0GnyL/n0qRnc82h
166
- lyY9KXyK/L0j//47x7hLdkf+pt+tzyN/Bllbg9ueGvnR+tTI462eGvkjwn2K
167
- scQYg8J9wFMeP3o85fF4k6c8pnA/INyfhkC/IbD/Ttrukt1DIHUPgb7y83x1
168
- 5nfcvjjzjt92bWbG5WnOGEFU3nwBZp7YRslqZSE06MpCpgWYm/oGrr/ctMCU
169
- LPaNDvAvMVmsPFnTv/rJzPTs7nkimHUW1jnHuPxy1SXq31RHV8AkzzNECqoE
170
- ErFMGJMFV/rjq1L/kaUsUZnMY8nNqy93wQMdMBzHvPiyAShIAsN5jGsvm3CC
171
- LLAHj3HpZQNQmAaGA5lXXrYB9fbAnkCdhZcNQGEi2KeHmdZdNgCFmWA4kHnZ
172
- ZQtQfxXsB9RdddkEFOSCPYCMiy4bgMJkMBzIvOayBai/DfYD6i65bAHqr4P9
173
- gLorLneBAn0wGOg6x0hCeCDa82QwJsj0HJ1vMphp8jlYMli38EkJe/uQ/vuH
174
- uUvu+pDiwocwpw/hkN2qztbs0E20q6zG7IenRx2h/+XHN9H7n+iJGW5PiB6q
175
- E6LiMY/2v9JbmhGU0VMzglStO25nRvSH1p/53RU3IvmFQQ5zI/zEjVzWu90t
176
- W1tiMiSTIRnJkLD2p0VFE1V9jxDX43R6UHJuUNWeczkoRYfOETWd4zDbEGhs
177
- TVKWuRSllCQTrIyzXBSpKvKcpJSShMSScoawVMfVl0H0ga4EznRcVghEFSRM
178
- 4FDt6kIwpiBr4gHVLjIEogpTJ3Cq41pDcKre/sSTqlpyCEQVJlF8+l+z8hCI
179
- KsykwKmOCxCBqfrrFD+qGE4V5FQ8qNrliEBUYWIFTnVclQhM1d+u+FFR8MgQ
180
- plj8qA5rFEGoAj0LmAoAM5JsGRL5fOGiSbj4ChfzXHYg4WIqfBIu3sKluJlw
181
- KQDCxbRI6qlwYQvEBhAuP/wUXxcuD7/G30xGHiwTD2ZM6orzMiZ1VU5JeVNS
182
- 3p92TOz/LeUuuTsmqosxMXaPibadtk7HRKPvOR0T3wnkGBR3YoAEPcyS18iy
183
- vH16lqGH81tv/6c/d/WxrSIaM0JEfHsR3dS937hat8akor/Rgf/lqWhOmrsZ
184
- EZEdftI0DU3n69Vz20YbnXOuqOiqe9RxGB7bRYtc4bhavkDpUbtEcY4LJNKE
185
- S0V5kaTVxj8Ul5hec9Fd/EAZDYe6JqMNWEE2Gk51xUaboIJ0tAfVFR1twArz
186
- 0XCsaz7ahtVbSHtiWYS0ASvMSPv0QruRNmCFKWk41jUlbcHq76T9sGxO2oQV
187
- JKU9sK5IaQNWmJWGY12z0has/lraD8umpS1Y/b20H5bNS3exAsU0GAtCM5KZ
188
- HpT5TE3r/hNPatovF9A4tx0qF9BQ+KSmvTVM/+xMd8luDSOcGgbb0m5sGuZN
189
- qtt59v2X5cPycfb9P6N3Up6tqa+PRupwVP8R7eqjgfqFJMnrJHkBWpoJLgQj
190
- rJeezk/XhetU4JXV8Y1VOsnpSU7/WUdFjG41KuqS3aOidI6KhABGRXllVPxJ
191
- CPug+OvhYOiYSF7ImIgJl0KgeMgxsa4+8JBYV+g0Ir6gEfFsyUxJT9YYrlYa
192
- sj8wfVwO07ZmQ+ec0x4Y1bdQVN9CdaxBx9avca4yjkSh7+5CEF0DTJZlmZCE
193
- ZCQpilRILgrKs+fNNRzkgeYVzvO8t4aLKEi6woGOW2s4eYJ8qwfQcWcNF1GY
194
- aoUTPW+sASLqbVk9iQ77ariIwgSrTz9rt9VwEYW5VTjR864aEKL+WtWPKIYR
195
- BRlVD6LjnhouojCZCid63lIDQtTfo/oRUVDvD1OofkT1hhoOokB7CiZygIwk
196
- TofCPU/n5TGdnKnfkprGuehQS2oaCp+cqbcdwDezA9hgB8oLO5C47QAkde3U
197
- Drxbr77O3nzVIXNUbXA5+8u7N9HfkmdBsNPHo/x4PCp2efQx6e0IdCCtB4RC
198
- FbOf1uvHufth6oTm6iSJjcWU33hrUkvyGhOYSQrbdqOTpiZOVIKpsq06wVr9
199
- k1F4kUahQBI3jV+ow49TNDb90nGSsYWT5leMK1ldx3NOem1U3z2Hb2A5+kPF
200
- NEMUiYyXOYvTXI9iihRYVH2QZoyjtOQ5FjLNW5NgJQ40CHCO1iDYSYLMARyk
201
- MQdXOIKMgQdIYwzsJGGmAE7SmgIHSW9D4EmCyRWSMDPg029qM2AnCTMCcJLW
202
- CFwn6W8C/Eji6yRBBsCDpDEAdpKwyB9O0kb+10n6R/x+JPRqLw6L9P1Iqkjf
203
- ShIY4YNJLAAjRfahmOdZUJiwKaL3yoIyzwUHyoIyFT5F9M6InlzE3f2f/3CX
204
- 7I7oU2dET50P6CYLhk9ig/9eF+mn2ffp7uu7j+lWzd7E/GQ5tE/V0Ujpo7vq
205
- aJTXR7+NR3MpITwmRIKCdIEufu8/3SyjU33WCN1SoVN8/iLj80qEskaElnFe
206
- idAUOX/xZ8j9i399zmkfjI43UVTdRPqLFSdo9EXSZZJLwQllVFElM5Yxoueu
207
- JNYvlrHui6rUtZAnqA3U3eiBETscqI3YAUhBoTucqAndIUBBMbwHURPDA5DC
208
- gnk4UhvMQ5F6R/WeSDqqByCFhfc+va0O7wFIYXE+HKmN84FI/QN+P6QYiBQU
209
- +XsgNZE/AClMAcCRWgUAROrvAvyQKGwQCJMCfkiVFHAjBdoBMJKLZCRNMBjv
210
- xYJe8bSppm8GgGluOlgGQLfwyRd4+wJ6M19AAb4gc/oCa6xiywA431Huh4MQ
211
- MW4o93A49I2YgmpR9Djp97SUcWu4uuKAO8PVVTk5ghfrCOK6xfOsPKzlkmK3
212
- I7A9l9M5x7iN2g/VTay/SakYWxBkCckUZyjmCSI4Z5SgOFGykJQizvTXfoqT
213
- Mistu6h1uAPtAJzGvIlalydIDcBxjHuoGWiCvIAHjnELtS5PmBSA85h3ULPw
214
- 9DYCnjydDdS6PGE6wKdvmfZP6/KEuQA4j3n7NDNPfxHgx9PdPc3AE2QBPHiM
215
- m6d1ecIUAJzHvHeamad//O/H0906zczTP/j34+nunNbhCYz8wTxXMUYK+4eB
216
- vcj6T6ZFvH1jftNcc7CYv1v4FPN7x/zsZjE/OzTH7/8vAAAAAP//AwBKrA0N
217
- 9ygBAA==
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":17875,"total_pages":894,"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":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
61
+ PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
62
+ Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"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/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"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/51f6dd7f78014131e7000005","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7f78014131e7000005"}}},{"id":"50fa222096ab5860160c49b6","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Epson
63
+ MovieMate 30S","slug":"epson-moviemate-30s","_type":"Electronics::Projector","types":[],"msrp":1065.81,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"27671289","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"MovieMate
64
+ 30S","resource_uri":"/products/epson-moviemate-30s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fc545dbd0286f12a001f71","created_at":"2013-01-20T20:32:29Z","updated_at":"2013-01-20T20:32:29Z","name":"Epson-MovieMate-30S-102537.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s50x50_Epson-MovieMate-30S-102537.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s150x150_Epson-MovieMate-30S-102537.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s200x75_Epson-MovieMate-30S-102537.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s250x250_Epson-MovieMate-30S-102537.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x150_Epson-MovieMate-30S-102537.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x112_Epson-MovieMate-30S-102537.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s500x500_Epson-MovieMate-30S-102537.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x400_Epson-MovieMate-30S-102537.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x600_Epson-MovieMate-30S-102537.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s630x235_Epson-MovieMate-30S-102537.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x400_Epson-MovieMate-30S-102537.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x350_Epson-MovieMate-30S-102537.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x110_Epson-MovieMate-30S-102537.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg","file_size":2075,"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/50fc545dbd0286f12a001f71","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc545dbd0286f12a001f71"}}}],"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/51f6dd7f78014131e7000006","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7f78014131e7000006"}}},{"id":"50fa222096ab5860160c49b7","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Optoma
65
+ HD73","slug":"optoma-hd73","_type":"Electronics::Projector","types":[],"msrp":136.51,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"31169103","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000ba","model":"HD73","resource_uri":"/products/optoma-hd73","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fc5473bd028694ea001f72","created_at":"2013-01-20T20:32:51Z","updated_at":"2013-01-20T20:32:51Z","name":"Optoma-HD73-102538.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s50x50_Optoma-HD73-102538.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s150x150_Optoma-HD73-102538.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s200x75_Optoma-HD73-102538.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s250x250_Optoma-HD73-102538.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x150_Optoma-HD73-102538.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x112_Optoma-HD73-102538.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s500x500_Optoma-HD73-102538.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x400_Optoma-HD73-102538.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x600_Optoma-HD73-102538.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s630x235_Optoma-HD73-102538.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x400_Optoma-HD73-102538.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x350_Optoma-HD73-102538.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x110_Optoma-HD73-102538.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg","file_size":1553,"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/50fc5473bd028694ea001f72","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5473bd028694ea001f72"}}}],"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/51f6dd7f78014131e7000007","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7f78014131e7000007"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-15T20:21:52Z","name":"Fujifilm
66
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"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/51f6dd7f78014131e7000008","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7f78014131e7000008"}}},{"id":"50fa21e596ab5860160c494e","created_at":"2010-03-29T18:24:31Z","updated_at":"2013-05-21T01:05:10Z","name":"Pentax
67
+ K100D","slug":"pentax-k100d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":699.0,"article_ids":["50fb9066bd0286d5550444be"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19156","price_grabber_id":"20384825","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000af","model":"K100D","resource_uri":"/products/pentax-k100d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fd07a5bd02860b1301a338","created_at":"2013-01-21T09:17:25Z","updated_at":"2013-01-21T09:17:25Z","name":"Pentax-K100D-100331.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s50x50_Pentax-K100D-100331.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s150x150_Pentax-K100D-100331.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s200x75_Pentax-K100D-100331.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s250x250_Pentax-K100D-100331.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x150_Pentax-K100D-100331.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x112_Pentax-K100D-100331.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s500x500_Pentax-K100D-100331.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x400_Pentax-K100D-100331.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x600_Pentax-K100D-100331.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s630x235_Pentax-K100D-100331.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x400_Pentax-K100D-100331.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x350_Pentax-K100D-100331.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x110_Pentax-K100D-100331.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg","file_size":5019,"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/50fd07a5bd02860b1301a338","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07a5bd02860b1301a338"}}}],"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/51f6dd8078014131e7000009","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e7000009"}}},{"id":"50fa21e696ab5860160c494f","created_at":"2010-03-29T18:24:33Z","updated_at":"2013-05-21T01:06:58Z","name":"Fujifilm FinePix
68
+ S5 Pro","slug":"fujifilm-finepix-s5-pro","_type":"Electronics::Cameras::DSLR","types":[],"msrp":1999.0,"article_ids":["50fb5fe1bd0286d555030c15","50fb8e2abd0286d555043a12"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"600005590","price_grabber_id":"31925698","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed76bd0286638e0001b6","model":"S5
69
+ Pro","resource_uri":"/products/fujifilm-finepix-s5-pro","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
70
+ and 2008 Digital SLR Camera 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/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0451bd02868f8101a22a","created_at":"2013-01-21T09:03:13Z","updated_at":"2013-01-21T09:03:13Z","name":"Fuji-FinePix-S5-Pro-100332.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s50x50_Fuji-FinePix-S5-Pro-100332.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s150x150_Fuji-FinePix-S5-Pro-100332.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s200x75_Fuji-FinePix-S5-Pro-100332.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s250x250_Fuji-FinePix-S5-Pro-100332.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x150_Fuji-FinePix-S5-Pro-100332.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x112_Fuji-FinePix-S5-Pro-100332.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s500x500_Fuji-FinePix-S5-Pro-100332.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x400_Fuji-FinePix-S5-Pro-100332.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x600_Fuji-FinePix-S5-Pro-100332.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s630x235_Fuji-FinePix-S5-Pro-100332.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x400_Fuji-FinePix-S5-Pro-100332.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x350_Fuji-FinePix-S5-Pro-100332.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x110_Fuji-FinePix-S5-Pro-100332.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg","file_size":6330,"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/50fd0451bd02868f8101a22a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0451bd02868f8101a22a"}}}],"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/51f6dd8078014131e700000a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e700000a"}}},{"id":"50fa21e696ab5860160c4950","created_at":"2010-03-29T18:24:35Z","updated_at":"2013-05-21T01:06:58Z","name":"Pentax
71
+ K100D Super","slug":"pentax-k100d-super","_type":"Electronics::Cameras::DSLR","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47578386","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K100D
72
+ Super","resource_uri":"/products/pentax-k100d-super","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
73
+ and 2008 Digital SLR Camera 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/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fc5336bd0286de7b0012ae","created_at":"2013-01-20T20:27:34Z","updated_at":"2013-01-20T20:27:34Z","name":"Canon-K100D-Super-100333.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s50x50_Canon-K100D-Super-100333.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s150x150_Canon-K100D-Super-100333.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s200x75_Canon-K100D-Super-100333.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s250x250_Canon-K100D-Super-100333.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x150_Canon-K100D-Super-100333.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x112_Canon-K100D-Super-100333.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s500x500_Canon-K100D-Super-100333.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x400_Canon-K100D-Super-100333.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x600_Canon-K100D-Super-100333.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s630x235_Canon-K100D-Super-100333.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x400_Canon-K100D-Super-100333.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x350_Canon-K100D-Super-100333.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x110_Canon-K100D-Super-100333.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg","file_size":4289,"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/50fc5336bd0286de7b0012ae","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5336bd0286de7b0012ae"}}}],"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/51f6dd8078014131e700000b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e700000b"}}},{"id":"50fa21e796ab5860160c4951","created_at":"2010-03-29T18:24:36Z","updated_at":"2013-06-19T00:00:41Z","name":"Olympus
74
+ PEN E-P1","slug":"olympus-pen-e-p1-2","_type":"Electronics::Cameras::DSLR","types":["Compact
75
+ SLR / System"],"msrp":499.99,"article_ids":["50fb419dbd0286d5550219db","50fb41fabd0286d555021c6e","50fb4255bd0286d555021f03","50fb4267bd0286d555021f87","50fb4279bd0286d55502200d","50fb42f0bd0286d555022327","50fb4328bd0286d5550224b0","50fb480dbd0286d555024d93","50fb482bbd0286d555024e6e","50fb7825bd0286d55503a0fc","50fb7b24bd0286d55503b6d6","50fb7c0cbd0286d55503bdfd","50fb7de0bd0286d55503cd1d","50fb830cbd0286d55503f567","50fc16d2bd0286d55509c65d"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"733175108","rubric_id":"50f9ed93bd0286638e00039f","brand_id":"50f9ed6ebd0286638e0000b1","model":"E-P1","resource_uri":"/products/olympus-pen-e-p1-2","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e00039f","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-26T21:46:58Z","name":"2009-2010
76
+ Digital SLR 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/50f9ed93bd0286638e00039f","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e00039f"}}},"attachments":[{"id":"50fc5a44bd028603360024d8","created_at":"2013-01-20T20:57:40Z","updated_at":"2013-01-20T20:57:40Z","name":"Olympus-E-P1-108404.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s50x50_Olympus-E-P1-108404.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s150x150_Olympus-E-P1-108404.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s200x75_Olympus-E-P1-108404.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s250x250_Olympus-E-P1-108404.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x150_Olympus-E-P1-108404.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x112_Olympus-E-P1-108404.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s500x500_Olympus-E-P1-108404.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x400_Olympus-E-P1-108404.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x600_Olympus-E-P1-108404.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s630x235_Olympus-E-P1-108404.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x400_Olympus-E-P1-108404.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x350_Olympus-E-P1-108404.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x110_Olympus-E-P1-108404.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg","file_size":39338,"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/50fc5a44bd028603360024d8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a44bd028603360024d8"}}}],"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/51f6dd8078014131e700000c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e700000c"}}},{"id":"50fa21e796ab5860160c4952","created_at":"2010-03-29T18:24:38Z","updated_at":"2013-05-21T01:06:17Z","name":"Nikon
77
+ D40x","slug":"nikon-d40x","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34188719","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D40x","resource_uri":"/products/nikon-d40x","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fc5335bd028692240012ab","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Nikon-D40x-100382.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s50x50_Nikon-D40x-100382.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s150x150_Nikon-D40x-100382.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s200x75_Nikon-D40x-100382.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s250x250_Nikon-D40x-100382.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x150_Nikon-D40x-100382.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x112_Nikon-D40x-100382.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s500x500_Nikon-D40x-100382.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x400_Nikon-D40x-100382.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x600_Nikon-D40x-100382.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s630x235_Nikon-D40x-100382.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x400_Nikon-D40x-100382.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x350_Nikon-D40x-100382.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x110_Nikon-D40x-100382.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg","file_size":6299,"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/50fc5335bd028692240012ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028692240012ab"}}}],"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/51f6dd8078014131e700000d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e700000d"}}},{"id":"50fa21e896ab5860160c4953","created_at":"2010-03-29T18:24:39Z","updated_at":"2013-05-21T00:46:57Z","name":"Olympus
78
+ EVOLT E-410","slug":"olympus-evolt-e-410","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34714852","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
79
+ E-410","resource_uri":"/products/olympus-evolt-e-410","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fc5335bd028600af0012ac","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Olympus-EVOLT-E-410-100384.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s50x50_Olympus-EVOLT-E-410-100384.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s150x150_Olympus-EVOLT-E-410-100384.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s200x75_Olympus-EVOLT-E-410-100384.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s250x250_Olympus-EVOLT-E-410-100384.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x150_Olympus-EVOLT-E-410-100384.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x112_Olympus-EVOLT-E-410-100384.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s500x500_Olympus-EVOLT-E-410-100384.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x400_Olympus-EVOLT-E-410-100384.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x600_Olympus-EVOLT-E-410-100384.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s630x235_Olympus-EVOLT-E-410-100384.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x400_Olympus-EVOLT-E-410-100384.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x350_Olympus-EVOLT-E-410-100384.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x110_Olympus-EVOLT-E-410-100384.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg","file_size":5928,"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/50fc5335bd028600af0012ac","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028600af0012ac"}}}],"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/51f6dd8078014131e700000e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8078014131e700000e"}}},{"id":"50fa21e896ab5860160c4954","created_at":"2010-03-29T18:24:40Z","updated_at":"2013-05-21T00:46:58Z","name":"Pentax
80
+ K10D","slug":"pentax-k10d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":799.0,"article_ids":["50fb74c6bd0286d5550385f4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19091","price_grabber_id":"26157789","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K10D","resource_uri":"/products/pentax-k10d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
81
+ and 2008 Digital SLR Camera 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/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0674bd028600af01a2cf","created_at":"2013-01-21T09:12:20Z","updated_at":"2013-01-21T09:12:20Z","name":"Pentax-K10D-101956.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s50x50_Pentax-K10D-101956.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s150x150_Pentax-K10D-101956.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s200x75_Pentax-K10D-101956.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s250x250_Pentax-K10D-101956.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x150_Pentax-K10D-101956.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x112_Pentax-K10D-101956.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s500x500_Pentax-K10D-101956.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x400_Pentax-K10D-101956.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x600_Pentax-K10D-101956.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s630x235_Pentax-K10D-101956.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x400_Pentax-K10D-101956.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x350_Pentax-K10D-101956.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x110_Pentax-K10D-101956.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg","file_size":10305,"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/50fd0674bd028600af01a2cf","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0674bd028600af01a2cf"}}}],"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/51f6dd8178014131e700000f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e700000f"}}},{"id":"50fa21e996ab5860160c4955","created_at":"2010-03-29T18:24:41Z","updated_at":"2013-05-21T01:06:58Z","name":"Canon
82
+ EOS Rebel XTi","slug":"canon-eos-rebel-xti","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f72bd0286d555030b34","50fb8da4bd0286d5550436d6","50fb8ed9bd0286d555043ead"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1236B002","price_grabber_id":"24712314","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"XTi","resource_uri":"/products/canon-eos-rebel-xti","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
83
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce42fbd02868f81012512","created_at":"2013-01-21T06:46:07Z","updated_at":"2013-01-21T06:46:07Z","name":"Canon-EOS-Rebel-XTi-101957.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s50x50_Canon-EOS-Rebel-XTi-101957.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s150x150_Canon-EOS-Rebel-XTi-101957.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s200x75_Canon-EOS-Rebel-XTi-101957.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s250x250_Canon-EOS-Rebel-XTi-101957.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x150_Canon-EOS-Rebel-XTi-101957.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x112_Canon-EOS-Rebel-XTi-101957.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s500x500_Canon-EOS-Rebel-XTi-101957.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x400_Canon-EOS-Rebel-XTi-101957.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x600_Canon-EOS-Rebel-XTi-101957.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s630x235_Canon-EOS-Rebel-XTi-101957.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x400_Canon-EOS-Rebel-XTi-101957.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x350_Canon-EOS-Rebel-XTi-101957.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x110_Canon-EOS-Rebel-XTi-101957.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg","file_size":6228,"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/50fce42fbd02868f81012512","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce42fbd02868f81012512"}}}],"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/51f6dd8178014131e7000010","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000010"}}},{"id":"50fa21e996ab5860160c4956","created_at":"2010-03-29T18:24:43Z","updated_at":"2013-05-21T01:06:58Z","name":"Nikon
84
+ D80","slug":"nikon-d80","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5ff4bd0286d555030c98","50fc0ea4bd0286d5550978a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"25412","price_grabber_id":"23760802","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D80","resource_uri":"/products/nikon-d80","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
85
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce45fbd02868f81012532","created_at":"2013-01-21T06:46:54Z","updated_at":"2013-01-21T06:46:55Z","name":"Nikon-D80-101958.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s50x50_Nikon-D80-101958.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s150x150_Nikon-D80-101958.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s200x75_Nikon-D80-101958.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s250x250_Nikon-D80-101958.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x150_Nikon-D80-101958.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x112_Nikon-D80-101958.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s500x500_Nikon-D80-101958.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x400_Nikon-D80-101958.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x600_Nikon-D80-101958.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s630x235_Nikon-D80-101958.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x400_Nikon-D80-101958.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x350_Nikon-D80-101958.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x110_Nikon-D80-101958.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg","file_size":7738,"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/50fce45fbd02868f81012532","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce45fbd02868f81012532"}}}],"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/51f6dd8178014131e7000011","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000011"}}},{"id":"50fa21ea96ab5860160c4957","created_at":"2010-03-29T18:24:45Z","updated_at":"2013-05-21T01:06:58Z","name":"Leica
86
+ M8","slug":"leica-m8","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb927cbd0286d5550456e4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"29253005","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b4","model":"M8","resource_uri":"/products/leica-m8","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
87
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd07f7bd028663f101a357","created_at":"2013-01-21T09:18:47Z","updated_at":"2013-01-21T09:18:47Z","name":"Leica-M8-101964.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s50x50_Leica-M8-101964.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s150x150_Leica-M8-101964.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s200x75_Leica-M8-101964.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s250x250_Leica-M8-101964.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x150_Leica-M8-101964.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x112_Leica-M8-101964.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s500x500_Leica-M8-101964.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x400_Leica-M8-101964.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x600_Leica-M8-101964.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s630x235_Leica-M8-101964.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x400_Leica-M8-101964.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x350_Leica-M8-101964.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x110_Leica-M8-101964.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg","file_size":5352,"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/50fd07f7bd028663f101a357","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07f7bd028663f101a357"}}}],"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/51f6dd8178014131e7000012","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000012"}}},{"id":"50fa21ea96ab5860160c4958","created_at":"2010-03-29T18:24:46Z","updated_at":"2013-05-21T01:06:59Z","name":"Panasonic
88
+ DMC-L1","slug":"panasonic-dmc-l1","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb601bbd0286d555030cdb"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DMCL1","price_grabber_id":"22919627","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b5","model":"DMC-L1","resource_uri":"/products/panasonic-dmc-l1","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
89
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0464bd0286027b01a22b","created_at":"2013-01-21T09:03:32Z","updated_at":"2013-01-21T09:03:32Z","name":"Panasonic-DMC-L1-101974.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s50x50_Panasonic-DMC-L1-101974.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s150x150_Panasonic-DMC-L1-101974.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s200x75_Panasonic-DMC-L1-101974.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s250x250_Panasonic-DMC-L1-101974.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x150_Panasonic-DMC-L1-101974.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x112_Panasonic-DMC-L1-101974.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s500x500_Panasonic-DMC-L1-101974.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x400_Panasonic-DMC-L1-101974.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x600_Panasonic-DMC-L1-101974.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s630x235_Panasonic-DMC-L1-101974.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x400_Panasonic-DMC-L1-101974.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x350_Panasonic-DMC-L1-101974.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x110_Panasonic-DMC-L1-101974.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg","file_size":4557,"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/50fd0464bd0286027b01a22b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0464bd0286027b01a22b"}}}],"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/51f6dd8178014131e7000013","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000013"}}},{"id":"50fa21eb96ab5860160c4959","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:17Z","name":"Sigma
90
+ SD14","slug":"sigma-sd14","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb9472bd0286d5550466a9"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"28909658","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b6","model":"SD14","resource_uri":"/products/sigma-sd14","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"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":"50fd0838bd0286227201a371","created_at":"2013-01-21T09:19:52Z","updated_at":"2013-01-21T09:19:52Z","name":"Sigma-SD14-101981.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s50x50_Sigma-SD14-101981.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s150x150_Sigma-SD14-101981.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s200x75_Sigma-SD14-101981.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s250x250_Sigma-SD14-101981.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x150_Sigma-SD14-101981.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x112_Sigma-SD14-101981.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s500x500_Sigma-SD14-101981.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x400_Sigma-SD14-101981.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x600_Sigma-SD14-101981.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s630x235_Sigma-SD14-101981.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x400_Sigma-SD14-101981.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x350_Sigma-SD14-101981.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x110_Sigma-SD14-101981.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg","file_size":5178,"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/50fd0838bd0286227201a371","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0838bd0286227201a371"}}}],"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/51f6dd8178014131e7000014","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000014"}}},{"id":"50fa21eb96ab5860160c495a","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:59Z","name":"Sony
91
+ Alpha DSLR-A100","slug":"sony-alpha-dslr-a100","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60c6bd0286d555030e92"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DSLRA100","price_grabber_id":"20953889","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b7","model":"Alpha
92
+ DSLR-A100","resource_uri":"/products/sony-alpha-dslr-a100","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
93
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fc53b5bd028694ea001c1c","created_at":"2013-01-20T20:29:41Z","updated_at":"2013-01-20T20:29:41Z","name":"Sony-Alpha-DSLR-A100-102016.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s50x50_Sony-Alpha-DSLR-A100-102016.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s150x150_Sony-Alpha-DSLR-A100-102016.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s200x75_Sony-Alpha-DSLR-A100-102016.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s250x250_Sony-Alpha-DSLR-A100-102016.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x150_Sony-Alpha-DSLR-A100-102016.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x112_Sony-Alpha-DSLR-A100-102016.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s500x500_Sony-Alpha-DSLR-A100-102016.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x400_Sony-Alpha-DSLR-A100-102016.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x600_Sony-Alpha-DSLR-A100-102016.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s630x235_Sony-Alpha-DSLR-A100-102016.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x400_Sony-Alpha-DSLR-A100-102016.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x350_Sony-Alpha-DSLR-A100-102016.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x110_Sony-Alpha-DSLR-A100-102016.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg","file_size":6090,"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/50fc53b5bd028694ea001c1c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc53b5bd028694ea001c1c"}}}],"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/51f6dd8178014131e7000015","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000015"}}},{"id":"50fa21ec96ab5860160c495b","created_at":"2010-03-29T18:24:50Z","updated_at":"2013-05-21T01:06:59Z","name":"Olympus
94
+ EVOLT E-510","slug":"olympus-evolt-e-510","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb604cbd0286d555030d22","50fb93afbd0286d5550461fe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"262070","price_grabber_id":"34859947","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
95
+ E-510","resource_uri":"/products/olympus-evolt-e-510","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
96
+ and 2008 Digital SLR Camera 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/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd046ebd028662a701a22c","created_at":"2013-01-21T09:03:42Z","updated_at":"2013-01-21T09:03:42Z","name":"Olympus-EVOLT-E-510-102021.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s50x50_Olympus-EVOLT-E-510-102021.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s150x150_Olympus-EVOLT-E-510-102021.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s200x75_Olympus-EVOLT-E-510-102021.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s250x250_Olympus-EVOLT-E-510-102021.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x150_Olympus-EVOLT-E-510-102021.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x112_Olympus-EVOLT-E-510-102021.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s500x500_Olympus-EVOLT-E-510-102021.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x400_Olympus-EVOLT-E-510-102021.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x600_Olympus-EVOLT-E-510-102021.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s630x235_Olympus-EVOLT-E-510-102021.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x400_Olympus-EVOLT-E-510-102021.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x350_Olympus-EVOLT-E-510-102021.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x110_Olympus-EVOLT-E-510-102021.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg","file_size":6491,"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/50fd046ebd028662a701a22c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd046ebd028662a701a22c"}}}],"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/51f6dd8178014131e7000016","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8178014131e7000016"}}},{"id":"50fa21ec96ab5860160c495c","created_at":"2010-03-29T18:24:52Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
97
+ D40","slug":"nikon-d40","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb8237bd0286d55503eefe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1901B004","price_grabber_id":"29541608","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D40","resource_uri":"/products/nikon-d40","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
98
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd067dbd02868f8101a2d4","created_at":"2013-01-21T09:12:29Z","updated_at":"2013-01-21T09:12:29Z","name":"Nikon-D40-102024.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s50x50_Nikon-D40-102024.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s150x150_Nikon-D40-102024.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s200x75_Nikon-D40-102024.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s250x250_Nikon-D40-102024.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x150_Nikon-D40-102024.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x112_Nikon-D40-102024.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s500x500_Nikon-D40-102024.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x400_Nikon-D40-102024.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x600_Nikon-D40-102024.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s630x235_Nikon-D40-102024.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x400_Nikon-D40-102024.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x350_Nikon-D40-102024.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x110_Nikon-D40-102024.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg","file_size":5104,"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/50fd067dbd02868f8101a2d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd067dbd02868f8101a2d4"}}}],"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/51f6dd8278014131e7000017","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8278014131e7000017"}}},{"id":"50fa21ed96ab5860160c495d","created_at":"2010-03-29T18:24:53Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
99
+ D200","slug":"nikon-d200","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f94bd0286d555030b7b","50fb8b70bd0286d555042ef3"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"13321369","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D200","resource_uri":"/products/nikon-d200","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
100
+ Digital SLR Camera 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/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce458bd02862d77012531","created_at":"2013-01-21T06:46:48Z","updated_at":"2013-01-21T06:46:48Z","name":"Nikon-D200-102025.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s50x50_Nikon-D200-102025.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s150x150_Nikon-D200-102025.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s200x75_Nikon-D200-102025.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s250x250_Nikon-D200-102025.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x150_Nikon-D200-102025.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x112_Nikon-D200-102025.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s500x500_Nikon-D200-102025.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x400_Nikon-D200-102025.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x600_Nikon-D200-102025.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s630x235_Nikon-D200-102025.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x400_Nikon-D200-102025.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x350_Nikon-D200-102025.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x110_Nikon-D200-102025.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg","file_size":6424,"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/50fce458bd02862d77012531","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce458bd02862d77012531"}}}],"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/51f6dd8278014131e7000018","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8278014131e7000018"}}}]}'
218
101
  http_version:
219
- recorded_at: Wed, 24 Jul 2013 21:02:42 GMT
102
+ recorded_at: Mon, 29 Jul 2013 21:24:18 GMT
220
103
  recorded_with: VCR 2.4.0