reviewed 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,72 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://the-guide-staging.herokuapp.com/api/v1/articles?keywords=Zenbook,UX31E
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.6
12
+ X-Reviewed-Authorization:
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
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
+ - Wed, 31 Jul 2013 13:59:05 GMT
40
+ Etag:
41
+ - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
+ Status:
43
+ - 200 OK
44
+ Strict-Transport-Security:
45
+ - max-age=31536000
46
+ Vary:
47
+ - Accept-Encoding
48
+ X-Rack-Cache:
49
+ - miss
50
+ X-Request-Id:
51
+ - 43a8e52ecd076ae4897d1ccd7b74a4ef
52
+ X-Runtime:
53
+ - '0.002911'
54
+ X-Ua-Compatible:
55
+ - IE=Edge,chrome=1
56
+ Transfer-Encoding:
57
+ - chunked
58
+ Connection:
59
+ - keep-alive
60
+ body:
61
+ encoding: UTF-8
62
+ string: '{"pagination":{"total":1,"total_pages":1,"first_page":true,"last_page":true,"previous_page":null,"next_page":null,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":1},"data":[{"id":"50fc4bc2bd0286d5550b481a","created_at":"2013-01-04T14:47:31Z","updated_at":"2013-07-30T21:47:51Z","name":"Asus
63
+ Zenbook UX31E Review","branch_name":"master","summary":"The UX31E turned out
64
+ to be a slim and powerful machine.","meta_description":"The UX31E turned out
65
+ to be a slim and powerful machine.","website_ids":["50e669d7bd028648e000002f"],"author_ids":["50fc4e95bd0286d5550b4bf9"],"tags":["Conversion"],"classifications":["review"],"publish_on":"2012-10-31T00:00:00+00:00","attachment_ids":["50fc52b8bd02869049001196","50fc52b8bd028694ea001189"],"primary_product_id":"50fa304196ab5860160c7985","resource_uri":"/content/asus-zenbook-ux31e-in-depth-laptop-review-2.htm","disqus_uri":"asus-zenbook-ux31e-in-depth-laptop-review","product_ids":["50fa304196ab5860160c7985"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"asus-zenbook-ux31e-in-depth-laptop-review-2.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa304196ab5860160c7985","created_at":"2012-05-04T20:06:21Z","updated_at":"2013-04-11T14:59:44Z","name":"Asus
66
+ Zenbook UX31E","slug":"asus-zenbook-ux31e-2","_type":"Electronics::Computers::Laptop","types":["Ultra
67
+ Portable"],"msrp":null,"article_ids":["50fb3c8bbd0286d55501e40b","50fb3ca9bd0286d55501e558","50fb3cbdbd0286d55501e653","50fb3cc6bd0286d55501e6a7","50fc43b2bd0286d5550b10fa","50fc4bc2bd0286d5550b481a"],"website_ids":["50e669d7bd028648e000002f"],"publish_on":null,"upc":null,"price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed70bd0286638e0000eb","model":"Zenbook
68
+ UX31E","resource_uri":"/products/asus-zenbook-ux31e-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"50fcf70dbd02868b51014026","created_at":"2013-01-21T08:06:37Z","updated_at":"2013-01-21T08:06:37Z","name":"P_500-1.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s50x50_P_500-1.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s150x150_P_500-1.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s200x75_P_500-1.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s250x250_P_500-1.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s300x150_P_500-1.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s300x112_P_500-1.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s500x500_P_500-1.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s600x400_P_500-1.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s600x600_P_500-1.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s630x235_P_500-1.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s940x400_P_500-1.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s940x350_P_500-1.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/s940x110_P_500-1.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/P_500-1.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f885ca7a12a8110ddfeab25e838ad206c2685bae/P_500-1.jpg","file_size":27608,"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/50fcf70dbd02868b51014026","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fcf70dbd02868b51014026"}}}],"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/51f91829175f607c6c000033","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f91829175f607c6c000033"}}}],"attachments":[{"id":"50fc52b8bd02869049001196","created_at":"2013-01-20T20:25:28Z","updated_at":"2013-01-23T16:53:10Z","name":"Large
69
+ Hero","type":"file","tags":["Large Hero","hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s50x50_asus940x400.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s150x150_asus940x400.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s200x75_asus940x400.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s250x250_asus940x400.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s300x150_asus940x400.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s300x112_asus940x400.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s500x500_asus940x400.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s600x400_asus940x400.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s600x600_asus940x400.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s630x235_asus940x400.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s940x400_asus940x400.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s940x350_asus940x400.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/s940x110_asus940x400.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/asus940x400.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/87658da8ee7dfddb104aade248368575c2f48b0f/asus940x400.jpg","file_size":159159,"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/50fc52b8bd02869049001196","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc52b8bd02869049001196"}}}],"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/50fc4bc2bd0286d5550b481a","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fc4bc2bd0286d5550b481a"}}}]}'
70
+ http_version:
71
+ recorded_at: Wed, 31 Jul 2013 13:59:06 GMT
72
+ 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:42:57 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:25:06 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
- - 6be0a99cd0ceb42a956f1f81d30d7eac
49
+ - e99adeeb31a5be64c314348d63b83e96
50
50
  X-Runtime:
51
- - '0.019178'
51
+ - '1.119163'
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/51cc5d7ef82dc772ea00006a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ef82dc772ea00006a"}}}],"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/51cc5d7ff82dc772ea00006b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006b"}}}],"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/51cc5d7ff82dc772ea00006c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006c"}}}],"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/51cc5d7ff82dc772ea00006d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d7ff82dc772ea00006d"}}}],"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/51cc5d80f82dc772ea00006e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea00006e"}}}],"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/51cc5d80f82dc772ea00006f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea00006f"}}}],"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/51cc5d80f82dc772ea000070","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea000070"}}}],"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/51cc5d80f82dc772ea000071","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d80f82dc772ea000071"}}}],"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/51cc5d81f82dc772ea000072","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000072"}}}],"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/51cc5d81f82dc772ea000073","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000073"}}}],"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/51cc5d81f82dc772ea000074","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d81f82dc772ea000074"}}}],"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/51f6ddb140a0ce88bb000053","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb140a0ce88bb000053"}}}],"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/51f6ddb140a0ce88bb000054","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb140a0ce88bb000054"}}}],"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/51f6ddb240a0ce88bb000055","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb240a0ce88bb000055"}}}],"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/51f6ddb240a0ce88bb000056","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb240a0ce88bb000056"}}}],"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/51f6ddb240a0ce88bb000057","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb240a0ce88bb000057"}}}],"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:59 GMT
155
- recorded_with: VCR 2.5.0
145
+ recorded_at: Mon, 29 Jul 2013 21:25:06 GMT
146
+ recorded_with: VCR 2.4.0
@@ -2,15 +2,15 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://the-guide-staging.herokuapp.com/api/v1/articles?keywords=doesnotcompute
5
+ uri: https://the-guide-staging.herokuapp.com/api/v1/articles?keywords=TQ
6
6
  body:
7
7
  encoding: US-ASCII
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,7 +36,7 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:43:03 GMT
39
+ - Wed, 31 Jul 2013 14:01:23 GMT
40
40
  Etag:
41
41
  - '"e0aa021e21dddbd6d8cecec71e9cf564"'
42
42
  Status:
@@ -45,10 +45,12 @@ http_interactions:
45
45
  - max-age=31536000
46
46
  Vary:
47
47
  - Accept-Encoding
48
+ X-Rack-Cache:
49
+ - miss
48
50
  X-Request-Id:
49
- - 61583fea337c5d8761b5433947a14712
51
+ - 6c5f09c110283fd75c29b605d17deeff
50
52
  X-Runtime:
51
- - '0.025699'
53
+ - '0.000758'
52
54
  X-Ua-Compatible:
53
55
  - IE=Edge,chrome=1
54
56
  Transfer-Encoding:
@@ -57,7 +59,7 @@ http_interactions:
57
59
  - keep-alive
58
60
  body:
59
61
  encoding: UTF-8
60
- string: '{"pagination":{"total":0,"total_pages":0,"first_page":true,"last_page":true,"previous_page":null,"next_page":null,"out_of_bounds":true,"offset":0,"current_page":1,"per_page":20,"entries_on_page":0},"data":[]}'
62
+ string: '{"pagination":{"total":0,"total_pages":0,"first_page":true,"last_page":false,"previous_page":null,"next_page":null,"out_of_bounds":true,"offset":0,"current_page":1,"per_page":20,"entries_on_page":0},"data":[]}'
61
63
  http_version:
62
- recorded_at: Thu, 27 Jun 2013 15:43:04 GMT
63
- recorded_with: VCR 2.5.0
64
+ recorded_at: Wed, 31 Jul 2013 14:01:24 GMT
65
+ 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:43:02 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:25:07 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
- - fe3a708c6ad8f9bb6ba693788e942e05
49
+ - 0f3cc1ba163e4b74265c1626604eb007
50
50
  X-Runtime:
51
- - '0.019178'
51
+ - '1.099123'
52
52
  X-Ua-Compatible:
53
53
  - IE=Edge,chrome=1
54
54
  Transfer-Encoding:
@@ -57,66 +57,88 @@ http_interactions:
57
57
  - keep-alive
58
58
  body:
59
59
  encoding: UTF-8
60
- string: '{"pagination":{"total":13067,"total_pages":654,"first_page":false,"last_page":false,"previous_page":1,"next_page":3,"out_of_bounds":false,"offset":20,"current_page":2,"per_page":20,"entries_on_page":20},"data":[{"id":"51361bbd8f4eb6f84b0005e4","created_at":"2013-03-05T16:22:21Z","updated_at":"2013-05-24T19:57:03Z","name":"The
61
- History of Smart Appliances","branch_name":"master","summary":"test","meta_description":"","website_ids":[],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-11T16:00:00+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/the-history-of-smart-appliances","disqus_uri":"/features/the-history-of-smart-appliances","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"the-history-of-smart-appliances","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/51361bbd8f4eb6f84b0005e4","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51361bbd8f4eb6f84b0005e4"}}},{"id":"513a66360880789d47000127","created_at":"2013-03-08T22:29:10Z","updated_at":"2013-05-24T19:56:36Z","name":"Cooking
62
- On Salt, Not With It (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4e9bbd0286d5550b4c1a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-08T22:20:34+00:00","attachment_ids":["513a68c9ae7a771888000098"],"primary_product_id":null,"resource_uri":"/features/cooking-on-salt-not-with-it-video","disqus_uri":"/features/cooking-on-salt-not-with-it-video","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"cooking-on-salt-not-with-it-video","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/513a66360880789d47000127","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a66360880789d47000127"}}},{"id":"513a4a1fd8ddd3f8460008ed","created_at":"2013-03-08T20:29:19Z","updated_at":"2013-03-08T20:56:09Z","name":"A
63
- Brighter Future With Cleaner Windows (video)","branch_name":"master","summary":"Move
64
- over Rosie Jetson and put away your Windex. Winbot has got this under control.
65
- ","meta_description":"","website_ids":["50e669d7bd028648e000001b"],"author_ids":[],"tags":[],"classifications":["feature"],"publish_on":"2013-03-08T20:23:05+00:00","attachment_ids":["513a4d4cbd2898adbf000912"],"primary_product_id":null,"resource_uri":"/features/a-brighter-future-with-cleaner-windows-video","disqus_uri":"/features/a-brighter-future-with-cleaner-windows-video","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"a-brighter-future-with-cleaner-windows-video","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/513a4a1fd8ddd3f8460008ed","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513a4a1fd8ddd3f8460008ed"}}},{"id":"5138f167a8e30b0a64000653","created_at":"2013-03-07T19:58:31Z","updated_at":"2013-05-24T19:56:37Z","name":"Samurai
66
- Swords for Your Kitchen (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c9a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-07T19:51:37+00:00","attachment_ids":["5138f15d6dc8c2cad00000f6"],"primary_product_id":null,"resource_uri":"/features/samurai-swords-for-your-kitchen","disqus_uri":"/features/samurai-swords-for-your-kitchen","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samurai-swords-for-your-kitchen","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/5138f167a8e30b0a64000653","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138f167a8e30b0a64000653"}}},{"id":"51389dc50ac94eacc70003f3","created_at":"2013-03-07T14:01:41Z","updated_at":"2013-03-08T16:42:06Z","name":"Panasonic
67
- Viera TC-L47E5 Review","branch_name":"master","summary":"The L47E5 fails to
68
- perform alongside Panasonic''s same-price plasmas.","meta_description":"The
69
- L47E5 fails to perform alongside Panasonic''s same-price plasmas.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T13:58:14+00:00","attachment_ids":["5138a6cb2c402876f6000408","5138a6e312614a951d0003d5"],"primary_product_id":"5139fc6e095ca50e890005f3","resource_uri":"/content/panasonic-viera-tc-l47e5-review-2","disqus_uri":"/content/panasonic-viera-tc-l47e5-review-2","product_ids":["5139fc6e095ca50e890005f3"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-08T14:04:53+00:00","slug":"panasonic-viera-tc-l47e5-review-2","is_template":false,"is_branch":false,"products":[{"id":"5139fc6e095ca50e890005f3","created_at":"2013-03-08T14:57:50Z","updated_at":"2013-04-23T17:24:07Z","name":"Panasonic
70
- Viera TC-L47E5","slug":"panasonic-viera-tc-l47e5-2","_type":"Electronics::Television","types":[],"msrp":799.0,"article_ids":["51389dc50ac94eacc70003f3"],"website_ids":[],"publish_on":"2013-03-08T14:04:53+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"513a0a39095ca5e0ee000560","model":"","resource_uri":"/products/panasonic-viera-tc-l47e5-2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"5139febd07989eb5fc0004cc","created_at":"2013-03-08T15:07:41Z","updated_at":"2013-03-08T15:07:41Z","name":"Front-Vanity.jpg","type":"file","tags":["design","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s50x50_Front-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s150x150_Front-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s250x250_Front-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x150_Front-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s300x112_Front-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s500x500_Front-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x400_Front-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s600x600_Front-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x400_Front-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x350_Front-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/s940x110_Front-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/94dc30bfb352444535c9ed62285264a175a10156/Front-Vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/uploads/tmp/20130308-1507-41-8884/Front-Vanity.jpg","file_size":113973},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139febd07989eb5fc0004cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139febd07989eb5fc0004cc"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d82f82dc772ea000075","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d82f82dc772ea000075"}}}],"attachments":[{"id":"5138a6cb2c402876f6000408","created_at":"2013-03-07T14:40:11Z","updated_at":"2013-03-07T20:03:50Z","name":"Hero.jpg","type":"file","tags":["hero","Small
71
- Hero","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s50x50_Hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s150x150_Hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s250x250_Hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s300x150_Hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s300x112_Hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s500x500_Hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s600x400_Hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s600x600_Hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x400_Hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x350_Hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/s940x110_Hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/Hero.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/53512c81397bf2b85ae843d1667d235b175abaca/Hero.jpg","file_size":93386},"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/5138a6cb2c402876f6000408","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5138a6cb2c402876f6000408"}}}],"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/51389dc50ac94eacc70003f3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51389dc50ac94eacc70003f3"}}},{"id":"5137b28c5048fd40590006d3","created_at":"2013-03-06T21:18:04Z","updated_at":"2013-03-07T22:29:59Z","name":"Ariston
72
- TVF63X Review","branch_name":"master","summary":"And you thought the Fiat
73
- 500 was a hot Italian subcompact!","meta_description":"And you thought the
74
- Fiat 500 was a hot Italian subcompact!","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T13:00:00+00:00","attachment_ids":[],"primary_product_id":"5138d3ec90a1bfbef20005ab","resource_uri":"/content/ariston-tvf63x-review","disqus_uri":"/content/ariston-tvf63x-review","product_ids":["5138d3ec90a1bfbef20005ab"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-07T17:36:10+00:00","slug":"ariston-tvf63x-review","is_template":false,"is_branch":false,"products":[{"id":"5138d3ec90a1bfbef20005ab","created_at":"2013-03-07T17:52:44Z","updated_at":"2013-03-08T01:46:10Z","name":"Ariston
75
- TVF63X","slug":"tvf63x","_type":"Appliances::MajorAppliances::Dryer","types":[],"msrp":799.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-07T17:36:10+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b0","brand_id":"51390ce25693113d8c00010c","model":"","resource_uri":"/products/tvf63x","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":2.9,"ranking":{"total":50,"rank":48,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003b0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"Dryers","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003b0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b0"}}},"is_primary_product":true,"attachments":[{"id":"5139011c9da86c5336000023","created_at":"2013-03-07T21:05:32Z","updated_at":"2013-03-07T21:17:18Z","name":"Ariston-TVF63X-vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s50x50_Ariston-TVF63X-vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s150x150_Ariston-TVF63X-vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s250x250_Ariston-TVF63X-vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x150_Ariston-TVF63X-vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s300x112_Ariston-TVF63X-vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s500x500_Ariston-TVF63X-vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x400_Ariston-TVF63X-vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s600x600_Ariston-TVF63X-vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x400_Ariston-TVF63X-vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x350_Ariston-TVF63X-vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/s940x110_Ariston-TVF63X-vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/fd7fd32dab353e117ad055ceab9572a0858122df/Ariston-TVF63X-vanity.jpg","file_size":74734},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5139011c9da86c5336000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5139011c9da86c5336000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d83f82dc772ea000076","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000076"}}}],"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/5137b28c5048fd40590006d3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5137b28c5048fd40590006d3"}}},{"id":"5138f7fe491965ad1f000002","created_at":"2013-03-07T20:26:38Z","updated_at":"2013-03-28T15:18:06Z","name":"KitchenAid
76
- KDRS505XSS Dual Oven Gas Range Review","branch_name":"master","summary":"Dual
77
- oven ranges often value features over performance, but this KitchenAid doesn''t
78
- compromise much.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-07T10:00:00+00:00","attachment_ids":["5138f18c0ac94e78290006d0"],"primary_product_id":"50fa2eb296ab5860160c720e","resource_uri":"/content/kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","disqus_uri":"/content/kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","product_ids":["50fa2eb296ab5860160c720e"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-02-29T20:32:00+00:00","slug":"kitchenaid-kdrs505xss-dual-oven-gas-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa2eb296ab5860160c720e","created_at":"2012-02-29T22:40:29Z","updated_at":"2013-03-14T14:11:56Z","name":"KitchenAid
79
- KDRS505XSS","slug":"kitchenaid-kdrs505xss","_type":"Appliances::MajorAppliances::Oven","types":["Gas","Electric","Dual-Fuel"],"msrp":2499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-02-29T20:32:00+00:00","upc":"","price_grabber_id":"802949523","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c7","model":"KDRS505XSS","resource_uri":"/products/kitchenaid-kdrs505xss","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.54,"ranking":{"total":30,"rank":6,"percentile":80},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
80
- 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":"5138c579a8e30b0a640004e6","created_at":"2013-03-07T16:51:05Z","updated_at":"2013-03-07T22:56:55Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s50x50_front-KitchenAid-KDRS505XSS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s150x150_front-KitchenAid-KDRS505XSS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s250x250_front-KitchenAid-KDRS505XSS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s300x150_front-KitchenAid-KDRS505XSS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s300x112_front-KitchenAid-KDRS505XSS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s500x500_front-KitchenAid-KDRS505XSS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s600x400_front-KitchenAid-KDRS505XSS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s600x600_front-KitchenAid-KDRS505XSS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x400_front-KitchenAid-KDRS505XSS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x350_front-KitchenAid-KDRS505XSS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/s940x110_front-KitchenAid-KDRS505XSS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/front-KitchenAid-KDRS505XSS.jpg"},"caption":"This
81
- feature-laden dual oven range adheres to KitchenAid''s standard design language.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/7a1589d772947cb5087494a5669496029de24f50/front-KitchenAid-KDRS505XSS.jpg","file_size":70397},"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/5138c579a8e30b0a640004e6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5138c579a8e30b0a640004e6"}}}],"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/51cc5d83f82dc772ea000077","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000077"}}}],"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/5138f7fe491965ad1f000002","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138f7fe491965ad1f000002"}}},{"id":"513107b5ad0b4e8e6d0004dc","created_at":"2013-03-01T19:55:33Z","updated_at":"2013-05-24T19:56:58Z","name":"Soggy
82
- Brownies and Burnt Pizza: How Does an Oven Regulate Temperature?","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eaebd0286d5550b4c91","50fc4eb0bd0286d5550b4c9c"],"tags":["temperature","regulate","oven","thermostat","thermometer","thermistor","thermocouple","capillary","capilary"],"classifications":["feature"],"publish_on":"2013-03-07T06:00:00+00:00","attachment_ids":["5131072147f465e210000505","5131073097d89671cd0004f6","51310745edde7e616f00050f","5131078f19cd81dee30004be","513107a7c3d3ce011c000169","513107ca9fe203ca3100049e","513107ec849b610e6a00057a","51310802a1c48afb98000453","513108149fe2035ef90004d1","51310839c3d3ce612f000500"],"primary_product_id":null,"resource_uri":"/features/soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","disqus_uri":"/features/soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"soggy-brownies-and-burnt-pizza-how-does-an-oven-regulate-temperature","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/513107b5ad0b4e8e6d0004dc","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513107b5ad0b4e8e6d0004dc"}}},{"id":"5138caa7cb4ae870aa0005d9","created_at":"2013-03-07T17:13:11Z","updated_at":"2013-03-08T16:43:05Z","name":"GE
83
- Profile PFE29PSDSS Review","branch_name":"master","summary":"This fridge is
84
- innovative and effective","meta_description":"One of the best French door
85
- fridges on the market can also do some cool tricks while keeping your food
86
- cold.","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c96"],"tags":["home-hero2"],"classifications":["review"],"publish_on":"2013-03-07T05:00:00+00:00","attachment_ids":["5138d34d43919dbb68000560","5138e6c3c2b02eef06000736","5138e7b65c810a9b380005a5"],"primary_product_id":"50fa33e696ab5860160c8b36","resource_uri":"/content/ge-profile-pfe29psdss-refrigerator-review.htm","disqus_uri":"/content/ge-profile-pfe29psdss-refrigerator-review.htm","product_ids":["50fa33e696ab5860160c8b36"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-02-28T09:00:00+00:00","slug":"ge-profile-pfe29psdss-refrigerator-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa33e696ab5860160c8b36","created_at":"2012-10-29T13:34:40Z","updated_at":"2013-03-07T18:09:00Z","name":"GE Profile
87
- PFE29PSDSS","slug":"ge-profile-pfe29psdss","_type":"Appliances::MajorAppliances::Refrigerator","types":["French
88
- Door"],"msrp":3099.0,"article_ids":[],"website_ids":["50e669d7bd028648e0000019"],"publish_on":"2013-02-28T09:00:00+00:00","upc":"","price_grabber_id":"1003876473","rubric_id":"50f9ed93bd0286638e0003ae","brand_id":"50f9ed76bd0286638e0001a9","model":"PFE29PSDSS","resource_uri":"/products/ge-profile-pfe29psdss","archive_state":"manually_current","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":56,"rank":1,"percentile":99},"rubric":{"id":"50f9ed93bd0286638e0003ae","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
89
- 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":"50fd0dc1bd0286ffdf01b7d7","created_at":"2013-01-21T09:43:29Z","updated_at":"2013-03-08T15:57:55Z","name":"GE-PFE29PSDSS-front.jpg","type":"file","tags":["vanity","Front"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s50x50_GE-PFE29PSDSS-front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s150x150_GE-PFE29PSDSS-front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s250x250_GE-PFE29PSDSS-front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s300x150_GE-PFE29PSDSS-front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s300x112_GE-PFE29PSDSS-front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s500x500_GE-PFE29PSDSS-front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s600x400_GE-PFE29PSDSS-front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s600x600_GE-PFE29PSDSS-front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x400_GE-PFE29PSDSS-front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x350_GE-PFE29PSDSS-front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/s940x110_GE-PFE29PSDSS-front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/GE-PFE29PSDSS-front.jpg"},"caption":"","alt_text":"","data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c3aa5948904bca2f5ca0423562a41bfac9c68c2f/GE-PFE29PSDSS-front.jpg","file_size":22994,"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/50fd0dc1bd0286ffdf01b7d7","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0dc1bd0286ffdf01b7d7"}}}],"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/51cc5d83f82dc772ea000078","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d83f82dc772ea000078"}}}],"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/5138caa7cb4ae870aa0005d9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138caa7cb4ae870aa0005d9"}}},{"id":"5138ab8dc3fe935586000459","created_at":"2013-03-07T15:00:29Z","updated_at":"2013-05-24T19:57:05Z","name":"Reviewed.com
90
- March Headphones Deals Roundup","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-07T05:00:00+00:00","attachment_ids":["5138f4fbc2b02eef0600078c","5138f51c0a66a400e300069b","5138f539cb4ae8dfb300063b","5138f556de88c37957000694","5138f56b12614a951d0006ba","5138f58af0804716180006de","5138f5b9c3fe935586000769"],"primary_product_id":null,"resource_uri":"/features/reviewed-com-march-headphones-deals-roundup","disqus_uri":"/features/reviewed-com-march-headphones-deals-roundup","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-march-headphones-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/5138ab8dc3fe935586000459","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138ab8dc3fe935586000459"}}},{"id":"5136348d5e71b4b40e000583","created_at":"2013-03-05T18:08:13Z","updated_at":"2013-03-07T19:55:01Z","name":"Magnavox
91
- 32MD301B Review","branch_name":"master","summary":"An old-school TV that manages
92
- to impress with solid picture quality.","meta_description":"","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":[],"classifications":["review"],"publish_on":"2013-03-07T03:00:00+00:00","attachment_ids":["51376c5d561e649638000441"],"primary_product_id":"51362cdf9e4e47720b0004d2","resource_uri":"/content/magnavox-32md301b-review","disqus_uri":"/content/magnavox-32md301b-review","product_ids":["51362cdf9e4e47720b0004d2"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-05T04:00:00+00:00","slug":"magnavox-32md301b-review","is_template":false,"is_branch":false,"products":[{"id":"51362cdf9e4e47720b0004d2","created_at":"2013-03-05T17:35:27Z","updated_at":"2013-03-31T14:38:11Z","name":"Magnavox
93
- 32MD301B","slug":"magnavox-32md301b","_type":"Electronics::Television","types":[],"msrp":499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-03-05T04:00:00+00:00","upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"51377ceffcc113c3fc000490","model":"","resource_uri":"/products/magnavox-32md301b","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.24,"ranking":{"total":262,"rank":254,"percentile":4},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"TV
94
- 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":"51362fe2f15f513c230006d6","created_at":"2013-03-05T17:48:18Z","updated_at":"2013-03-10T02:30:07Z","name":"front.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s50x50_front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s150x150_front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s250x250_front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x150_front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s300x112_front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s500x500_front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x400_front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s600x600_front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x400_front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x350_front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/s940x110_front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg"},"caption":"Maybe
95
- it''s just us, but that red stripe below the logo is kind of ugly.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/1d9f29567d029a016d8e8c1b6d5ebce3d4b80ae5/front.jpg","file_size":64804},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51362fe2f15f513c230006d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51362fe2f15f513c230006d6"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d84f82dc772ea000079","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d84f82dc772ea000079"}}}],"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/5136348d5e71b4b40e000583","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136348d5e71b4b40e000583"}}},{"id":"5137b70c3f0c86b2fe000265","created_at":"2013-03-06T21:37:16Z","updated_at":"2013-05-24T19:57:04Z","name":"Mighty
96
- Mug is The Best Thing for Coffee Since Milk (video)","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000001b","50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c9a"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-06T21:33:26+00:00","attachment_ids":["5137b6fd602f9136e80006aa"],"primary_product_id":null,"resource_uri":"/features/mighty-mug-is-the-best-thing-for-coffee-since-milk","disqus_uri":"/features/mighty-mug-is-the-best-thing-for-coffee-since-milk","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"mighty-mug-is-the-best-thing-for-coffee-since-milk","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/5137b70c3f0c86b2fe000265","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5137b70c3f0c86b2fe000265"}}},{"id":"51375a213f0c861fc9000331","created_at":"2013-03-06T15:00:50Z","updated_at":"2013-03-08T15:05:12Z","name":"Ariston
97
- ARWL129NA Review","branch_name":"master","summary":"If your home''s proportions
98
- are more suited to Milan than Minnesota, this might be the washer for you.","meta_description":"If
99
- your home''s proportions are more suited to Milan than Minnesota, this might
100
- be the washer for you.","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c97"],"tags":["washer","review","compact"],"classifications":["review"],"publish_on":"2013-03-06T07:00:00+00:00","attachment_ids":["5138faf660714fc7c1000011"],"primary_product_id":"50fa317696ab5860160c7f43","resource_uri":"/content/ariston-arwl129na-review.htm","disqus_uri":"/content/ariston-arwl129na-review.htm","product_ids":["50fa317696ab5860160c7f43"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-09-05T18:00:00+00:00","slug":"ariston-arwl129na-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa317696ab5860160c7f43","created_at":"2012-06-13T22:03:23Z","updated_at":"2013-03-14T14:13:03Z","name":"Ariston
101
- ARWL129NA","slug":"ariston-arwl129na","_type":"Appliances::MajorAppliances::WashingMachine","types":["Front-Loading","Compact"],"msrp":899.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2012-09-05T18:00:00+00:00","upc":"","price_grabber_id":"815974602","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"50f9ed7cbd0286638e000280","model":"ARWL129NA","resource_uri":"/products/ariston-arwl129na","archive_state":"manually_current","is_scoring_baseline":false,"archived":false,"product_rating":7.77,"ranking":{"total":50,"rank":8,"percentile":84},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
102
- Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"is_primary_product":true,"attachments":[{"id":"5137f33bc9934790eb00058e","created_at":"2013-03-07T01:54:03Z","updated_at":"2013-03-07T20:31:11Z","name":"Ariston_Front
103
- copy.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s50x50_Ariston_Front_copy.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s150x150_Ariston_Front_copy.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s250x250_Ariston_Front_copy.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s300x150_Ariston_Front_copy.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s300x112_Ariston_Front_copy.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s500x500_Ariston_Front_copy.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s600x400_Ariston_Front_copy.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s600x600_Ariston_Front_copy.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x400_Ariston_Front_copy.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x350_Ariston_Front_copy.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/s940x110_Ariston_Front_copy.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/Ariston_Front_copy.jpg"},"caption":"It''s
104
- hard to tell from this picture, but this washer only stands 33 inches tall.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/5cb52f6f3b5a140ed7fa7cf74320c5c3bff51eac/Ariston_Front_copy.jpg","file_size":153190},"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/5137f33bc9934790eb00058e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5137f33bc9934790eb00058e"}}}],"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/51cc5d84f82dc772ea00007a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d84f82dc772ea00007a"}}}],"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/51375a213f0c861fc9000331","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51375a213f0c861fc9000331"}}},{"id":"513634a0237bfc429700055d","created_at":"2013-03-05T18:08:32Z","updated_at":"2013-05-24T19:56:17Z","name":"Induction
105
- Cookers Heat Up IHHS","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-06T06:30:00+00:00","attachment_ids":["513635c084e29ff614000583","513635ff13afee75d80005ca","5136362b84e29ff614000585","513636b2542c9272da0005c7","513636da13afee1406000522","513636f64505ea90160004f6","5136370f13afee75d80005d8","5136374263387518f70004e8","513637682e24e90ecf00053d","51363794182c5f63d7000572","5136381c2e24e9c1e000078f","51363b2d182c5f63d7000596","51363c969e4e4764e800053d","5137b0150d385e262e00051c"],"primary_product_id":null,"resource_uri":"/features/induction-cookers-heat-up-at-ihhs","disqus_uri":"/features/induction-cookers-heat-up-at-ihhs","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"induction-cookers-heat-up-at-ihhs","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/513634a0237bfc429700055d","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/513634a0237bfc429700055d"}}},{"id":"5136288c13afee1406000477","created_at":"2013-03-05T17:17:00Z","updated_at":"2013-03-07T15:24:18Z","name":"Whirlpool
106
- WFE720H0AS Electric Range Review","branch_name":"master","summary":"Whirlpool
107
- gets it right with the WFE720H0AS.","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-03-06T04:30:00+00:00","attachment_ids":["51363146b8e9b4cd4d000072"],"primary_product_id":"50fa342096ab5860160c8c5f","resource_uri":"/content/whirlpool-wfe720h0as-electric-range-review.htm","disqus_uri":"/content/whirlpool-wfe720h0as-electric-range-review.htm","product_ids":["50fa342096ab5860160c8c5f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2012-11-21T16:02:00+00:00","slug":"whirlpool-wfe720h0as-electric-range-review.htm","is_template":false,"is_branch":false,"products":[{"id":"50fa342096ab5860160c8c5f","created_at":"2012-11-21T16:36:26Z","updated_at":"2013-03-14T14:11:57Z","name":"Whirlpool
108
- WFE720H0AS","slug":"whirlpool-wfe720h0as","_type":"Appliances::MajorAppliances::Oven","types":["Electric"],"msrp":1249.0,"article_ids":[],"website_ids":["50e669d7bd028648e000002b"],"publish_on":"2012-11-21T16:02:00+00:00","upc":"","price_grabber_id":"956620824","rubric_id":"50f9ed93bd0286638e0003b9","brand_id":"50f9ed77bd0286638e0001c5","model":"WFE720H0AS","resource_uri":"/products/whirlpool-wfe720h0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.01,"ranking":{"total":30,"rank":11,"percentile":64},"rubric":{"id":"50f9ed93bd0286638e0003b9","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:19Z","name":"2012
109
- 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":"51351346c14ff6346900000e","created_at":"2013-03-04T21:33:58Z","updated_at":"2013-03-10T02:29:37Z","name":"Front","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s50x50_frontWhirlpool_WFE720H0AS.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s150x150_frontWhirlpool_WFE720H0AS.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s250x250_frontWhirlpool_WFE720H0AS.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s300x150_frontWhirlpool_WFE720H0AS.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s300x112_frontWhirlpool_WFE720H0AS.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s500x500_frontWhirlpool_WFE720H0AS.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s600x400_frontWhirlpool_WFE720H0AS.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s600x600_frontWhirlpool_WFE720H0AS.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x400_frontWhirlpool_WFE720H0AS.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x350_frontWhirlpool_WFE720H0AS.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/s940x110_frontWhirlpool_WFE720H0AS.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/frontWhirlpool_WFE720H0AS.jpg"},"caption":"This
110
- Whirlpool has a very standard and unassuming stainless steel look.","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/98a023edba9e906a57616f6efb24964df0bd77f6/frontWhirlpool_WFE720H0AS.jpg","file_size":64536},"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/51351346c14ff6346900000e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51351346c14ff6346900000e"}}}],"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/51cc5d85f82dc772ea00007b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007b"}}}],"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/5136288c13afee1406000477","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136288c13afee1406000477"}}},{"id":"5136129d13afeed2c2000476","created_at":"2013-03-05T15:43:25Z","updated_at":"2013-03-05T15:43:25Z","name":"Hisense''s
111
- 2012 Smart TV Platform: Explained","branch_name":"master","summary":"","meta_description":"","website_ids":[],"author_ids":[],"tags":[],"classifications":[],"publish_on":"2013-03-05T15:43:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/content/hisense-s-2012-smart-tv-platform-explained","disqus_uri":"/content/hisense-s-2012-smart-tv-platform-explained","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"hisense-s-2012-smart-tv-platform-explained","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/5136129d13afeed2c2000476","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5136129d13afeed2c2000476"}}},{"id":"5135fe3fb5a96df4930003bf","created_at":"2013-03-05T14:16:31Z","updated_at":"2013-03-07T16:13:57Z","name":"Panasonic
112
- Viera TC-P60S60 Review","branch_name":"master","summary":"","meta_description":"","website_ids":[],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":[],"publish_on":"2013-03-05T14:12:11+00:00","attachment_ids":[],"primary_product_id":"50fa346296ab5860160c8dcd","resource_uri":"/content/panasonic-viera-tc-p60s60-review","disqus_uri":"/content/panasonic-viera-tc-p60s60-review","product_ids":["50fa346296ab5860160c8dcd"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-01-08T17:54:00+00:00","slug":"panasonic-viera-tc-p60s60-review","is_template":false,"is_branch":false,"products":[{"id":"50fa346296ab5860160c8dcd","created_at":"2013-01-08T17:54:59Z","updated_at":"2013-03-11T21:05:07Z","name":"Panasonic Viera
113
- TC-P60S60","slug":"panasonic-viera-tc-p60s60","_type":"Electronics::Television","types":["Plasma"],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":"2013-01-08T17:54:00+00:00","upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b5","model":"TC-P60S60","resource_uri":"/products/panasonic-viera-tc-p60s60","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":[],"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/51cc5d85f82dc772ea00007c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007c"}}}],"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/5135fe3fb5a96df4930003bf","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5135fe3fb5a96df4930003bf"}}},{"id":"5134b8d0a31cd2555300020a","created_at":"2013-03-04T15:08:00Z","updated_at":"2013-03-08T15:28:02Z","name":"LG
114
- WT1101CW Review","branch_name":"master","summary":"The LG WT1101CW with its
115
- Smart Drum technology may be too smart for its own good","meta_description":"","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c97"],"tags":[],"classifications":["review"],"publish_on":"2013-03-05T07:00:00+00:00","attachment_ids":["51362df3459c3b307b0005a7"],"primary_product_id":"5134bf84f7fb8dc21b000223","resource_uri":"/content/lg-wt1101cw-review","disqus_uri":"/content/lg-wt1101cw-review","product_ids":["5134bf84f7fb8dc21b000223"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-03-04T15:14:13+00:00","slug":"lg-wt1101cw-review","is_template":false,"is_branch":false,"products":[{"id":"5134bf84f7fb8dc21b000223","created_at":"2013-03-04T15:36:36Z","updated_at":"2013-03-14T14:12:53Z","name":"LG
116
- WT1101CW","slug":"lg-wt1101cw","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":699.0,"article_ids":[],"website_ids":["50e669d7bd028648e000001b"],"publish_on":"2013-03-04T15:14:13+00:00","upc":"","price_grabber_id":"1080763319","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"513a04289da86c69df000691","model":"","resource_uri":"/products/lg-wt1101cw","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.23,"ranking":{"total":50,"rank":42,"percentile":16},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:55:46Z","name":"Washing
117
- Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"is_primary_product":true,"attachments":[{"id":"5134be6bf83e98e0f200029b","created_at":"2013-03-04T15:31:55Z","updated_at":"2013-03-10T02:28:50Z","name":"Vanity","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s150x150_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s600x600_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/f921b107b7af5ffc773a62679953a342decd3835/vanity.jpg","file_size":11636},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/5134be6bf83e98e0f200029b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/5134be6bf83e98e0f200029b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51cc5d85f82dc772ea00007d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d85f82dc772ea00007d"}}}],"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/5134b8d0a31cd2555300020a","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5134b8d0a31cd2555300020a"}}},{"id":"51311a1697b7460ad7000489","created_at":"2013-03-01T21:13:58Z","updated_at":"2013-05-24T19:56:50Z","name":"Smart
118
- Appliances: Your Home, Connected","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e0000021","50e669d7bd028648e000002b","50e669d7bd028648e0000019","50e669d7bd028648e000001b"],"author_ids":["50fc4e99bd0286d5550b4c17"],"tags":["home-hero1"],"classifications":["feature"],"publish_on":"2013-03-04T11:14:00+00:00","attachment_ids":["51311b94fbeae35ded00046c","5134d40f9dfd86f345000314","5134fb296d5bf2390a0003b8"],"primary_product_id":null,"resource_uri":"/features/smart-appliances-your-home-connected","disqus_uri":"/features/smart-appliances-your-home-connected","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"smart-appliances-your-home-connected","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/51311a1697b7460ad7000489","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51311a1697b7460ad7000489"}}},{"id":"512fd30d56fe2f59ff000993","created_at":"2013-02-28T21:58:37Z","updated_at":"2013-05-24T19:56:49Z","name":"What
119
- is a Smart Appliance?","branch_name":"master","summary":"test","meta_description":"","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eacbd0286d5550b4c8c"],"tags":[],"classifications":["feature"],"publish_on":"2013-03-04T11:00:00+00:00","attachment_ids":["5130d9e4ee7b68dbb70003bf","5130de5815c1a6fd6600039a","5134dcb6f8f167a52b000348"],"primary_product_id":null,"resource_uri":"/features/what-is-a-smart-appliance","disqus_uri":"/features/what-is-a-smart-appliance","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"what-is-a-smart-appliance","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/512fd30d56fe2f59ff000993","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/512fd30d56fe2f59ff000993"}}}]}'
60
+ string: '{"pagination":{"total":14082,"total_pages":705,"first_page":false,"last_page":false,"previous_page":1,"next_page":3,"out_of_bounds":false,"offset":20,"current_page":2,"per_page":20,"entries_on_page":20},"data":[{"id":"51df0cdb346e69b2c20009db","created_at":"2013-07-11T19:51:55Z","updated_at":"2013-07-11T20:31:58Z","name":"Sharp
61
+ LC-39LE440U on Sale at Dell","branch_name":"master","summary":"Get a $50 gift
62
+ card to use towards a future purchase at Dell.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Sharp","39
63
+ inch","LED","TV","LC-39LE440U","LE440U","Dell","Home"],"classifications":["deal"],"publish_on":"2013-07-11T20:31:58+00:00","attachment_ids":["51df0ce941b4e3e942000895"],"primary_product_id":null,"resource_uri":"/deals/sharp-lc-39le440u-on-sale-at-dell","disqus_uri":"/deals/sharp-lc-39le440u-on-sale-at-dell","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"sharp-lc-39le440u-on-sale-at-dell","is_template":false,"is_branch":false,"attachments":[{"id":"51df0ce941b4e3e942000895","created_at":"2013-07-11T19:52:09Z","updated_at":"2013-07-11T19:52:23Z","name":"Sharp_39_LE440U_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s50x50_Sharp_39_LE440U_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s150x150_Sharp_39_LE440U_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s200x75_Sharp_39_LE440U_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s250x250_Sharp_39_LE440U_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s300x150_Sharp_39_LE440U_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s300x112_Sharp_39_LE440U_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s500x500_Sharp_39_LE440U_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s600x400_Sharp_39_LE440U_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s600x600_Sharp_39_LE440U_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s630x235_Sharp_39_LE440U_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s940x400_Sharp_39_LE440U_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s940x350_Sharp_39_LE440U_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/s940x110_Sharp_39_LE440U_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/Sharp_39_LE440U_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/15a49efa9c13121904823dbaa8f3ef7e3eea898a/Sharp_39_LE440U_TVI.jpg","file_size":120966,"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/51df0ce941b4e3e942000895","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df0ce941b4e3e942000895"}}}],"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/51df0cdb346e69b2c20009db","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df0cdb346e69b2c20009db"}}},{"id":"51df1182120b1155cb0009d6","created_at":"2013-07-11T20:11:47Z","updated_at":"2013-07-12T14:40:17Z","name":"Igloo
64
+ 1.7 Cubic Foot Refrigerator on Sale at Walmart","branch_name":"master","summary":"This
65
+ tiny fridge and freezer is perfect for the office or dorm room that is the
66
+ size of a box.","meta_description":null,"website_ids":["50e669d7bd028648e0000019"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Igloo","1.7
67
+ cubic foot","Refrigerator","Freezer","Stainless Steel","Walmart","compact","home-hero4"],"classifications":["deal"],"publish_on":"2013-07-11T20:25:22+00:00","attachment_ids":["51df11aa346e69b2c2000a91","51e0154540e68332a7000c4d"],"primary_product_id":null,"resource_uri":"/deals/igloo-1.7
68
+ Cubic Foot Refrigerator on Sale at Walmart","disqus_uri":"/deals/igloo-1.7
69
+ Cubic Foot Refrigerator on Sale at Walmart","product_ids":[],"related_article_ids":["51dc69f288459b9d4c0013c9","51c20ac1dd9af09ef500003b","51bb75e178beec11df000e91"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"igloo-1.7
70
+ Cubic Foot Refrigerator on Sale at Walmart","is_template":false,"is_branch":false,"attachments":[{"id":"51df11aa346e69b2c2000a91","created_at":"2013-07-11T20:12:26Z","updated_at":"2013-07-11T20:12:40Z","name":"Igloo_1_7_compact_RFI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s50x50_Igloo_1_7_compact_RFI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s150x150_Igloo_1_7_compact_RFI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s200x75_Igloo_1_7_compact_RFI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s250x250_Igloo_1_7_compact_RFI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s300x150_Igloo_1_7_compact_RFI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s300x112_Igloo_1_7_compact_RFI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s500x500_Igloo_1_7_compact_RFI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s600x400_Igloo_1_7_compact_RFI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s600x600_Igloo_1_7_compact_RFI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s630x235_Igloo_1_7_compact_RFI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s940x400_Igloo_1_7_compact_RFI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s940x350_Igloo_1_7_compact_RFI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/s940x110_Igloo_1_7_compact_RFI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/Igloo_1_7_compact_RFI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dbb20e6ee8759086a4e0933ef22417968e6de049/Igloo_1_7_compact_RFI.jpg","file_size":38121,"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/51df11aa346e69b2c2000a91","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df11aa346e69b2c2000a91"}}}],"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/51df1182120b1155cb0009d6","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df1182120b1155cb0009d6"}}},{"id":"51df12b841b4e3ae00000a3e","created_at":"2013-07-11T20:16:56Z","updated_at":"2013-07-12T14:38:07Z","name":"Blackstone
71
+ Outdoor Griddle Cooking Station on Sale at Groupon","branch_name":"master","summary":"Take
72
+ full advantage of the outdoors with this discounted griddle.","meta_description":null,"website_ids":["50e669d7bd028648e000002b"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Blackstone","Outdoor","Griddle","Cooking","Station","Groupon","barbecue","propane","home-hero4"],"classifications":["deal"],"publish_on":"2013-07-11T20:25:14+00:00","attachment_ids":["51df132a40e683c62f000a3f","51e014c840e6836a6d0012a1"],"primary_product_id":null,"resource_uri":"/deals/blackstone-outdoor-griddle-cooking-station-on-sale-at-groupon","disqus_uri":"/deals/blackstone-outdoor-griddle-cooking-station-on-sale-at-groupon","product_ids":[],"related_article_ids":["51d333e8b617d567cf0019b5","5182d30f8f2f7d7bd1002380","51b78d277bf41d815500075f"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"blackstone-outdoor-griddle-cooking-station-on-sale-at-groupon","is_template":false,"is_branch":false,"attachments":[{"id":"51df132a40e683c62f000a3f","created_at":"2013-07-11T20:18:50Z","updated_at":"2013-07-11T20:19:01Z","name":"blackstone_outdoor_griddle_OVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s50x50_blackstone_outdoor_griddle_OVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s150x150_blackstone_outdoor_griddle_OVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s200x75_blackstone_outdoor_griddle_OVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s250x250_blackstone_outdoor_griddle_OVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s300x150_blackstone_outdoor_griddle_OVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s300x112_blackstone_outdoor_griddle_OVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s500x500_blackstone_outdoor_griddle_OVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s600x400_blackstone_outdoor_griddle_OVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s600x600_blackstone_outdoor_griddle_OVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s630x235_blackstone_outdoor_griddle_OVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s940x400_blackstone_outdoor_griddle_OVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s940x350_blackstone_outdoor_griddle_OVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/s940x110_blackstone_outdoor_griddle_OVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/blackstone_outdoor_griddle_OVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3dfd556736611fe21a28e2278772bd3d9cae2db5/blackstone_outdoor_griddle_OVI.jpg","file_size":28625,"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/51df132a40e683c62f000a3f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df132a40e683c62f000a3f"}}}],"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/51df12b841b4e3ae00000a3e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df12b841b4e3ae00000a3e"}}},{"id":"51d6ef9f6ce265303000088f","created_at":"2013-07-05T16:09:03Z","updated_at":"2013-07-17T13:21:21Z","name":"Nixon
73
+ Stylus Review","branch_name":"master","summary":"A pretty face only goes so
74
+ far.","meta_description":"A pretty face only goes so far.","website_ids":["50e669d7bd028648e0000011"],"author_ids":["50fc4eb0bd0286d5550b4ca0"],"tags":["home-hero1"],"classifications":["review"],"publish_on":"2013-07-11T20:10:15+00:00","attachment_ids":["51d6f8d7c665ba4e41000001","51ded6ef41b4e3c95c000168","51dec4a3136772760e000040"],"primary_product_id":"51d332243150c456360013d1","resource_uri":"/content/nixon-stylus-review","disqus_uri":"/content/nixon-stylus-review","product_ids":["51d332243150c456360013d1"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2013-07-04T20:01:17+00:00","slug":"nixon-stylus-review","is_template":false,"is_branch":false,"products":[{"id":"51d332243150c456360013d1","created_at":"2013-07-02T20:03:48Z","updated_at":"2013-07-11T20:20:05Z","name":"Nixon
75
+ Stylus","slug":"nixon-stylus","_type":"Electronics::Headphone","types":[],"msrp":130.0,"article_ids":["51d6ef9f6ce265303000088f"],"website_ids":["50e669d7bd028648e0000011"],"publish_on":"2013-07-04T20:01:17+00:00","upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003a7","brand_id":"51d3353a10f42e851a001521","model":"","resource_uri":"/products/nixon-stylus","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":3.71,"ranking":{"total":148,"rank":69,"percentile":54},"rubric":{"id":"50f9ed93bd0286638e0003a7","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-28T13:00:14Z","name":"2008
76
+ Headphone 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/50f9ed93bd0286638e0003a7","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a7"}}},"is_primary_product":true,"attachments":[{"id":"51df12d440e6839939000936","created_at":"2013-07-11T20:17:24Z","updated_at":"2013-07-11T20:17:46Z","name":"Nixon_Stylus_Vanity.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s50x50_Nixon_Stylus_Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s150x150_Nixon_Stylus_Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s200x75_Nixon_Stylus_Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s250x250_Nixon_Stylus_Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s300x150_Nixon_Stylus_Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s300x112_Nixon_Stylus_Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s500x500_Nixon_Stylus_Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s600x400_Nixon_Stylus_Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s600x600_Nixon_Stylus_Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s630x235_Nixon_Stylus_Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s940x400_Nixon_Stylus_Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s940x350_Nixon_Stylus_Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/s940x110_Nixon_Stylus_Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/Nixon_Stylus_Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/32ea078ff417034fb43b04536dcaabae3fcd98ad/Nixon_Stylus_Vanity.jpg","file_size":69143,"content_type":"image/jpeg"},"position":17,"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/51df12d440e6839939000936","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df12d440e6839939000936"}}}],"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/51f6ddb340a0ce88bb000058","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb000058"}}}],"attachments":[{"id":"51d6f8d7c665ba4e41000001","created_at":"2013-07-05T16:48:23Z","updated_at":"2013-07-12T15:22:02Z","name":"Nixon_Stylus_Hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s50x50_Nixon_Stylus_Hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s150x150_Nixon_Stylus_Hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s200x75_Nixon_Stylus_Hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s250x250_Nixon_Stylus_Hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s300x150_Nixon_Stylus_Hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s300x112_Nixon_Stylus_Hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s500x500_Nixon_Stylus_Hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s600x400_Nixon_Stylus_Hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s600x600_Nixon_Stylus_Hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s630x235_Nixon_Stylus_Hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s940x400_Nixon_Stylus_Hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s940x350_Nixon_Stylus_Hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/s940x110_Nixon_Stylus_Hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/Nixon_Stylus_Hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4aced8db0fa1a53b407b02c938aae2346a44dc0a/Nixon_Stylus_Hero.jpg","file_size":298535,"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/51d6f8d7c665ba4e41000001","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51d6f8d7c665ba4e41000001"}}}],"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/51d6ef9f6ce265303000088f","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51d6ef9f6ce265303000088f"}}},{"id":"51bb3af804a9507b5f00041b","created_at":"2013-06-14T15:47:04Z","updated_at":"2013-07-16T15:58:24Z","name":"Brain
77
+ Food and Age Defiers: The Dubious World of Food Marketing","branch_name":"master","summary":"You
78
+ can\u2019t avoid the constant barrage of advertisements, but you can learn
79
+ how to sift through the nonsense.","meta_description":"You can\u2019t avoid
80
+ the constant barrage of advertisements, but you can learn how to sift through
81
+ the nonsense.","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["home-hero3"],"classifications":["feature"],"publish_on":"2013-07-11T18:30:55+00:00","attachment_ids":["51bb4018e407e050f100057d","51dee6aba40f854c40000001","51dee6aca40f854c40000002","51dee6aca40f854c40000003","51bb41031eb883a258000188","51bb421978beec0c8c00067d"],"primary_product_id":null,"resource_uri":"/features/brain-food-and-age-defiers-the-dubious-world-of-food-marketing","disqus_uri":"/features/brain-food-and-age-defiers-the-dubious-world-of-food-marketing","product_ids":[],"related_article_ids":["5179558819f7523299001e6f","518d4494569d665cc300021b","516231f4ba7fe1720d000700"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"brain-food-and-age-defiers-the-dubious-world-of-food-marketing","is_template":false,"is_branch":false,"attachments":[{"id":"51dee6aba40f854c40000001","created_at":"2013-07-11T17:08:59Z","updated_at":"2013-07-11T17:14:09Z","name":"Crazy_Food_Hero_940x110_01.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s50x50_Crazy_Food_Hero_940x110_01.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s150x150_Crazy_Food_Hero_940x110_01.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s200x75_Crazy_Food_Hero_940x110_01.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s250x250_Crazy_Food_Hero_940x110_01.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s300x150_Crazy_Food_Hero_940x110_01.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s300x112_Crazy_Food_Hero_940x110_01.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s500x500_Crazy_Food_Hero_940x110_01.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s600x400_Crazy_Food_Hero_940x110_01.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s600x600_Crazy_Food_Hero_940x110_01.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s630x235_Crazy_Food_Hero_940x110_01.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s940x400_Crazy_Food_Hero_940x110_01.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s940x350_Crazy_Food_Hero_940x110_01.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/s940x110_Crazy_Food_Hero_940x110_01.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/Crazy_Food_Hero_940x110_01.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b6c92d2e641d79c444e2d7a89eba223de0826bc3/Crazy_Food_Hero_940x110_01.jpg","file_size":32647,"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/51dee6aba40f854c40000001","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dee6aba40f854c40000001"}}}],"bulk_uploads":[{"id":"51dee6a96b81beaa3f000455","created_at":"2013-07-11T17:08:57Z","updated_at":"2013-07-11T17:09:00Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/gUvHB0_g0BLYSpeDgoaZBA/reridiculousfoodclaims.zip","tags":"","status":"complete","article_id":"51bb3af804a9507b5f00041b","product_id":null,"attachment_ids":["51dee6aba40f854c40000001","51dee6aca40f854c40000002","51dee6aca40f854c40000003"],"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/51dee6a96b81beaa3f000455","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51dee6a96b81beaa3f000455"}}}],"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/51bb3af804a9507b5f00041b","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51bb3af804a9507b5f00041b"}}},{"id":"51dda0e24e6b69acc4000015","created_at":"2013-07-10T17:58:58Z","updated_at":"2013-07-16T15:55:46Z","name":"Samsung
82
+ WA50F9A8DSP Washing Machine Review","branch_name":"master","summary":"The
83
+ Samsung WA50F9A8DSP is ready to rumble.","meta_description":"The Samsung WA50F9A8DSP
84
+ is ready to rumble.","website_ids":["50e669d7bd028648e000001b"],"author_ids":["50fc4eafbd0286d5550b4c97"],"tags":["home-hero2"],"classifications":["review"],"publish_on":"2013-07-11T17:57:14+00:00","attachment_ids":["51deccadc80e1fd10d0013ac","51deccf34f32ff5022002519","51decd41793245124300005e"],"primary_product_id":"51dd8aaa17e0bcb8e8000159","resource_uri":"/content/samsung-wa50f9a8dsp-washing-machine-review","disqus_uri":"/content/samsung-wa50f9a8dsp-washing-machine-review","product_ids":["51dd8aaa17e0bcb8e8000159"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samsung-wa50f9a8dsp-washing-machine-review","is_template":false,"is_branch":false,"products":[{"id":"51dd8aaa17e0bcb8e8000159","created_at":"2013-07-10T16:24:13Z","updated_at":"2013-07-12T14:38:16Z","name":"Samsung
85
+ WA50F9A8DSP","slug":"wa50f9a8dsp/a2","_type":"Appliances::MajorAppliances::WashingMachine","types":["Top-Loading"],"msrp":1199.99,"article_ids":["51dda0e24e6b69acc4000015"],"website_ids":["50e669d7bd028648e000001b"],"publish_on":null,"upc":null,"price_grabber_id":"1178686116","rubric_id":"50f9ed93bd0286638e0003af","brand_id":"50f9ed6fbd0286638e0000b8","model":"","resource_uri":"/products/wa50f9a8dsp/a2","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.8,"ranking":{"total":61,"rank":39,"percentile":37},"rubric":{"id":"50f9ed93bd0286638e0003af","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-26T20:00:22Z","name":"Washing
86
+ Machines","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003af","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003af"}}},"is_primary_product":true,"attachments":[{"id":"51deac3a0a21491bfb00002b","created_at":"2013-07-11T12:59:38Z","updated_at":"2013-07-11T20:44:57Z","name":"Samsung_WA50F9A8DSP_Front.jpg","type":"file","tags":["vanity","gallery"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s50x50_Samsung_WA50F9A8DSP_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s150x150_Samsung_WA50F9A8DSP_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s200x75_Samsung_WA50F9A8DSP_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s250x250_Samsung_WA50F9A8DSP_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s300x150_Samsung_WA50F9A8DSP_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s300x112_Samsung_WA50F9A8DSP_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s500x500_Samsung_WA50F9A8DSP_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s600x400_Samsung_WA50F9A8DSP_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s600x600_Samsung_WA50F9A8DSP_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s630x235_Samsung_WA50F9A8DSP_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s940x400_Samsung_WA50F9A8DSP_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s940x350_Samsung_WA50F9A8DSP_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/s940x110_Samsung_WA50F9A8DSP_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/Samsung_WA50F9A8DSP_Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/31c2b41c78669742d57bb41de2cea2c87057f870/Samsung_WA50F9A8DSP_Front.jpg","file_size":217485,"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/51deac3a0a21491bfb00002b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51deac3a0a21491bfb00002b"}}}],"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/51f6ddb340a0ce88bb000059","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb000059"}}}],"attachments":[{"id":"51deccadc80e1fd10d0013ac","created_at":"2013-07-11T15:18:05Z","updated_at":"2013-07-12T15:23:35Z","name":"Samsung_WA50F9A8DSP_Hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s50x50_Samsung_WA50F9A8DSP_Hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s150x150_Samsung_WA50F9A8DSP_Hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s200x75_Samsung_WA50F9A8DSP_Hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s250x250_Samsung_WA50F9A8DSP_Hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s300x150_Samsung_WA50F9A8DSP_Hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s300x112_Samsung_WA50F9A8DSP_Hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s500x500_Samsung_WA50F9A8DSP_Hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s600x400_Samsung_WA50F9A8DSP_Hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s600x600_Samsung_WA50F9A8DSP_Hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s630x235_Samsung_WA50F9A8DSP_Hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s940x400_Samsung_WA50F9A8DSP_Hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s940x350_Samsung_WA50F9A8DSP_Hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/s940x110_Samsung_WA50F9A8DSP_Hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/Samsung_WA50F9A8DSP_Hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/90efcae1ff76c0cbcc0049003fa441afca5fd4a8/Samsung_WA50F9A8DSP_Hero.jpg","file_size":267041,"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/51deccadc80e1fd10d0013ac","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51deccadc80e1fd10d0013ac"}}}],"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/51dda0e24e6b69acc4000015","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dda0e24e6b69acc4000015"}}},{"id":"51ddb033d31c825d8f00069c","created_at":"2013-07-10T19:04:19Z","updated_at":"2013-07-12T19:18:24Z","name":"Don\u2019t
87
+ Be A Zombie: No Such Thing As a Zombie App","branch_name":"master","summary":"A
88
+ recent study suggests that two-thirds of all apps are \u201cinvisible\u201d
89
+ to consumers. How is that possible?","meta_description":"A recent study suggests
90
+ that two-thirds of all apps are \u201cinvisible\u201d to consumers. How is
91
+ that possible?","website_ids":["50e669d7bd028648e0000017"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-11T16:18:49+00:00","attachment_ids":["51ddb2708c7af4c7fa00085f","51ddb3567c21ab8dd30000fb","51ddb33817e0bc433c0001f5"],"primary_product_id":null,"resource_uri":"/features/don-t-be-a-zombie-no-such-thing-as-a-zombie-app","disqus_uri":"/features/don-t-be-a-zombie-no-such-thing-as-a-zombie-app","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"don-t-be-a-zombie-no-such-thing-as-a-zombie-app","is_template":false,"is_branch":false,"attachments":[{"id":"51ddb3567c21ab8dd30000fb","created_at":"2013-07-10T19:17:42Z","updated_at":"2013-07-10T19:18:00Z","name":"app-store-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s50x50_app-store-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s150x150_app-store-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s200x75_app-store-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s250x250_app-store-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s300x150_app-store-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s300x112_app-store-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s500x500_app-store-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s600x400_app-store-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s600x600_app-store-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s630x235_app-store-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s940x400_app-store-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s940x350_app-store-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/s940x110_app-store-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/app-store-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/af8efff1184246bb0d764de03ac5d676e4b826ab/app-store-small-hero.jpg","file_size":47410,"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/51ddb3567c21ab8dd30000fb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51ddb3567c21ab8dd30000fb"}}}],"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/51ddb033d31c825d8f00069c","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51ddb033d31c825d8f00069c"}}},{"id":"51dec3a924164fd90b000009","created_at":"2013-07-11T14:39:37Z","updated_at":"2013-07-22T14:39:26Z","name":"Nokia''s
92
+ Answer to Photos, the Dark, and Everything is 41 Megapixels","branch_name":"master","summary":"The
93
+ Nokia 1020''s 41-megapixel BSI image sensor sets a new bar for mobile photography.","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["50fc4eacbd0286d5550b4c89"],"tags":["super-hero3"],"classifications":["science"],"publish_on":"2013-07-11T14:39:38+00:00","attachment_ids":["51dee5c339472811a90003d1","51df00a1120b1155cb00078c","51dee5fb120b117cb30002c2","51dee621346e690816000452","51dee65839472811a90003e4","51dee6a892c23d28a800004d"],"primary_product_id":null,"resource_uri":"/science/nokia-lumia-1020-launch","disqus_uri":"/science/nokia-lumia-1020-launch","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"nokia-lumia-1020-launch","is_template":false,"is_branch":false,"attachments":[{"id":"51dee5c339472811a90003d1","created_at":"2013-07-11T17:05:07Z","updated_at":"2013-07-11T17:05:46Z","name":"resized-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s50x50_resized-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s150x150_resized-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s200x75_resized-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s250x250_resized-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s300x150_resized-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s300x112_resized-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s500x500_resized-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s600x400_resized-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s600x600_resized-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s630x235_resized-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s940x400_resized-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s940x350_resized-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/s940x110_resized-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/resized-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/48d71d57458753ec5352f84be9aa06ccb284517f/resized-hero.jpg","file_size":65813,"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/51dee5c339472811a90003d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dee5c339472811a90003d1"}}}],"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/51dec3a924164fd90b000009","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dec3a924164fd90b000009"}}},{"id":"51dd89078c7af443be000125","created_at":"2013-07-10T16:17:12Z","updated_at":"2013-07-12T13:16:08Z","name":"Superman-Inspired
94
+ Memory Crystals May Outlast the Human Race","branch_name":"master","summary":"Scientists
95
+ have demonstrated \u201cimmortal\u201d data storage using nanostructured glass.","meta_description":"Scientists
96
+ have demonstrated \u201cimmortal\u201d data storage using nanostructured glass.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["news"],"publish_on":"2013-07-10T21:00:19+00:00","attachment_ids":["51dd8cb609259a7e5e000232","51dd8ccfd31c826ff20001a7","51dd8d03794c1344b00000d6"],"primary_product_id":null,"resource_uri":"/news/superman-inspired-memory-crystals-may-outlast-the-human-race","disqus_uri":"/news/superman-inspired-memory-crystals-may-outlast-the-human-race","product_ids":[],"related_article_ids":["51c3241b3762ce8ae80013c9","519a49e1c9318613c8000469","51c0b71d0a8da868f900096a"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"superman-inspired-memory-crystals-may-outlast-the-human-race","is_template":false,"is_branch":false,"attachments":[{"id":"51dd8ccfd31c826ff20001a7","created_at":"2013-07-10T16:33:19Z","updated_at":"2013-07-10T16:33:45Z","name":"5dopticalmem-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s50x50_5dopticalmem-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s150x150_5dopticalmem-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s200x75_5dopticalmem-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s250x250_5dopticalmem-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s300x150_5dopticalmem-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s300x112_5dopticalmem-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s500x500_5dopticalmem-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s600x400_5dopticalmem-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s600x600_5dopticalmem-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s630x235_5dopticalmem-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s940x400_5dopticalmem-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s940x350_5dopticalmem-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/s940x110_5dopticalmem-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/5dopticalmem-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/de623dde26e7024f6061144edf4091bef4d68844/5dopticalmem-small-hero.jpg","file_size":165239,"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/51dd8ccfd31c826ff20001a7","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dd8ccfd31c826ff20001a7"}}}],"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/51dd89078c7af443be000125","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd89078c7af443be000125"}}},{"id":"51dd7d3dc62623b3cf000e34","created_at":"2013-07-10T15:26:54Z","updated_at":"2013-07-15T14:19:30Z","name":"Deals
97
+ Roundup: Beginner DSLR Guide","branch_name":"master","summary":"You''ve read
98
+ our reviews, maybe checked out the products, and now you want to get started
99
+ on your DSLR kit. Here are a few deals that can help you\u2014each less than
100
+ $1,000.","meta_description":null,"website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["DSLR","beginner","course","tripod","lens","Canon","Nikon","Sony","home-hero4"],"classifications":["feature"],"publish_on":"2013-07-10T20:25:31+00:00","attachment_ids":["51ddacba17e0bc7d4d0008ea","51e013c741b4e34f10001403","51ddaded794c1311c900007e","51ddaef94f32ff51f90007c1","51ddacbf7c21ab8dd3000032","51ddacc9c80e1f15a7000746","51ddaccfd31c826ff20007d6","51ddd8e409259aaae3000dd6"],"primary_product_id":null,"resource_uri":"/features/deals-roundup-beginner-dslr-guide","disqus_uri":"/features/deals-roundup-beginner-dslr-guide","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-roundup-beginner-dslr-guide","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/51dd7d3dc62623b3cf000e34","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd7d3dc62623b3cf000e34"}}},{"id":"51dad6c61fcb31dc6c000a78","created_at":"2013-07-08T15:12:06Z","updated_at":"2013-07-12T19:22:16Z","name":"Insignia
101
+ NS-46D400NA14 Review","branch_name":"master","summary":"A sizable screen for
102
+ a small sum","meta_description":"A sizable screen for a small sum","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eb0bd0286d5550b4ca0"],"tags":["budget","LED","LCD","TV","Insignia","Best
103
+ Buy","home-hero2"],"classifications":["review"],"publish_on":"2013-07-10T19:24:56+00:00","attachment_ids":["51dda2f6d31c826ff20006c8","51ddb6a844cc437107000012"],"primary_product_id":"51dad5d4612e9393bc000b49","resource_uri":"/content/insignia-ns-46d400na14-review","disqus_uri":"/content/insignia-ns-46d400na14-review","product_ids":["51dad5d4612e9393bc000b49"],"related_article_ids":["51c499fc2a35dc0b2b0004e7","51d43d748f8ba6597b0014fe"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"insignia-ns-46d400na14-review","is_template":false,"is_branch":false,"products":[{"id":"51dad5d4612e9393bc000b49","created_at":"2013-07-08T15:08:04Z","updated_at":"2013-07-15T17:12:06Z","name":"Insignia
104
+ NS-46D400NA14","slug":"insignia-ns-46d400na14","_type":"Electronics::Television","types":[],"msrp":449.99,"article_ids":["51dad6c61fcb31dc6c000a78"],"website_ids":["50e669d7bd028648e000000f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed75bd0286638e000192","model":"","resource_uri":"/products/insignia-ns-46d400na14","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.26,"ranking":{"total":106,"rank":88,"percentile":17},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-27T14:00:54Z","name":"TV
105
+ 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":"51dda1847c21ab95c1000554","created_at":"2013-07-10T18:01:40Z","updated_at":"2013-07-10T18:03:27Z","name":"Insignia_D400N_vanity.jpg","type":"file","tags":["vanity","design"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s50x50_Insignia_D400N_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s150x150_Insignia_D400N_vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s200x75_Insignia_D400N_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s250x250_Insignia_D400N_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s300x150_Insignia_D400N_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s300x112_Insignia_D400N_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s500x500_Insignia_D400N_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s600x400_Insignia_D400N_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s600x600_Insignia_D400N_vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s630x235_Insignia_D400N_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s940x400_Insignia_D400N_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s940x350_Insignia_D400N_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/s940x110_Insignia_D400N_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/Insignia_D400N_vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b5f808a2702e8a51a839e545018ae4ab088796ef/Insignia_D400N_vanity.jpg","file_size":29243,"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/51dda1847c21ab95c1000554","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dda1847c21ab95c1000554"}}}],"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/51f6ddb340a0ce88bb00005a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb00005a"}}}],"attachments":[{"id":"51dda2f6d31c826ff20006c8","created_at":"2013-07-10T18:07:50Z","updated_at":"2013-07-10T19:32:04Z","name":"Insignia_D400N_hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s50x50_Insignia_D400N_hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s150x150_Insignia_D400N_hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s200x75_Insignia_D400N_hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s250x250_Insignia_D400N_hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s300x150_Insignia_D400N_hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s300x112_Insignia_D400N_hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s500x500_Insignia_D400N_hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s600x400_Insignia_D400N_hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s600x600_Insignia_D400N_hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s630x235_Insignia_D400N_hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s940x400_Insignia_D400N_hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s940x350_Insignia_D400N_hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/s940x110_Insignia_D400N_hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/Insignia_D400N_hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bae526643c057a8dd0567df1bc3f530fe47c1833/Insignia_D400N_hero.jpg","file_size":464773,"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/51dda2f6d31c826ff20006c8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dda2f6d31c826ff20006c8"}}}],"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/51dad6c61fcb31dc6c000a78","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dad6c61fcb31dc6c000a78"}}},{"id":"51d48383e9c615cc5600191c","created_at":"2013-07-03T20:03:15Z","updated_at":"2013-07-16T15:49:50Z","name":"Bosch
106
+ Integra Ascenta SHX3AR76UC Review","branch_name":"master","summary":"Thin
107
+ on features, but strong on cleaning","meta_description":"Though it offered
108
+ few features and little flexibility, this mid-range dishwasher proved a solid
109
+ and efficient performer.","website_ids":["50e669d7bd028648e0000021"],"author_ids":["514769277185c8ee7c00119c"],"tags":["dishwasher","review","appliance","bosch","home-hero3"],"classifications":["review"],"publish_on":"2013-07-10T15:50:28+00:00","attachment_ids":["51d48c6670aa262067000002"],"primary_product_id":"51b8f0587fcf14a03a000281","resource_uri":"/content/bosch-integra-ascenta-shx3ar76uc-review","disqus_uri":"/content/bosch-integra-ascenta-shx3ar76uc-review","product_ids":["51b8f0587fcf14a03a000281"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"bosch-integra-ascenta-shx3ar76uc-review","is_template":false,"is_branch":false,"products":[{"id":"51b8f0587fcf14a03a000281","created_at":"2013-06-12T22:04:08Z","updated_at":"2013-07-03T15:44:33Z","name":"Bosch
110
+ Integra Ascenta SHX3AR76UC","slug":"shx3ar76uc","_type":"Appliances::MajorAppliances::Dishwasher","types":[],"msrp":699.0,"article_ids":["51d48383e9c615cc5600191c"],"website_ids":["50e669d7bd028648e0000021"],"publish_on":null,"upc":null,"price_grabber_id":"885056949","rubric_id":"50f9ed93bd0286638e0003b3","brand_id":"50f9ed77bd0286638e0001d0","model":"","resource_uri":"/products/shx3ar76uc","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.25,"ranking":{"total":54,"rank":23,"percentile":58},"rubric":{"id":"50f9ed93bd0286638e0003b3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-25T20:42:14Z","name":"2011
111
+ Dishwasher 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/50f9ed93bd0286638e0003b3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b3"}}},"is_primary_product":true,"attachments":[{"id":"51e69ffc8b3b10a8d0000c05","created_at":"2013-07-17T13:45:32Z","updated_at":"2013-07-17T13:45:59Z","name":"Bosch-SHX3AR76UC-Front.jpg","type":"file","tags":["Design
112
+ Gallery","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s50x50_Bosch-SHX3AR76UC-Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s150x150_Bosch-SHX3AR76UC-Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s200x75_Bosch-SHX3AR76UC-Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s250x250_Bosch-SHX3AR76UC-Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s300x150_Bosch-SHX3AR76UC-Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s300x112_Bosch-SHX3AR76UC-Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s500x500_Bosch-SHX3AR76UC-Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s600x400_Bosch-SHX3AR76UC-Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s600x600_Bosch-SHX3AR76UC-Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s630x235_Bosch-SHX3AR76UC-Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s940x400_Bosch-SHX3AR76UC-Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s940x350_Bosch-SHX3AR76UC-Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/s940x110_Bosch-SHX3AR76UC-Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/Bosch-SHX3AR76UC-Front.jpg"},"caption":"Front
113
+ view of the Bosch SHX3AR76UC.","alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b6970fd42a799a4a4b818c9a2d6b0355822c4c4c/Bosch-SHX3AR76UC-Front.jpg","file_size":100312,"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/51e69ffc8b3b10a8d0000c05","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e69ffc8b3b10a8d0000c05"}}}],"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/51f6ddb340a0ce88bb00005b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb00005b"}}}],"attachments":[{"id":"51d48c6670aa262067000002","created_at":"2013-07-03T20:41:10Z","updated_at":"2013-07-11T19:06:47Z","name":"Bosch-SHX3AR76UC-Hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s50x50_Bosch-SHX3AR76UC-Hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s150x150_Bosch-SHX3AR76UC-Hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s200x75_Bosch-SHX3AR76UC-Hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s250x250_Bosch-SHX3AR76UC-Hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s300x150_Bosch-SHX3AR76UC-Hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s300x112_Bosch-SHX3AR76UC-Hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s500x500_Bosch-SHX3AR76UC-Hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s600x400_Bosch-SHX3AR76UC-Hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s600x600_Bosch-SHX3AR76UC-Hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s630x235_Bosch-SHX3AR76UC-Hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s940x400_Bosch-SHX3AR76UC-Hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s940x350_Bosch-SHX3AR76UC-Hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/s940x110_Bosch-SHX3AR76UC-Hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/Bosch-SHX3AR76UC-Hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f21fdc93d3f6ec27ddc8932717b7c4c03e07f90a/Bosch-SHX3AR76UC-Hero.jpg","file_size":243394,"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/51d48c6670aa262067000002","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51d48c6670aa262067000002"}}}],"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/51d48383e9c615cc5600191c","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51d48383e9c615cc5600191c"}}},{"id":"51dc7fb0fd41fc3d780000d9","created_at":"2013-07-09T21:25:04Z","updated_at":"2013-07-17T14:07:12Z","name":"Sample
114
+ Gallery: Panasonic Lumix LF1","branch_name":"master","summary":"Panasonic
115
+ stands by its small sensor, for better and worse.","meta_description":null,"website_ids":["50e669d7bd028648e000000d"],"author_ids":["50fc4eb0bd0286d5550b4c9e"],"tags":["home-hero3"],"classifications":["news"],"publish_on":"2013-07-10T15:03:00+00:00","attachment_ids":["51dd710f90ced0a8cb000ab3","51dd711a34453bba0c000d4d","51dd713c90ced0a393000bfc"],"primary_product_id":"51dc6e87e210aa7d9c0000ea","resource_uri":"/news/sample-gallery-panasonic-lumix-lf1","disqus_uri":"/news/sample-gallery-panasonic-lumix-lf1","product_ids":["51dc6e87e210aa7d9c0000ea"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"sample-gallery-panasonic-lumix-lf1","is_template":false,"is_branch":false,"products":[{"id":"51dc6e87e210aa7d9c0000ea","created_at":"2013-07-09T20:11:51Z","updated_at":"2013-07-15T16:56:15Z","name":"Panasonic
116
+ Lumix LF1","slug":"panasonic-lumix-lf1","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":499.99,"article_ids":["51dc7fb0fd41fc3d780000d9"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":null,"price_grabber_id":"1201397973","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b5","model":"","resource_uri":"/products/panasonic-lumix-lf1","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":"51e429a72fad7dea09000389","created_at":"2013-07-15T16:56:07Z","updated_at":"2013-07-15T16:57:19Z","name":"Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s50x50_Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s150x150_Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s200x75_Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s250x250_Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s300x150_Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s300x112_Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s500x500_Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s600x400_Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s600x600_Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s630x235_Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s940x400_Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s940x350_Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/s940x110_Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d545cfdbe44a240bb1dc3aa95e40480065a2d74f/Vanity.jpg","file_size":672228,"content_type":"image/jpeg"},"position":25,"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/51e429a72fad7dea09000389","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e429a72fad7dea09000389"}}}],"bulk_uploads":[{"id":"51dc6f1e103cb2a7970000ad","created_at":"2013-07-09T20:14:22Z","updated_at":"2013-07-09T20:14:38Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/j5CL-tqCz6btE3O0mEKMtQ/Panasonic_LF1_Samples.zip","tags":"sample-photo","status":"complete","article_id":null,"product_id":"51dc6e87e210aa7d9c0000ea","attachment_ids":["51dc6f2497ff54c77c000001","51dc6f2597ff54c77c000002","51dc6f2597ff54c77c000003","51dc6f2597ff54c77c000004","51dc6f2697ff54c77c000005","51dc6f2697ff54c77c000006","51dc6f2697ff54c77c000007","51dc6f2797ff54c77c000008","51dc6f2797ff54c77c000009","51dc6f2897ff54c77c00000a","51dc6f2897ff54c77c00000b","51dc6f2997ff54c77c00000c","51dc6f2997ff54c77c00000d","51dc6f2997ff54c77c00000e","51dc6f2a97ff54c77c00000f","51dc6f2a97ff54c77c000010","51dc6f2b97ff54c77c000011","51dc6f2b97ff54c77c000012","51dc6f2b97ff54c77c000013","51dc6f2c97ff54c77c000014","51dc6f2c97ff54c77c000015","51dc6f2d97ff54c77c000016","51dc6f2d97ff54c77c000017","51dc6f2d97ff54c77c000018","51dc6f2e97ff54c77c000019"],"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/51dc6f1e103cb2a7970000ad","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51dc6f1e103cb2a7970000ad"}}}],"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/51f6ddb340a0ce88bb00005c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb00005c"}}}],"attachments":[{"id":"51dd710f90ced0a8cb000ab3","created_at":"2013-07-10T14:34:55Z","updated_at":"2013-07-10T14:35:07Z","name":"SmallHero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s50x50_SmallHero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s150x150_SmallHero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s200x75_SmallHero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s250x250_SmallHero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s300x150_SmallHero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s300x112_SmallHero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s500x500_SmallHero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s600x400_SmallHero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s600x600_SmallHero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s630x235_SmallHero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s940x400_SmallHero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s940x350_SmallHero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/s940x110_SmallHero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/SmallHero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/856791b1c07df8ad75bc37feda5d52a0ab082f9e/SmallHero.jpg","file_size":126376,"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/51dd710f90ced0a8cb000ab3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dd710f90ced0a8cb000ab3"}}}],"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/51dc7fb0fd41fc3d780000d9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc7fb0fd41fc3d780000d9"}}},{"id":"51dc40e088459b9d4c000f9f","created_at":"2013-07-09T16:57:04Z","updated_at":"2013-07-11T13:21:17Z","name":"KitchenAid
117
+ KECC605BSS Electric Cooktop Review","branch_name":"master","summary":"The
118
+ KitchenAid KECC605BSS brings high tech-flair and high-end performance into
119
+ your kitchen","meta_description":"The KitchenAid KECC605BSS (MSRP $1,049.00-$1,149.00)
120
+ is a ceramic electric cooktop that comes in three flavors: black, white and
121
+ stainless steel. Regardless of your color preference, rest assured that the
122
+ KECC605BSS is stunning in more ways than one, from its striking appearance
123
+ to some truly staggering performance.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove","home-hero2"],"classifications":["review"],"publish_on":"2013-07-09T21:04:39+00:00","attachment_ids":["51dc40f6a557a1edce0000c2","51dc4117d61d0e1ede00020f","51dc412947a85d36c5000e19"],"primary_product_id":"51dc3d32e3c2c37edf0001e0","resource_uri":"/content/kitchenaid-kecc605bss-electric-cooktop-review","disqus_uri":"/content/kitchenaid-kecc605bss-electric-cooktop-review","product_ids":["51dc3d32e3c2c37edf0001e0"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"kitchenaid-kecc605bss-electric-cooktop-review","is_template":false,"is_branch":false,"products":[{"id":"51dc3d32e3c2c37edf0001e0","created_at":"2013-07-09T16:41:24Z","updated_at":"2013-07-10T11:08:35Z","name":"KitchenAid
124
+ KECC605BSS","slug":"kitchenaid-kecc605bss","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":1149.0,"article_ids":["51dc40e088459b9d4c000f9f"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c7","model":"","resource_uri":"/products/kitchenaid-kecc605bss","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":"51dc3e8618d231a5b5000088","created_at":"2013-07-09T16:47:02Z","updated_at":"2013-07-09T16:47:44Z","name":"Vanity.jpg","type":"file","tags":["Vanity","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s50x50_Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s150x150_Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s200x75_Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s250x250_Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s300x150_Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s300x112_Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s500x500_Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s600x400_Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s600x600_Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s630x235_Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s940x400_Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s940x350_Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/s940x110_Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4c0a8065af81939d685d3ce9e16ed12dcadf8cea/Vanity.jpg","file_size":81173,"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/51dc3e8618d231a5b5000088","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc3e8618d231a5b5000088"}}}],"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/51f6ddb340a0ce88bb00005d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6ddb340a0ce88bb00005d"}}}],"attachments":[{"id":"51dc4117d61d0e1ede00020f","created_at":"2013-07-09T16:57:59Z","updated_at":"2013-07-09T16:58:32Z","name":"KitchenAid_940x400_01.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s50x50_KitchenAid_940x400_01.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s150x150_KitchenAid_940x400_01.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s200x75_KitchenAid_940x400_01.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s250x250_KitchenAid_940x400_01.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s300x150_KitchenAid_940x400_01.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s300x112_KitchenAid_940x400_01.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s500x500_KitchenAid_940x400_01.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s600x400_KitchenAid_940x400_01.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s600x600_KitchenAid_940x400_01.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s630x235_KitchenAid_940x400_01.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s940x400_KitchenAid_940x400_01.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s940x350_KitchenAid_940x400_01.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/s940x110_KitchenAid_940x400_01.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/KitchenAid_940x400_01.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a527dd6c170e079b03d5b74e962e038b6e3b445a/KitchenAid_940x400_01.jpg","file_size":71608,"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/51dc4117d61d0e1ede00020f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc4117d61d0e1ede00020f"}}}],"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/51dc40e088459b9d4c000f9f","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc40e088459b9d4c000f9f"}}},{"id":"51dc749688459b2e1a001546","created_at":"2013-07-09T20:37:42Z","updated_at":"2013-07-12T14:40:18Z","name":"Panasonic
125
+ TC-L50E60 on Sale at Amazon","branch_name":"master","summary":"Customers get
126
+ a $100 Amazon credit to use towards a future purchase. Free money!","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","TC-L50E60","E60","50
127
+ Inch","1080p","120Hz","Smart","LED","HD","TV","Amazon"],"classifications":["deal"],"publish_on":"2013-07-09T20:39:06+00:00","attachment_ids":["51dc74a7dcf9ddeeb1001d61"],"primary_product_id":null,"resource_uri":"/deals/panasonic-tc-l50e60-on-sale-at-amazon","disqus_uri":"/deals/panasonic-tc-l50e60-on-sale-at-amazon","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"panasonic-tc-l50e60-on-sale-at-amazon","is_template":false,"is_branch":false,"attachments":[{"id":"51dc74a7dcf9ddeeb1001d61","created_at":"2013-07-09T20:37:59Z","updated_at":"2013-07-09T20:38:22Z","name":"Panasonic_TC_L50_E60_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s50x50_Panasonic_TC_L50_E60_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s150x150_Panasonic_TC_L50_E60_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s200x75_Panasonic_TC_L50_E60_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s250x250_Panasonic_TC_L50_E60_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s300x150_Panasonic_TC_L50_E60_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s300x112_Panasonic_TC_L50_E60_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s500x500_Panasonic_TC_L50_E60_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s600x400_Panasonic_TC_L50_E60_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s600x600_Panasonic_TC_L50_E60_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s630x235_Panasonic_TC_L50_E60_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s940x400_Panasonic_TC_L50_E60_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s940x350_Panasonic_TC_L50_E60_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/s940x110_Panasonic_TC_L50_E60_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/Panasonic_TC_L50_E60_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/84e1ca8a7a6d824623ee42435596f9a949ecb6e5/Panasonic_TC_L50_E60_TVI.jpg","file_size":75018,"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/51dc74a7dcf9ddeeb1001d61","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc74a7dcf9ddeeb1001d61"}}}],"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/51dc749688459b2e1a001546","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc749688459b2e1a001546"}}},{"id":"51dc73992ba33cfde700002f","created_at":"2013-07-09T20:33:29Z","updated_at":"2013-07-10T18:58:48Z","name":"Klipsch
128
+ Image A5i Sport In-Ear Headphones on Sale at Amazon","branch_name":"master","summary":"Don''t
129
+ need to worry about your earbuds falling out while jogging anymore.","meta_description":null,"website_ids":["50e669d7bd028648e0000011"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Klipsch","Image","A5i","Sport","In-Ear","Headphones","earbuds","Amazon","home-hero4"],"classifications":["deal"],"publish_on":"2013-07-09T20:35:28+00:00","attachment_ids":["51dc73db7b08939965000049","51ddaebc4f32fff2b40008e1"],"primary_product_id":null,"resource_uri":"/deals/klipsch-image-a5i-sport-in-ear-headphones-on-sale-at-amazon","disqus_uri":"/deals/klipsch-image-a5i-sport-in-ear-headphones-on-sale-at-amazon","product_ids":[],"related_article_ids":["51c2055a5a9e58c50c00042d","51929f4378f0518569000545"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"klipsch-image-a5i-sport-in-ear-headphones-on-sale-at-amazon","is_template":false,"is_branch":false,"attachments":[{"id":"51dc73db7b08939965000049","created_at":"2013-07-09T20:34:35Z","updated_at":"2013-07-09T20:34:46Z","name":"Klipsch_A5i_sport_HPI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s50x50_Klipsch_A5i_sport_HPI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s150x150_Klipsch_A5i_sport_HPI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s200x75_Klipsch_A5i_sport_HPI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s250x250_Klipsch_A5i_sport_HPI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s300x150_Klipsch_A5i_sport_HPI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s300x112_Klipsch_A5i_sport_HPI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s500x500_Klipsch_A5i_sport_HPI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s600x400_Klipsch_A5i_sport_HPI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s600x600_Klipsch_A5i_sport_HPI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s630x235_Klipsch_A5i_sport_HPI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s940x400_Klipsch_A5i_sport_HPI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s940x350_Klipsch_A5i_sport_HPI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/s940x110_Klipsch_A5i_sport_HPI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/Klipsch_A5i_sport_HPI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/70266079d7bad22dbee6f7fda866c3e464ed46ee/Klipsch_A5i_sport_HPI.jpg","file_size":27117,"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/51dc73db7b08939965000049","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc73db7b08939965000049"}}}],"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/51dc73992ba33cfde700002f","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc73992ba33cfde700002f"}}},{"id":"51dc702c8856e02de1000142","created_at":"2013-07-09T20:18:55Z","updated_at":"2013-07-10T16:42:22Z","name":"EdgeStar
130
+ Countertop Dishwasher on Sale at CompactAppliance","branch_name":"master","summary":"Just
131
+ because you''re in a small apartment doesn''t mean you can''t have a dishwasher.","meta_description":null,"website_ids":["50e669d7bd028648e0000021"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["DWP61ES","EdgeStar","Energy
132
+ Star","Countertop","Dishwasher","CompactAppliance","LivingDirect","compact","home-hero4"],"classifications":["deal"],"publish_on":"2013-07-09T20:22:19+00:00","attachment_ids":["51dc703e8856e0332a00010d","51dd8ee6c80e1fc3d200027b"],"primary_product_id":null,"resource_uri":"/deals/edgestar-countertop-dishwasher-on-sale-at-compactappliance","disqus_uri":"/deals/edgestar-countertop-dishwasher-on-sale-at-compactappliance","product_ids":[],"related_article_ids":["51cb4247e328940a4600083e","51c20f7767c18decf9000016","5188198ef66694c4fe000602"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"edgestar-countertop-dishwasher-on-sale-at-compactappliance","is_template":false,"is_branch":false,"attachments":[{"id":"51dc703e8856e0332a00010d","created_at":"2013-07-09T20:19:10Z","updated_at":"2013-07-09T20:26:36Z","name":"Edgestar_DWP61ES_countertop_DWI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s50x50_Edgestar_DWP61ES_countertop_DWI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s150x150_Edgestar_DWP61ES_countertop_DWI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s200x75_Edgestar_DWP61ES_countertop_DWI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s250x250_Edgestar_DWP61ES_countertop_DWI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s300x150_Edgestar_DWP61ES_countertop_DWI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s300x112_Edgestar_DWP61ES_countertop_DWI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s500x500_Edgestar_DWP61ES_countertop_DWI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s600x400_Edgestar_DWP61ES_countertop_DWI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s600x600_Edgestar_DWP61ES_countertop_DWI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s630x235_Edgestar_DWP61ES_countertop_DWI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s940x400_Edgestar_DWP61ES_countertop_DWI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s940x350_Edgestar_DWP61ES_countertop_DWI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/s940x110_Edgestar_DWP61ES_countertop_DWI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/Edgestar_DWP61ES_countertop_DWI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/36ef6ee4195daf4c2f7340795f18f7acb35e602c/Edgestar_DWP61ES_countertop_DWI.jpg","file_size":25660,"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/51dc703e8856e0332a00010d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc703e8856e0332a00010d"}}}],"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/51dc702c8856e02de1000142","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc702c8856e02de1000142"}}},{"id":"51dc5fd29f94b6d13c0000aa","created_at":"2013-07-09T19:09:07Z","updated_at":"2013-07-12T14:30:59Z","name":"Panasonic
133
+ Lumix DMC-G5 on Sale at Adorama","branch_name":"master","summary":"It exists
134
+ in a weird middle ground, but it''s still a solid camera.","meta_description":null,"website_ids":["50e669d7bd028648e000000d"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","Lumix","DMC","G5","16
135
+ megapixel","Digital","Mirrorless","Micro Four Thirds","Lumix G Vario","14-42mm/F3.5-5.6","Lens","Adorama"],"classifications":["deal"],"publish_on":"2013-07-09T20:15:21+00:00","attachment_ids":["51dc5fedfd41fc63a1000075","51dd8de17c21abfd68000267"],"primary_product_id":null,"resource_uri":"/deals/panasonic-lumix-dmc-g5-on-sale-at-adorama-2","disqus_uri":"/deals/panasonic-lumix-dmc-g5-on-sale-at-adorama-2","product_ids":[],"related_article_ids":["51b786723754721e7300055b","51d725c76ce2659826000d77","51d462048a87c358a5001740"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"panasonic-lumix-dmc-g5-on-sale-at-adorama-2","is_template":false,"is_branch":false,"attachments":[{"id":"51dc5fedfd41fc63a1000075","created_at":"2013-07-09T19:09:33Z","updated_at":"2013-07-09T19:10:07Z","name":"Panasonic_Lumix_DMC_G5_DCI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s50x50_Panasonic_Lumix_DMC_G5_DCI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s150x150_Panasonic_Lumix_DMC_G5_DCI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s200x75_Panasonic_Lumix_DMC_G5_DCI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s250x250_Panasonic_Lumix_DMC_G5_DCI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s300x150_Panasonic_Lumix_DMC_G5_DCI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s300x112_Panasonic_Lumix_DMC_G5_DCI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s500x500_Panasonic_Lumix_DMC_G5_DCI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s600x400_Panasonic_Lumix_DMC_G5_DCI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s600x600_Panasonic_Lumix_DMC_G5_DCI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s630x235_Panasonic_Lumix_DMC_G5_DCI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s940x400_Panasonic_Lumix_DMC_G5_DCI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s940x350_Panasonic_Lumix_DMC_G5_DCI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/s940x110_Panasonic_Lumix_DMC_G5_DCI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/Panasonic_Lumix_DMC_G5_DCI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ec9e2ea1c0653c1874473a6f2de0a3da84c77d97/Panasonic_Lumix_DMC_G5_DCI.jpg","file_size":57879,"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/51dc5fedfd41fc63a1000075","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc5fedfd41fc63a1000075"}}}],"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/51dc5fd29f94b6d13c0000aa","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc5fd29f94b6d13c0000aa"}}},{"id":"51dc6201fd41fc13860003b2","created_at":"2013-07-09T19:18:29Z","updated_at":"2013-07-09T20:14:58Z","name":"Panasonic
136
+ TC-P50X60 on Sale at Best Buy","branch_name":"master","summary":"Sometimes
137
+ you just need that giant TV even if you don''t have the budget.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","VIERA","50
138
+ inch","Plasma","720p","600Hz","HD","TV","TC-P50X60","X60","Best Buy"],"classifications":["deal"],"publish_on":"2013-07-09T20:14:56+00:00","attachment_ids":["51dc622c21b5a086b5000027"],"primary_product_id":null,"resource_uri":"/deals/panasonic-tc-p50x60-on-sale-at-best-buy","disqus_uri":"/deals/panasonic-tc-p50x60-on-sale-at-best-buy","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"panasonic-tc-p50x60-on-sale-at-best-buy","is_template":false,"is_branch":false,"attachments":[{"id":"51dc622c21b5a086b5000027","created_at":"2013-07-09T19:19:08Z","updated_at":"2013-07-09T19:19:36Z","name":"Panasonic_TC_P50X60_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s50x50_Panasonic_TC_P50X60_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s150x150_Panasonic_TC_P50X60_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s200x75_Panasonic_TC_P50X60_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s250x250_Panasonic_TC_P50X60_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s300x150_Panasonic_TC_P50X60_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s300x112_Panasonic_TC_P50X60_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s500x500_Panasonic_TC_P50X60_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s600x400_Panasonic_TC_P50X60_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s600x600_Panasonic_TC_P50X60_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s630x235_Panasonic_TC_P50X60_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s940x400_Panasonic_TC_P50X60_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s940x350_Panasonic_TC_P50X60_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/s940x110_Panasonic_TC_P50X60_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/Panasonic_TC_P50X60_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fa7de66822f049d3675a37d9ff80bdcee23920f6/Panasonic_TC_P50X60_TVI.jpg","file_size":149446,"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/51dc622c21b5a086b5000027","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc622c21b5a086b5000027"}}}],"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/51dc6201fd41fc13860003b2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc6201fd41fc13860003b2"}}},{"id":"51dc656047a85d0d8d000003","created_at":"2013-07-09T19:32:50Z","updated_at":"2013-07-12T15:01:10Z","name":"Logitech
139
+ Harmony Universal Remote on Sale at Best Buy","branch_name":"master","summary":"Become
140
+ a technology wizard with this remote, which controls up to 15 devices.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Logitech","Harmony","Touch
141
+ screen","15-Device","Universal","Remote","Best Buy"],"classifications":["deal"],"publish_on":"2013-07-09T20:10:26+00:00","attachment_ids":["51dc6614f0ea922a74000291","51ddae2f17e0bcd30400012a"],"primary_product_id":null,"resource_uri":"/deals/logitech-harmony-universal-remote-on-sale-at-best-buy","disqus_uri":"/deals/logitech-harmony-universal-remote-on-sale-at-best-buy","product_ids":[],"related_article_ids":["5195370c7b929c9657000631"],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"logitech-harmony-universal-remote-on-sale-at-best-buy","is_template":false,"is_branch":false,"attachments":[{"id":"51dc6614f0ea922a74000291","created_at":"2013-07-09T19:35:48Z","updated_at":"2013-07-09T19:36:37Z","name":"Logitech_harmony_universal_remote_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s50x50_Logitech_harmony_universal_remote_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s150x150_Logitech_harmony_universal_remote_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s200x75_Logitech_harmony_universal_remote_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s250x250_Logitech_harmony_universal_remote_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s300x150_Logitech_harmony_universal_remote_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s300x112_Logitech_harmony_universal_remote_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s500x500_Logitech_harmony_universal_remote_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s600x400_Logitech_harmony_universal_remote_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s600x600_Logitech_harmony_universal_remote_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s630x235_Logitech_harmony_universal_remote_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s940x400_Logitech_harmony_universal_remote_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s940x350_Logitech_harmony_universal_remote_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/s940x110_Logitech_harmony_universal_remote_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/Logitech_harmony_universal_remote_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/973015ec0724c972e36cfcb90fa668dbf3d5f8ad/Logitech_harmony_universal_remote_TVI.jpg","file_size":68927,"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/51dc6614f0ea922a74000291","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc6614f0ea922a74000291"}}}],"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/51dc656047a85d0d8d000003","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc656047a85d0d8d000003"}}}]}'
120
142
  http_version:
121
- recorded_at: Thu, 27 Jun 2013 15:43:03 GMT
122
- recorded_with: VCR 2.5.0
143
+ recorded_at: Mon, 29 Jul 2013 21:25:08 GMT
144
+ recorded_with: VCR 2.4.0