reviewed 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/lib/faraday/cache.rb +13 -11
  3. data/lib/reviewed/cache.rb +18 -0
  4. data/lib/reviewed/version.rb +1 -1
  5. data/reviewed.gemspec +1 -1
  6. data/spec/article_spec.rb +1 -1
  7. data/spec/client_spec.rb +1 -1
  8. data/spec/collection_spec.rb +1 -1
  9. data/spec/faraday/cache_spec.rb +9 -9
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
  18. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
  19. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
  21. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
  22. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
  23. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
  25. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
  26. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
  27. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
  28. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
  29. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
  30. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
  31. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
  32. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
  33. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
  38. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
  39. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
  40. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
  41. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
  42. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
  45. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
  46. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
  47. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
  48. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
  49. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
  51. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
  52. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
  53. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
  54. data/spec/product_spec.rb +1 -1
  55. data/spec/request_spec.rb +4 -4
  56. metadata +35 -62
  57. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
@@ -8,9 +8,9 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.8.7
11
+ - Faraday v0.8.6
12
12
  X-Reviewed-Authorization:
13
- - 38e397252ec670ec441733a95204f141
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
@@ -36,19 +36,19 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:43:11 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:25:10 GMT
42
40
  Status:
43
41
  - 200 OK
44
42
  Strict-Transport-Security:
45
43
  - max-age=31536000
46
44
  Vary:
47
45
  - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
48
  X-Request-Id:
49
- - 51db4a123a42549fbc55ff36369d247c
49
+ - 14cb2a02d22e488a4345f6f4c391dfee
50
50
  X-Runtime:
51
- - '0.020183'
51
+ - '0.161512'
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/51cc5d8df82dc7b9e000007f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e000007f"}}}],"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/51cc5d8df82dc7b9e0000080","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e0000080"}}}],"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/51cc5d8df82dc7b9e0000081","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8df82dc7b9e0000081"}}}],"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/51cc5d8ef82dc7b9e0000082","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000082"}}}],"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/51cc5d8ef82dc7b9e0000083","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000083"}}}],"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/51cc5d8ef82dc7b9e0000084","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000084"}}}],"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/51cc5d8ef82dc7b9e0000085","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000085"}}}],"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/51cc5d8ef82dc7b9e0000086","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ef82dc7b9e0000086"}}}],"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/51cc5d8ff82dc7b9e0000087","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000087"}}}],"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/51cc5d8ff82dc7b9e0000088","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000088"}}}],"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/51cc5d8ff82dc7b9e0000089","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8ff82dc7b9e0000089"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/5138b9dd12494f322a000647","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138b9dd12494f322a000647"}}}]}'
60
+ string: '{"pagination":{"total":14082,"total_pages":705,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"51f279625bfa62856d000008","created_at":"2013-07-26T13:28:02Z","updated_at":"2013-07-26T13:30:16Z","name":"How
61
+ we test great lyrics","branch_name":"master","summary":null,"meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["science"],"publish_on":"2013-07-25T13:28:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/science/science-duh","disqus_uri":"/science/science-duh","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"science-duh","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51f279625bfa62856d000008","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51f279625bfa62856d000008"}}},{"id":"51e0180841b4e31831000d95","created_at":"2013-07-12T14:51:52Z","updated_at":"2013-07-16T20:19:18Z","name":"Some
62
+ Dude Hacks Microwave, Puts Manufacturers to Shame","branch_name":"master","summary":"Microwave
63
+ manufacturers take note: You\u2019re doing it wrong, and some guy from New
64
+ Zealand just showed you up.","meta_description":"Microwave manufacturers take
65
+ note: You\u2019re doing it wrong, and some guy from New Zealand just showed
66
+ you up.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["news"],"publish_on":"2013-07-17T13:00:55+00:00","attachment_ids":["51e019ef346e69649100253b","51e01ba140e6830d42000bef","51e01bea41b4e35bf40022e2"],"primary_product_id":null,"resource_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","disqus_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"some-dude-hacks-microwave-puts-manufacturers-to-shame","is_template":false,"is_branch":false,"attachments":[{"id":"51e01ba140e6830d42000bef","created_at":"2013-07-12T15:07:13Z","updated_at":"2013-07-12T15:07:37Z","name":"mic-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s50x50_mic-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s150x150_mic-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s200x75_mic-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s250x250_mic-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x150_mic-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x112_mic-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s500x500_mic-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x400_mic-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x600_mic-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s630x235_mic-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x400_mic-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x350_mic-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x110_mic-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg","file_size":79704,"content_type":"image/jpeg"},"position":1,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e01ba140e6830d42000bef","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e01ba140e6830d42000bef"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e0180841b4e31831000d95","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e0180841b4e31831000d95"}}},{"id":"51d6c5696ce265e17a000628","created_at":"2013-07-05T13:08:57Z","updated_at":"2013-07-22T14:11:41Z","name":"2013
67
+ Flagship TV Shootout","branch_name":"master","summary":"We break down four
68
+ of 2013''s most posh televisions\u2014only one can be the best.","meta_description":"We
69
+ break down four of 2013''s most posh televisions\u2014only one can be the
70
+ best.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-16T22:19:53+00:00","attachment_ids":["51d6d159d928061d94000006","51d6d391ad64a781ef0006fb","51d6d6c2ee3eb291050002ec","51d6d97e9665581e8b000032","51d6ef7e4cb07e7094000249","51d6f19e452883f7e400040c","51e59a0139c22ac13600039f","51e5b601ed7f09ef9c000030","51e5b9960cbbbb900c000076"],"primary_product_id":null,"resource_uri":"/features/2013-flagship-tv-shootout","disqus_uri":"/features/2013-flagship-tv-shootout","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"2013-flagship-tv-shootout","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b9960cbbbb900c000076","created_at":"2013-07-16T21:22:30Z","updated_at":"2013-07-16T21:43:39Z","name":"4K_Shoutout_Hero_940x110_01.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s50x50_4K_Shoutout_Hero_940x110_01.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s150x150_4K_Shoutout_Hero_940x110_01.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s200x75_4K_Shoutout_Hero_940x110_01.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s250x250_4K_Shoutout_Hero_940x110_01.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x150_4K_Shoutout_Hero_940x110_01.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x112_4K_Shoutout_Hero_940x110_01.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s500x500_4K_Shoutout_Hero_940x110_01.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x400_4K_Shoutout_Hero_940x110_01.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x600_4K_Shoutout_Hero_940x110_01.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s630x235_4K_Shoutout_Hero_940x110_01.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x400_4K_Shoutout_Hero_940x110_01.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x350_4K_Shoutout_Hero_940x110_01.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x110_4K_Shoutout_Hero_940x110_01.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg","file_size":31386,"content_type":"image/jpeg"},"position":8,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5b9960cbbbb900c000076","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b9960cbbbb900c000076"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51d6c5696ce265e17a000628","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51d6c5696ce265e17a000628"}}},{"id":"51e444dea7569ff6ac0005a4","created_at":"2013-07-15T18:52:14Z","updated_at":"2013-07-17T14:07:56Z","name":"Fujifilm
71
+ X20 Digital Camera Review","branch_name":"master","summary":"Fujifilm\u2019s
72
+ X10 followup is more refresh than reboot.","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["511d598e4fb5ad962100011c"],"tags":["x20","fujifilm","camera","digital","review","super-hero4","home-hero1"],"classifications":["review"],"publish_on":"2013-07-16T22:10:43+00:00","attachment_ids":["51e44b6b6abc192a78000006","51e5c2ef0cbbbb3e7200015d","51e5c31da7f00a2c58000113","51e5c352bbfad2e8d300016d","51e5ae18ea2f015cca000006","51e5a8f612b5b38c22001307","51e5a3c7e5973d3821000836","51e57be736bf0921f7000003","51e57be636bf0921f7000001","51e57be736bf0921f7000004","51e57be736bf0921f7000002","51e57be736bf0921f7000005","51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453174ca865cd9400000b","51e453164ca865cd9400000a","51e45dfa78e86bf301001646","51e57e1339c22a631c0001d8","51e57f08e5973d382100062c","51e57f1512b5b398dc000a36","51e57f1f12b5b3b8fb000ad5","51e594604423e12640000259","51e5972612b5b388c20012aa","51e5a17c4423e1fde1000924"],"primary_product_id":"50fa345c96ab5860160c8daa","resource_uri":"/content/fujifilm-x20-digital-camera-review","disqus_uri":"/content/fujifilm-x20-digital-camera-review","product_ids":["50fa345c96ab5860160c8daa"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"fujifilm-x20-digital-camera-review","is_template":false,"is_branch":false,"products":[{"id":"50fa345c96ab5860160c8daa","created_at":"2013-01-07T23:59:16Z","updated_at":"2013-07-16T22:00:11Z","name":"Fujifilm
73
+ X20","slug":"fujifilm-x20","_type":"Electronics::Cameras::PointAndShoot","types":["Ultra
74
+ Compact"],"msrp":599.99,"article_ids":["50fb9c28bd0286d55504d235","51c1c7cdf2e2a298d6000192","51e444dea7569ff6ac0005a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a0","brand_id":"50f9ed76bd0286638e0001b6","model":"X20","resource_uri":"/products/fujifilm-x20","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.77,"ranking":{"total":139,"rank":20,"percentile":86},"rubric":{"id":"50f9ed93bd0286638e0003a0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-07-12T20:14:53Z","name":"2009-2010
75
+ Point & Shoot Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a0"}}},"is_primary_product":true,"attachments":[{"id":"51dc384d9f94b642880000a0","created_at":"2013-07-09T16:20:29Z","updated_at":"2013-07-09T16:21:18Z","name":"vanityschmanitycrop.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s50x50_vanityschmanitycrop.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s150x150_vanityschmanitycrop.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s200x75_vanityschmanitycrop.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s250x250_vanityschmanitycrop.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x150_vanityschmanitycrop.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x112_vanityschmanitycrop.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s500x500_vanityschmanitycrop.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x400_vanityschmanitycrop.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x600_vanityschmanitycrop.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s630x235_vanityschmanitycrop.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x400_vanityschmanitycrop.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x350_vanityschmanitycrop.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x110_vanityschmanitycrop.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg","file_size":589336,"content_type":"image/jpeg"},"position":37,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51dc384d9f94b642880000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc384d9f94b642880000a0"}}}],"bulk_uploads":[{"id":"51c1c92a10a21e32940001cf","created_at":"2013-06-19T15:07:22Z","updated_at":"2013-06-19T15:09:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/hNN-S9qMMK0UfJM5J57r9g/Archive.zip","tags":"sample-photo","status":"complete","article_id":null,"product_id":"50fa345c96ab5860160c8daa","attachment_ids":["51c1c9362689c22995000010","51c1c9372689c22995000011","51c1c9382689c22995000012","51c1c9392689c22995000013","51c1c93b2689c22995000014","51c1c9452689c22995000015","51c1c9532689c22995000016","51c1c95e2689c22995000017","51c1c9632689c22995000018","51c1c96c2689c22995000019","51c1c9702689c2299500001a","51c1c9782689c2299500001b","51c1c9822689c2299500001c","51c1c98c2689c2299500001d","51c1c98e2689c2299500001e","51c1c9902689c2299500001f","51c1c9972689c22995000020","51c1c99d2689c22995000021","51c1c9a62689c22995000022","51c1c9b72689c22995000023"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51c1c92a10a21e32940001cf","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51c1c92a10a21e32940001cf"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7b7801411f26000001","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000001"}}}],"attachments":[{"id":"51e45dfa78e86bf301001646","created_at":"2013-07-15T20:39:22Z","updated_at":"2013-07-17T13:19:47Z","name":"x20hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s50x50_x20hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s150x150_x20hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s200x75_x20hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s250x250_x20hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x150_x20hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x112_x20hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s500x500_x20hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x400_x20hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x600_x20hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s630x235_x20hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x400_x20hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x350_x20hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x110_x20hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg","file_size":235867,"content_type":"image/jpeg"},"position":23,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e45dfa78e86bf301001646","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e45dfa78e86bf301001646"}}}],"bulk_uploads":[{"id":"51e44b67946be06a13001859","created_at":"2013-07-15T19:20:07Z","updated_at":"2013-07-15T19:20:07Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/iRLhMxX44jkXqasR9U4Wew/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e44b6b6abc192a78000006"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e44b67946be06a13001859","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e44b67946be06a13001859"}}},{"id":"51e452f6946be00d51001630","created_at":"2013-07-15T19:52:22Z","updated_at":"2013-07-15T19:52:55Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/J68qrnm-1dbFHAoc_NscEA/gal2.zip","tags":"gallery2","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453164ca865cd9400000a","51e453174ca865cd9400000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e452f6946be00d51001630","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e452f6946be00d51001630"}}},{"id":"51e57aaccb0477fb5d000106","created_at":"2013-07-16T16:54:04Z","updated_at":"2013-07-16T16:54:04Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/5-Jl_GqpxwYeM3cXdm69qA/handling.zip","tags":"gallery2","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57aaccb0477fb5d000106","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57aaccb0477fb5d000106"}}},{"id":"51e57ad5c63de5ba0e000eea","created_at":"2013-07-16T16:54:45Z","updated_at":"2013-07-16T16:54:45Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/7L3STz82Kr9jMwxwQ5_2Bg/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea"}}},{"id":"51e57be4cb0477db2b001220","created_at":"2013-07-16T16:59:16Z","updated_at":"2013-07-16T16:59:19Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/Ut4fD_YhSA1QIROkGMAazA/tryagain.zip","tags":"gallery1","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e57be636bf0921f7000001","51e57be736bf0921f7000002","51e57be736bf0921f7000003","51e57be736bf0921f7000004","51e57be736bf0921f7000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57be4cb0477db2b001220","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57be4cb0477db2b001220"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e444dea7569ff6ac0005a4","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e444dea7569ff6ac0005a4"}}},{"id":"51e570a1c63de5d7ce000680","created_at":"2013-07-16T16:11:13Z","updated_at":"2013-07-16T21:02:21Z","name":"Deals:
76
+ Adventure Cam Discounts for Outdoor Enthusiasts","branch_name":"master","summary":"Your
77
+ camera might get a little down and dirty but that doesn''t mean it has to
78
+ suffer. Adventure cameras are able to withstand nontraditional environments.
79
+ Here are some discounted ones to consider.","meta_description":null,"website_ids":["50e669d7bd028648e000000d","50e669d7bd028648e0000005"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["adventure","camera","tough","Panasonic","Pentax","Olympus","Polaroid","waterproof","shockproof"],"classifications":["deal"],"publish_on":"2013-07-16T21:02:20+00:00","attachment_ids":["51e58c8a8cb8389fb40012bf","51e58c9c4423e1647e001112","51e58cb0c63de5d7ce00080a","51e59067cb047718b400064f","51e59071e16820d264001233","51e5a551e168208da0001259"],"primary_product_id":null,"resource_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","disqus_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-adventure-cam-discounts-for-outdoor-enthusiasts","is_template":false,"is_branch":false,"attachments":[{"id":"51e59067cb047718b400064f","created_at":"2013-07-16T18:26:47Z","updated_at":"2013-07-16T18:27:21Z","name":"Panasonic_Lumix_TS5_DCI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s50x50_Panasonic_Lumix_TS5_DCI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s150x150_Panasonic_Lumix_TS5_DCI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s200x75_Panasonic_Lumix_TS5_DCI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s250x250_Panasonic_Lumix_TS5_DCI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x150_Panasonic_Lumix_TS5_DCI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x112_Panasonic_Lumix_TS5_DCI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s500x500_Panasonic_Lumix_TS5_DCI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x400_Panasonic_Lumix_TS5_DCI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x600_Panasonic_Lumix_TS5_DCI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s630x235_Panasonic_Lumix_TS5_DCI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x400_Panasonic_Lumix_TS5_DCI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x350_Panasonic_Lumix_TS5_DCI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x110_Panasonic_Lumix_TS5_DCI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg","file_size":91638,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e59067cb047718b400064f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e59067cb047718b400064f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e570a1c63de5d7ce000680","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e570a1c63de5d7ce000680"}}},{"id":"51e562abe16820d264000fe0","created_at":"2013-07-16T15:11:39Z","updated_at":"2013-07-17T13:21:26Z","name":"KitchenAid
80
+ KEBS109BSS Electric Wall Oven Review","branch_name":"master","summary":"Inconspicuous,
81
+ unremarkable and expensive","meta_description":"The KitchenAid KEBS109BSS
82
+ is a 5.1 cubic foot electric wall oven designed to complement the current
83
+ crop of KitchenAid stovetops. At $2,249.00 ($1,949.00 for the black or white
84
+ options) the KEBS109BSS represents a pretty sizable investment for any homeowner
85
+ or renovator.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove","super-hero6"],"classifications":["review"],"publish_on":"2013-07-16T18:07:37+00:00","attachment_ids":["51e5670139c22ac13600003d"],"primary_product_id":"51e55f0939c22a88c00008ae","resource_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","disqus_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","product_ids":["51e55f0939c22a88c00008ae"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"kitchenaid-kebs109bss-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e55f0939c22a88c00008ae","created_at":"2013-07-16T14:56:09Z","updated_at":"2013-07-16T15:21:00Z","name":"KitchenAid
86
+ KEBS109BSS","slug":"kitchenaid-kebs109bss","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":2249.0,"article_ids":["51e562abe16820d264000fe0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c7","model":"","resource_uri":"/products/kitchenaid-kebs109bss","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"51e55f2725099a34c4000005","created_at":"2013-07-16T14:56:39Z","updated_at":"2013-07-16T15:01:41Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg","file_size":80466,"content_type":"image/jpeg"},"position":5,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e55f2725099a34c4000005","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e55f2725099a34c4000005"}}}],"bulk_uploads":[{"id":"51e55f2439c22a526b000039","created_at":"2013-07-16T14:56:36Z","updated_at":"2013-07-16T14:56:36Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/X1CN6jG6SwYMT_kzA-vvBQ/KitchenAid
87
+ KEBS109BSS.zip","tags":"","status":"creating","article_id":null,"product_id":"51e55f0939c22a88c00008ae","attachment_ids":["51e55f2625099a34c4000002","51e55f2625099a34c4000003","51e55f2725099a34c4000004","51e55f2725099a34c4000005","51e55f2725099a34c4000006","51e55f2725099a34c4000007","51e55f2825099a34c4000008","51e55f2825099a34c4000009","51e55f2825099a34c400000a"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e55f2439c22a526b000039","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e55f2439c22a526b000039"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7b7801411f26000002","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000002"}}}],"attachments":[{"id":"51e5670139c22ac13600003d","created_at":"2013-07-16T15:30:09Z","updated_at":"2013-07-17T13:21:09Z","name":"KitchenAid-Mock-Hero-Convection-2.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s50x50_KitchenAid-Mock-Hero-Convection-2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s150x150_KitchenAid-Mock-Hero-Convection-2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s200x75_KitchenAid-Mock-Hero-Convection-2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s250x250_KitchenAid-Mock-Hero-Convection-2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x150_KitchenAid-Mock-Hero-Convection-2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x112_KitchenAid-Mock-Hero-Convection-2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s500x500_KitchenAid-Mock-Hero-Convection-2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x400_KitchenAid-Mock-Hero-Convection-2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x600_KitchenAid-Mock-Hero-Convection-2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s630x235_KitchenAid-Mock-Hero-Convection-2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x400_KitchenAid-Mock-Hero-Convection-2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x350_KitchenAid-Mock-Hero-Convection-2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x110_KitchenAid-Mock-Hero-Convection-2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg","file_size":371328,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5670139c22ac13600003d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5670139c22ac13600003d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e562abe16820d264000fe0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e562abe16820d264000fe0"}}},{"id":"51df177941b4e382d2000a92","created_at":"2013-07-11T20:37:13Z","updated_at":"2013-07-16T15:57:49Z","name":"Scientists
88
+ Use Terminator-Like Liquid Metal for 3-D Printing","branch_name":"master","summary":"This
89
+ stretchable liquid metal alloy may be the technology smart clothing has been
90
+ waiting for.","meta_description":"This stretchable liquid metal alloy may
91
+ be the technology smart clothing has been waiting for.","website_ids":["50e669d7bd028648e0000015"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["super-hero3"],"classifications":["feature"],"publish_on":"2013-07-16T15:45:20+00:00","attachment_ids":["51df194941b4e364020009fe","51df1aca435fce49c9000d00","51df1ae741b4e3d9c9000b3e","51df1c3c346e696491000b50"],"primary_product_id":null,"resource_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","disqus_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"scientists-use-terminator-like-liquid-metal-for-3-d-printing","is_template":false,"is_branch":false,"attachments":[{"id":"51df1aca435fce49c9000d00","created_at":"2013-07-11T20:51:22Z","updated_at":"2013-07-11T20:52:08Z","name":"liquid-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s50x50_liquid-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s150x150_liquid-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s200x75_liquid-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s250x250_liquid-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x150_liquid-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x112_liquid-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s500x500_liquid-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x400_liquid-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x600_liquid-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s630x235_liquid-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x400_liquid-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x350_liquid-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x110_liquid-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg","file_size":124248,"content_type":"image/jpeg"},"position":1,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51df1aca435fce49c9000d00","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df1aca435fce49c9000d00"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df177941b4e382d2000a92","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df177941b4e382d2000a92"}}},{"id":"51e06951e839fded5f0000fb","created_at":"2013-07-12T20:38:42Z","updated_at":"2013-07-22T14:21:48Z","name":"Don\u2019t
92
+ Get Played by Your Own Brain: The Confirmation Bias","branch_name":"master","summary":"Even
93
+ the human thought processes can get bugs.","meta_description":"Even the human
94
+ thought processes can get bugs.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["super-hero1"],"classifications":["science"],"publish_on":"2013-07-16T14:03:23+00:00","attachment_ids":["51e0698dd4b55d700a00038e","51e06af7fa4b299f8800029e","51e06c7ed4b55d815a000319","51e5b8179d57a6743f000085"],"primary_product_id":null,"resource_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","disqus_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"dont-get-played-by-your-own-brain-the-confirmation-bias","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b8179d57a6743f000085","created_at":"2013-07-16T21:16:07Z","updated_at":"2013-07-16T21:43:24Z","name":"Undiscovered_Genius.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s50x50_Undiscovered_Genius.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s150x150_Undiscovered_Genius.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s200x75_Undiscovered_Genius.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s250x250_Undiscovered_Genius.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x150_Undiscovered_Genius.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x112_Undiscovered_Genius.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s500x500_Undiscovered_Genius.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x400_Undiscovered_Genius.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x600_Undiscovered_Genius.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s630x235_Undiscovered_Genius.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x400_Undiscovered_Genius.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x350_Undiscovered_Genius.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x110_Undiscovered_Genius.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg","file_size":75985,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5b8179d57a6743f000085","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b8179d57a6743f000085"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e06951e839fded5f0000fb","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e06951e839fded5f0000fb"}}},{"id":"51e066d7e839fdfe9a00012c","created_at":"2013-07-12T20:28:08Z","updated_at":"2013-07-16T22:28:04Z","name":"How
95
+ Long Could a Tour de France Rider Power Your House?","branch_name":"master","summary":"What
96
+ if we could put all that hard work to use?","meta_description":"What if we
97
+ could put all that hard work to use?","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":[],"classifications":["science"],"publish_on":"2013-07-16T14:03:00+00:00","attachment_ids":["51e59e564423e1c724000713","51e5bfb73a9b26e96a00019a"],"primary_product_id":null,"resource_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","disqus_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-long-could-a-tour-de-france-rider-power-your-house","is_template":false,"is_branch":false,"attachments":[{"id":"51e5bfb73a9b26e96a00019a","created_at":"2013-07-16T21:48:39Z","updated_at":"2013-07-16T21:49:04Z","name":"wiggo.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s50x50_wiggo.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s150x150_wiggo.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s200x75_wiggo.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s250x250_wiggo.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x150_wiggo.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x112_wiggo.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s500x500_wiggo.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x400_wiggo.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x600_wiggo.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s630x235_wiggo.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x400_wiggo.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x350_wiggo.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x110_wiggo.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg","file_size":162847,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5bfb73a9b26e96a00019a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5bfb73a9b26e96a00019a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e066d7e839fdfe9a00012c","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e066d7e839fdfe9a00012c"}}},{"id":"51dd79adc626238784000cc7","created_at":"2013-07-10T15:11:41Z","updated_at":"2013-07-16T22:08:54Z","name":"Image
98
+ Stabilization Testing: How Do We Accurately Simulate Camera Shake?","branch_name":"master","summary":"Unlike
99
+ most performance testing, image stabilization requires a bit ingenuity to
100
+ measure.","meta_description":"Unlike most performance testing, image stabilization
101
+ requires a bit ingenuity to measure.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c","50fc4eb0bd0286d5550b4c9f"],"tags":["imaging","how
102
+ we test","video"],"classifications":["science"],"publish_on":"2013-07-16T14:00:00+00:00","attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000005","51dd7a0f107c979982000111","51e5a535c63de5ed5200046d","51e5a9ede5973d406e0000c1"],"primary_product_id":null,"resource_uri":"/science/how-do-we-accurately-simulate-camera-shake","disqus_uri":"/science/how-do-we-accurately-simulate-camera-shake","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-do-we-accurately-simulate-camera-shake","is_template":false,"is_branch":false,"attachments":[{"id":"51e5a9ede5973d406e0000c1","created_at":"2013-07-16T20:15:41Z","updated_at":"2013-07-16T20:42:41Z","name":"shakerhero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s50x50_shakerhero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s150x150_shakerhero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s200x75_shakerhero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s250x250_shakerhero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x150_shakerhero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x112_shakerhero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s500x500_shakerhero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x400_shakerhero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x600_shakerhero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s630x235_shakerhero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x400_shakerhero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x350_shakerhero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x110_shakerhero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg","file_size":152969,"content_type":"image/jpeg"},"position":6,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5a9ede5973d406e0000c1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5a9ede5973d406e0000c1"}}}],"bulk_uploads":[{"id":"51dd79b8defe36c6f8000abe","created_at":"2013-07-10T15:11:52Z","updated_at":"2013-07-10T15:11:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/3A68eIyLelv_midazet74A/Archive
103
+ 2.zip","tags":"","status":"complete","article_id":"51dd79adc626238784000cc7","product_id":null,"attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd79adc626238784000cc7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd79adc626238784000cc7"}}},{"id":"51e41ba997ecd04b5e00086e","created_at":"2013-07-15T15:56:25Z","updated_at":"2013-07-16T14:32:15Z","name":"Deals:
104
+ Build Yourself a Home Theater System","branch_name":"master","summary":"Get
105
+ the most out of your entertainment with a complete home theater system. You''ll
106
+ be sure to have the best living room on the block.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","blu-ray","player","TiVo","TV","speaker","soundbar","Newegg","Best
107
+ Buy","Amazon","projector","home-hero3"],"classifications":["deal"],"publish_on":"2013-07-15T20:43:45+00:00","attachment_ids":["51e444b17a8f6c1ec70003f0","51e447cc97ecd0ceed00161b","51e44b96e36847e0980016a5","51e455cb97ecd072120000de","51e4568c946be06a13001915","51e45dcae168206547000086","51e45e8f97ecd05d6e000129","51e5594612b5b3b8fb00084c"],"primary_product_id":null,"resource_uri":"/deals/deals-build-yourself-a-home-theater-system","disqus_uri":"/deals/deals-build-yourself-a-home-theater-system","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-build-yourself-a-home-theater-system","is_template":false,"is_branch":false,"attachments":[{"id":"51e444b17a8f6c1ec70003f0","created_at":"2013-07-15T18:51:29Z","updated_at":"2013-07-15T18:52:23Z","name":"LG_50LN5700_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s50x50_LG_50LN5700_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s150x150_LG_50LN5700_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s200x75_LG_50LN5700_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s250x250_LG_50LN5700_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x150_LG_50LN5700_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x112_LG_50LN5700_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s500x500_LG_50LN5700_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x400_LG_50LN5700_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x600_LG_50LN5700_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s630x235_LG_50LN5700_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x400_LG_50LN5700_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x350_LG_50LN5700_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x110_LG_50LN5700_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg","file_size":82450,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e444b17a8f6c1ec70003f0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e444b17a8f6c1ec70003f0"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e41ba997ecd04b5e00086e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e41ba997ecd04b5e00086e"}}},{"id":"51e04d9df6e59c9b160000a0","created_at":"2013-07-12T18:40:29Z","updated_at":"2013-07-17T13:17:56Z","name":"Whirlpool
108
+ WOS92EC0AS Electric Wall Oven Review","branch_name":"master","summary":"The
109
+ Whirlpool WOS92ECOA: maximum performance in a minimalist shell.","meta_description":"The
110
+ WOS92EC0AS (MSRP $1,499-$1,699) is an electric convection wall oven with an
111
+ eight-pass broiler element, it comes in the standard black and stainless steel
112
+ as well as the Whirlpools new glossy white finish: White Ice.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-07-15T16:31:43+00:00","attachment_ids":["51e04e8accfde96a7c00009f"],"primary_product_id":"51e048ab0ecba0abc8000036","resource_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","disqus_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","product_ids":["51e048ab0ecba0abc8000036"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"whirlpool-wos92ec0as-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e048ab0ecba0abc8000036","created_at":"2013-07-12T18:19:23Z","updated_at":"2013-07-12T18:39:54Z","name":"Whirlpool
113
+ WOS92EC0AS","slug":"whirlpool-wos92ec0as","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":1699.0,"article_ids":["51e04d9df6e59c9b160000a0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c5","model":"","resource_uri":"/products/whirlpool-wos92ec0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"51e04b2a45cfff2661000008","created_at":"2013-07-12T18:30:02Z","updated_at":"2013-07-12T18:34:02Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg","file_size":92228,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e04b2a45cfff2661000008","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04b2a45cfff2661000008"}}}],"bulk_uploads":[{"id":"51e04b25c2998eec590000b2","created_at":"2013-07-12T18:29:57Z","updated_at":"2013-07-12T18:29:57Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/-qf2cZ8tveO3X8fZHG2tKg/untitled
114
+ folder.zip","tags":"","status":"creating","article_id":null,"product_id":"51e048ab0ecba0abc8000036","attachment_ids":["51e04b2745cfff2661000002","51e04b2845cfff2661000003","51e04b2845cfff2661000004","51e04b2945cfff2661000005","51e04b2945cfff2661000006","51e04b2a45cfff2661000007","51e04b2a45cfff2661000008","51e04b2a45cfff2661000009","51e04b2b45cfff266100000a","51e04b2b45cfff266100000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e04b25c2998eec590000b2","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e04b25c2998eec590000b2"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000003","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000003"}}}],"attachments":[{"id":"51e04e8accfde96a7c00009f","created_at":"2013-07-12T18:44:26Z","updated_at":"2013-07-15T20:34:12Z","name":"hero.JPG","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s50x50_Whirlpool_wall_oven_mock_hero.JPG","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s150x150_Whirlpool_wall_oven_mock_hero.JPG","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s200x75_Whirlpool_wall_oven_mock_hero.JPG","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s250x250_Whirlpool_wall_oven_mock_hero.JPG","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x150_Whirlpool_wall_oven_mock_hero.JPG","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x112_Whirlpool_wall_oven_mock_hero.JPG","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s500x500_Whirlpool_wall_oven_mock_hero.JPG","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x400_Whirlpool_wall_oven_mock_hero.JPG","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x600_Whirlpool_wall_oven_mock_hero.JPG","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s630x235_Whirlpool_wall_oven_mock_hero.JPG","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x400_Whirlpool_wall_oven_mock_hero.JPG","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x350_Whirlpool_wall_oven_mock_hero.JPG","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x110_Whirlpool_wall_oven_mock_hero.JPG","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG","file_size":129727,"content_type":"image/jpeg"},"position":0,"processing":"processing","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e04e8accfde96a7c00009f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04e8accfde96a7c00009f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e04d9df6e59c9b160000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e04d9df6e59c9b160000a0"}}},{"id":"51dedd5141b4e3ec2b000218","created_at":"2013-07-11T16:29:06Z","updated_at":"2013-07-16T15:57:34Z","name":"UK
115
+ Woman\u2019s Fridge Explodes, Jar of Rhubarb Chutney Blamed","branch_name":"master","summary":"Fermented
116
+ chutney has been blamed for laying waste to a senior citizen\u2019s kitchen,
117
+ though a volatile refrigerant is the more likely culprit.","meta_description":"","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["home-hero1"],"classifications":["feature"],"publish_on":"2013-07-15T15:45:09+00:00","attachment_ids":["51e4193097ecd04193001115","51e419f9946be00d51001166","51e56b81e168201a93000ec1"],"primary_product_id":null,"resource_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","disqus_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","is_template":false,"is_branch":false,"attachments":[{"id":"51e4193097ecd04193001115","created_at":"2013-07-15T15:45:52Z","updated_at":"2013-07-15T15:46:34Z","name":"Chutney
118
+ Hero","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s50x50_chutney-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s150x150_chutney-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s200x75_chutney-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s250x250_chutney-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x150_chutney-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x112_chutney-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s500x500_chutney-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x400_chutney-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x600_chutney-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s630x235_chutney-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x400_chutney-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x350_chutney-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x110_chutney-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg","file_size":112544,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e4193097ecd04193001115","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4193097ecd04193001115"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dedd5141b4e3ec2b000218","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dedd5141b4e3ec2b000218"}}},{"id":"51cd984553f40ab4d9000049","created_at":"2013-06-28T14:05:57Z","updated_at":"2013-07-17T13:17:51Z","name":"Samsung
119
+ ATIV Smart PC Pro 700T Review","branch_name":"master","summary":"A hybrid
120
+ laptop/tablet that uses the full potential of Windows 8","meta_description":"A
121
+ hybrid laptop/tablet that uses the full potential of Windows 8","website_ids":["50e669d7bd028648e000002f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":["samsung
122
+ ativ","windows 8 ativ","samsung tablet laptop","home-hero1","super-hero5"],"classifications":["review"],"publish_on":"2013-07-15T15:10:10+00:00","attachment_ids":["51defdc9903d89d7b3000001","51defde73947282a5c0007ac","51defe4f6b81be56bb0006ea","51df05e3394728eeef00074f","51df066339472841d800082a","51df068a346e6908160007d5","51df072939472841d8000849","51e40eb0946be0980d000345","51e40f3e946be021920010b2"],"primary_product_id":"51cc4b036f758de1020013fe","resource_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","disqus_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","product_ids":["51cc4b036f758de1020013fe"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samsung-ativ-smart-pc-pro-700t-review","is_template":false,"is_branch":false,"products":[{"id":"51cc4b036f758de1020013fe","created_at":"2013-06-27T14:24:04Z","updated_at":"2013-07-15T15:31:43Z","name":"Samsung
123
+ ATIV Smart PC Pro 700T","slug":"samsung-ativ-smart-pc-pro-700t","_type":"Electronics::Computers::Laptop","types":[],"msrp":1199.99,"article_ids":["51cd984553f40ab4d9000049"],"website_ids":["50e669d7bd028648e000002f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003bb","brand_id":"50f9ed6fbd0286638e0000b8","model":"","resource_uri":"/products/samsung-ativ-smart-pc-pro-700t","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.71,"ranking":{"total":15,"rank":4,"percentile":74},"rubric":{"id":"50f9ed93bd0286638e0003bb","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-28T22:44:24Z","name":"Laptops
124
+ 2012 Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003bb","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003bb"}}},"is_primary_product":true,"attachments":[{"id":"51e4140a946be06a130012c5","created_at":"2013-07-15T15:23:54Z","updated_at":"2013-07-15T15:24:40Z","name":"Samsung-ATIV-700T-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s50x50_Samsung-ATIV-700T-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s150x150_Samsung-ATIV-700T-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s200x75_Samsung-ATIV-700T-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s250x250_Samsung-ATIV-700T-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x150_Samsung-ATIV-700T-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x112_Samsung-ATIV-700T-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s500x500_Samsung-ATIV-700T-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x400_Samsung-ATIV-700T-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x600_Samsung-ATIV-700T-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s630x235_Samsung-ATIV-700T-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x400_Samsung-ATIV-700T-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x350_Samsung-ATIV-700T-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x110_Samsung-ATIV-700T-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg","file_size":98277,"content_type":"image/jpeg"},"position":7,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e4140a946be06a130012c5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4140a946be06a130012c5"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000004","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000004"}}}],"attachments":[{"id":"51e40eb0946be0980d000345","created_at":"2013-07-15T15:01:04Z","updated_at":"2013-07-15T15:01:33Z","name":"ativ-hero-final-940x400.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s50x50_ativ-hero-final-940x400.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s150x150_ativ-hero-final-940x400.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s200x75_ativ-hero-final-940x400.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s250x250_ativ-hero-final-940x400.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x150_ativ-hero-final-940x400.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x112_ativ-hero-final-940x400.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s500x500_ativ-hero-final-940x400.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x400_ativ-hero-final-940x400.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x600_ativ-hero-final-940x400.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s630x235_ativ-hero-final-940x400.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x400_ativ-hero-final-940x400.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x350_ativ-hero-final-940x400.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x110_ativ-hero-final-940x400.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg","file_size":162630,"content_type":"image/jpeg"},"position":7,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e40eb0946be0980d000345","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e40eb0946be0980d000345"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51cd984553f40ab4d9000049","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51cd984553f40ab4d9000049"}}},{"id":"51dc2b7e09f981a999000003","created_at":"2013-07-09T15:25:50Z","updated_at":"2013-07-15T14:58:12Z","name":"Changing
125
+ How We Rate TVs","branch_name":"master","summary":"Our scores are changing.
126
+ Here''s why.","meta_description":"Our scores are changing. Here''s why.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-15T12:58:48+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/changing-how-we-rate-tvs","disqus_uri":"/features/changing-how-we-rate-tvs","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"changing-how-we-rate-tvs","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dc2b7e09f981a999000003","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc2b7e09f981a999000003"}}},{"id":"51e02f8704bff9a86d000037","created_at":"2013-07-12T16:32:08Z","updated_at":"2013-07-12T20:37:21Z","name":"Deal
127
+ Roundup: Wedding Registry Must-Haves","branch_name":"master","summary":"Summer
128
+ is the time for weddings and with so many potentially on your plate, how will
129
+ you know what to purchase?","meta_description":null,"website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000019"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["cuisinart","Macy''s","wedding
130
+ registry","Amazon","Cooking.com","stand mixer","slow cooker","coffee maker"],"classifications":["deal"],"publish_on":"2013-07-12T20:37:21+00:00","attachment_ids":["51e055e1786c88775f0000b4","51e056f1b51116f4670000ab","51e056fcb51116544800008a","51e055f2b511165619000065","51e055f86e8b60406500010b","51e05a08786c884d7f0000e1"],"primary_product_id":null,"resource_uri":"/deals/deal-roundup-wedding-registry-must-haves","disqus_uri":"/deals/deal-roundup-wedding-registry-must-haves","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deal-roundup-wedding-registry-must-haves","is_template":false,"is_branch":false,"attachments":[{"id":"51e05a08786c884d7f0000e1","created_at":"2013-07-12T19:33:28Z","updated_at":"2013-07-12T19:34:10Z","name":"Cuisinart_ice_cream_maker.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s50x50_Cuisinart_ice_cream_maker.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s150x150_Cuisinart_ice_cream_maker.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s200x75_Cuisinart_ice_cream_maker.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s250x250_Cuisinart_ice_cream_maker.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x150_Cuisinart_ice_cream_maker.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x112_Cuisinart_ice_cream_maker.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s500x500_Cuisinart_ice_cream_maker.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x400_Cuisinart_ice_cream_maker.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x600_Cuisinart_ice_cream_maker.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s630x235_Cuisinart_ice_cream_maker.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x400_Cuisinart_ice_cream_maker.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x350_Cuisinart_ice_cream_maker.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x110_Cuisinart_ice_cream_maker.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg","file_size":45052,"content_type":"image/jpeg"},"position":5,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e05a08786c884d7f0000e1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e05a08786c884d7f0000e1"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e02f8704bff9a86d000037","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e02f8704bff9a86d000037"}}},{"id":"51df1e16435fcedc23000ad3","created_at":"2013-07-11T21:05:26Z","updated_at":"2013-07-15T15:24:59Z","name":"Reviewed.com
131
+ Weekly Roundup: July 12, 2013","branch_name":"master","summary":"We looked
132
+ at a great camera from a lesser-known brand, a Bosch dishwasher, and more.","meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4e99bd0286d5550b4c17"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T13:00:00+00:00","attachment_ids":["51df2476346e69f882000be3","51e01eab435fceb5fd0010e8","51df24824146740311000e04"],"primary_product_id":null,"resource_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","disqus_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-weekly-roundup-july-12-2013","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df1e16435fcedc23000ad3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df1e16435fcedc23000ad3"}}},{"id":"51dd59fa0637387398000704","created_at":"2013-07-10T12:56:26Z","updated_at":"2013-07-17T13:20:02Z","name":"Sony
133
+ Bravia KDL-50R550A Review","branch_name":"master","summary":"This 50-inch
134
+ LCD from Sony offers media and 3D, but lacks performance power.","meta_description":"This
135
+ 50-inch LCD from Sony offers media and 3D, but lacks performance power.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["review"],"publish_on":"2013-07-12T12:39:33+00:00","attachment_ids":["51e02e3a265255027e000086","51e02e43dbe7d2dc2a000049"],"primary_product_id":"51dd568890ced0d18700073a","resource_uri":"/content/sony-bravia-kdl-50r550a-review","disqus_uri":"/content/sony-bravia-kdl-50r550a-review","product_ids":["51dd568890ced0d18700073a"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"sony-bravia-kdl-50r550a-review","is_template":false,"is_branch":false,"products":[{"id":"51dd568890ced0d18700073a","created_at":"2013-07-10T12:41:44Z","updated_at":"2013-07-15T17:12:06Z","name":"Sony
136
+ Bravia KDL-50R550A","slug":"sony-bravia-kdl-50r550a","_type":"Electronics::Television","types":[],"msrp":999.99,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed6fbd0286638e0000b7","model":"","resource_uri":"/products/sony-bravia-kdl-50r550a","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.61,"ranking":{"total":106,"rank":97,"percentile":9},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-27T14:00:54Z","name":"TV
137
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"is_primary_product":true,"attachments":[{"id":"51e02b5cbd47e6771a000021","created_at":"2013-07-12T16:14:20Z","updated_at":"2013-07-12T16:14:50Z","name":"vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s150x150_vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s200x75_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x600_vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s630x235_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg","file_size":26667,"content_type":"image/jpeg"},"position":10,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e02b5cbd47e6771a000021","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02b5cbd47e6771a000021"}}}],"bulk_uploads":[{"id":"51e0034e435fcea53e00017e","created_at":"2013-07-12T13:23:26Z","updated_at":"2013-07-12T13:23:32Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/1HiA0NKemcCVrXEGaUTgsA/charts.zip","tags":"color","status":"complete","article_id":null,"product_id":"51dd568890ced0d18700073a","attachment_ids":["51e00352b03e90493b000001","51e00352b03e90493b000002","51e00353b03e90493b000003","51e00353b03e90493b000004","51e00353b03e90493b000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e0034e435fcea53e00017e","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e0034e435fcea53e00017e"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000005","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000005"}}}],"attachments":[{"id":"51e02e3a265255027e000086","created_at":"2013-07-12T16:26:34Z","updated_at":"2013-07-12T19:21:57Z","name":"Hero2400px.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s50x50_Hero2400px.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s150x150_Hero2400px.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s200x75_Hero2400px.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s250x250_Hero2400px.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x150_Hero2400px.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x112_Hero2400px.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s500x500_Hero2400px.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x400_Hero2400px.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x600_Hero2400px.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s630x235_Hero2400px.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x400_Hero2400px.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x350_Hero2400px.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x110_Hero2400px.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg","file_size":172693,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e02e3a265255027e000086","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02e3a265255027e000086"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd59fa0637387398000704","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd59fa0637387398000704"}}},{"id":"51dff7a16b81be8ef0000a3d","created_at":"2013-07-12T12:33:37Z","updated_at":"2013-07-12T18:25:19Z","name":"The
138
+ Weekly TV Roundup: July 12","branch_name":"master","summary":"It''s TV time
139
+ again!","meta_description":"It''s TV time again!","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c9b"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T12:30:56+00:00","attachment_ids":["51e0269941b4e3a10d00069c","51e02d7ccd6634b64100002f","51e046170ecba0d9f0000023"],"primary_product_id":null,"resource_uri":"/features/the-weekly-tv-roundup-july-12","disqus_uri":"/features/the-weekly-tv-roundup-july-12","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"the-weekly-tv-roundup-july-12","is_template":false,"is_branch":false,"attachments":[{"id":"51e046170ecba0d9f0000023","created_at":"2013-07-12T18:08:23Z","updated_at":"2013-07-12T18:08:37Z","name":"TV_Roundup_july12.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s50x50_TV_Roundup_july12.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s150x150_TV_Roundup_july12.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s200x75_TV_Roundup_july12.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s250x250_TV_Roundup_july12.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x150_TV_Roundup_july12.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x112_TV_Roundup_july12.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s500x500_TV_Roundup_july12.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x400_TV_Roundup_july12.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x600_TV_Roundup_july12.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s630x235_TV_Roundup_july12.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x400_TV_Roundup_july12.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x350_TV_Roundup_july12.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x110_TV_Roundup_july12.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg","file_size":115087,"content_type":"image/jpeg"},"position":2,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e046170ecba0d9f0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e046170ecba0d9f0000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dff7a16b81be8ef0000a3d","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dff7a16b81be8ef0000a3d"}}},{"id":"51decd888c7af461230027e9","created_at":"2013-07-11T15:21:44Z","updated_at":"2013-07-16T14:32:10Z","name":"Deals:
140
+ Never Leave Your Living Room Again","branch_name":"master","summary":"As the
141
+ temperatures outside swell, the need to stay inside gets stronger. Entertain
142
+ yourself this summer with deals on Google TVs and more.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["LG","Google","TV","smart","video
143
+ game","console","Xbox 360","deals"],"classifications":["deal"],"publish_on":"2013-07-11T20:53:19+00:00","attachment_ids":["51dedab4ce7281fd6f000001","51dedfa83947282a5c000328","51dedabe346e69158c0001f7","51dedac4120b11149300020c","51e01a13120b11ddb60004da"],"primary_product_id":null,"resource_uri":"/deals/deals-never-leave-your-living-room-again","disqus_uri":"/deals/deals-never-leave-your-living-room-again","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-never-leave-your-living-room-again","is_template":false,"is_branch":false,"attachments":[{"id":"51dedac4120b11149300020c","created_at":"2013-07-11T16:18:12Z","updated_at":"2013-07-11T19:55:56Z","name":"LG_GA6400_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s50x50_LG_GA6400_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s150x150_LG_GA6400_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s200x75_LG_GA6400_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s250x250_LG_GA6400_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x150_LG_GA6400_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x112_LG_GA6400_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s500x500_LG_GA6400_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x400_LG_GA6400_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x600_LG_GA6400_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s630x235_LG_GA6400_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x400_LG_GA6400_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x350_LG_GA6400_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x110_LG_GA6400_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg","file_size":21420,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51dedac4120b11149300020c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dedac4120b11149300020c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51decd888c7af461230027e9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51decd888c7af461230027e9"}}}]}'
153
144
  http_version:
154
- recorded_at: Thu, 27 Jun 2013 15:43:12 GMT
155
- recorded_with: VCR 2.5.0
145
+ recorded_at: Mon, 29 Jul 2013 21:25:10 GMT
146
+ recorded_with: VCR 2.4.0
@@ -8,9 +8,9 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.8.7
11
+ - Faraday v0.8.6
12
12
  X-Reviewed-Authorization:
13
- - 38e397252ec670ec441733a95204f141
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
@@ -36,19 +36,19 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:43:22 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:25:10 GMT
42
40
  Status:
43
41
  - 200 OK
44
42
  Strict-Transport-Security:
45
43
  - max-age=31536000
46
44
  Vary:
47
45
  - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
48
  X-Request-Id:
49
- - 0df4bfbc701c1da5c1a2453668d9025b
49
+ - fe2c9607e870b1e1ce267a71b47445b3
50
50
  X-Runtime:
51
- - '0.025699'
51
+ - '0.167974'
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/51cc5d90f82dc798de00005d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d90f82dc798de00005d"}}}],"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/51cc5d91f82dc798de00005e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de00005e"}}}],"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/51cc5d91f82dc798de00005f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de00005f"}}}],"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/51cc5d91f82dc798de000060","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de000060"}}}],"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/51cc5d91f82dc798de000061","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d91f82dc798de000061"}}}],"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/51cc5d92f82dc798de000062","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d92f82dc798de000062"}}}],"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/51cc5d94f82dc798de000063","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d94f82dc798de000063"}}}],"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/51cc5d95f82dc798de000064","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d95f82dc798de000064"}}}],"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/51cc5d97f82dc798de000065","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d97f82dc798de000065"}}}],"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/51cc5d98f82dc798de000066","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d98f82dc798de000066"}}}],"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/51cc5d9af82dc798de000067","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d9af82dc798de000067"}}}],"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/5138b9dd12494f322a000647","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/5138b9dd12494f322a000647"}}}]}'
60
+ string: '{"pagination":{"total":14082,"total_pages":705,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"51f279625bfa62856d000008","created_at":"2013-07-26T13:28:02Z","updated_at":"2013-07-26T13:30:16Z","name":"How
61
+ we test great lyrics","branch_name":"master","summary":null,"meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["5113c597f981b8f03b00057d"],"tags":[],"classifications":["science"],"publish_on":"2013-07-25T13:28:07+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/science/science-duh","disqus_uri":"/science/science-duh","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"science-duh","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51f279625bfa62856d000008","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51f279625bfa62856d000008"}}},{"id":"51e0180841b4e31831000d95","created_at":"2013-07-12T14:51:52Z","updated_at":"2013-07-16T20:19:18Z","name":"Some
62
+ Dude Hacks Microwave, Puts Manufacturers to Shame","branch_name":"master","summary":"Microwave
63
+ manufacturers take note: You\u2019re doing it wrong, and some guy from New
64
+ Zealand just showed you up.","meta_description":"Microwave manufacturers take
65
+ note: You\u2019re doing it wrong, and some guy from New Zealand just showed
66
+ you up.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":[],"classifications":["news"],"publish_on":"2013-07-17T13:00:55+00:00","attachment_ids":["51e019ef346e69649100253b","51e01ba140e6830d42000bef","51e01bea41b4e35bf40022e2"],"primary_product_id":null,"resource_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","disqus_uri":"/news/some-dude-hacks-microwave-puts-manufacturers-to-shame","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"some-dude-hacks-microwave-puts-manufacturers-to-shame","is_template":false,"is_branch":false,"attachments":[{"id":"51e01ba140e6830d42000bef","created_at":"2013-07-12T15:07:13Z","updated_at":"2013-07-12T15:07:37Z","name":"mic-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s50x50_mic-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s150x150_mic-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s200x75_mic-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s250x250_mic-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x150_mic-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s300x112_mic-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s500x500_mic-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x400_mic-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s600x600_mic-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s630x235_mic-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x400_mic-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x350_mic-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/s940x110_mic-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/917257decbe62aa813644eca3fb801f0691d7e0a/mic-small-hero.jpg","file_size":79704,"content_type":"image/jpeg"},"position":1,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e01ba140e6830d42000bef","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e01ba140e6830d42000bef"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e0180841b4e31831000d95","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e0180841b4e31831000d95"}}},{"id":"51d6c5696ce265e17a000628","created_at":"2013-07-05T13:08:57Z","updated_at":"2013-07-22T14:11:41Z","name":"2013
67
+ Flagship TV Shootout","branch_name":"master","summary":"We break down four
68
+ of 2013''s most posh televisions\u2014only one can be the best.","meta_description":"We
69
+ break down four of 2013''s most posh televisions\u2014only one can be the
70
+ best.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-16T22:19:53+00:00","attachment_ids":["51d6d159d928061d94000006","51d6d391ad64a781ef0006fb","51d6d6c2ee3eb291050002ec","51d6d97e9665581e8b000032","51d6ef7e4cb07e7094000249","51d6f19e452883f7e400040c","51e59a0139c22ac13600039f","51e5b601ed7f09ef9c000030","51e5b9960cbbbb900c000076"],"primary_product_id":null,"resource_uri":"/features/2013-flagship-tv-shootout","disqus_uri":"/features/2013-flagship-tv-shootout","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"2013-flagship-tv-shootout","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b9960cbbbb900c000076","created_at":"2013-07-16T21:22:30Z","updated_at":"2013-07-16T21:43:39Z","name":"4K_Shoutout_Hero_940x110_01.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s50x50_4K_Shoutout_Hero_940x110_01.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s150x150_4K_Shoutout_Hero_940x110_01.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s200x75_4K_Shoutout_Hero_940x110_01.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s250x250_4K_Shoutout_Hero_940x110_01.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x150_4K_Shoutout_Hero_940x110_01.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s300x112_4K_Shoutout_Hero_940x110_01.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s500x500_4K_Shoutout_Hero_940x110_01.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x400_4K_Shoutout_Hero_940x110_01.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s600x600_4K_Shoutout_Hero_940x110_01.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s630x235_4K_Shoutout_Hero_940x110_01.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x400_4K_Shoutout_Hero_940x110_01.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x350_4K_Shoutout_Hero_940x110_01.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/s940x110_4K_Shoutout_Hero_940x110_01.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c13445f28acc678674008e527228a47452608fe8/4K_Shoutout_Hero_940x110_01.jpg","file_size":31386,"content_type":"image/jpeg"},"position":8,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5b9960cbbbb900c000076","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b9960cbbbb900c000076"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51d6c5696ce265e17a000628","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51d6c5696ce265e17a000628"}}},{"id":"51e444dea7569ff6ac0005a4","created_at":"2013-07-15T18:52:14Z","updated_at":"2013-07-17T14:07:56Z","name":"Fujifilm
71
+ X20 Digital Camera Review","branch_name":"master","summary":"Fujifilm\u2019s
72
+ X10 followup is more refresh than reboot.","meta_description":"","website_ids":["50e669d7bd028648e000000d"],"author_ids":["511d598e4fb5ad962100011c"],"tags":["x20","fujifilm","camera","digital","review","super-hero4","home-hero1"],"classifications":["review"],"publish_on":"2013-07-16T22:10:43+00:00","attachment_ids":["51e44b6b6abc192a78000006","51e5c2ef0cbbbb3e7200015d","51e5c31da7f00a2c58000113","51e5c352bbfad2e8d300016d","51e5ae18ea2f015cca000006","51e5a8f612b5b38c22001307","51e5a3c7e5973d3821000836","51e57be736bf0921f7000003","51e57be636bf0921f7000001","51e57be736bf0921f7000004","51e57be736bf0921f7000002","51e57be736bf0921f7000005","51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453174ca865cd9400000b","51e453164ca865cd9400000a","51e45dfa78e86bf301001646","51e57e1339c22a631c0001d8","51e57f08e5973d382100062c","51e57f1512b5b398dc000a36","51e57f1f12b5b3b8fb000ad5","51e594604423e12640000259","51e5972612b5b388c20012aa","51e5a17c4423e1fde1000924"],"primary_product_id":"50fa345c96ab5860160c8daa","resource_uri":"/content/fujifilm-x20-digital-camera-review","disqus_uri":"/content/fujifilm-x20-digital-camera-review","product_ids":["50fa345c96ab5860160c8daa"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"fujifilm-x20-digital-camera-review","is_template":false,"is_branch":false,"products":[{"id":"50fa345c96ab5860160c8daa","created_at":"2013-01-07T23:59:16Z","updated_at":"2013-07-16T22:00:11Z","name":"Fujifilm
73
+ X20","slug":"fujifilm-x20","_type":"Electronics::Cameras::PointAndShoot","types":["Ultra
74
+ Compact"],"msrp":599.99,"article_ids":["50fb9c28bd0286d55504d235","51c1c7cdf2e2a298d6000192","51e444dea7569ff6ac0005a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003a0","brand_id":"50f9ed76bd0286638e0001b6","model":"X20","resource_uri":"/products/fujifilm-x20","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":8.77,"ranking":{"total":139,"rank":20,"percentile":86},"rubric":{"id":"50f9ed93bd0286638e0003a0","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-07-12T20:14:53Z","name":"2009-2010
75
+ Point & Shoot Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a0","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a0"}}},"is_primary_product":true,"attachments":[{"id":"51dc384d9f94b642880000a0","created_at":"2013-07-09T16:20:29Z","updated_at":"2013-07-09T16:21:18Z","name":"vanityschmanitycrop.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s50x50_vanityschmanitycrop.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s150x150_vanityschmanitycrop.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s200x75_vanityschmanitycrop.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s250x250_vanityschmanitycrop.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x150_vanityschmanitycrop.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s300x112_vanityschmanitycrop.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s500x500_vanityschmanitycrop.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x400_vanityschmanitycrop.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s600x600_vanityschmanitycrop.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s630x235_vanityschmanitycrop.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x400_vanityschmanitycrop.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x350_vanityschmanitycrop.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/s940x110_vanityschmanitycrop.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a67e50fba764782c8d049881950143df2c1da781/vanityschmanitycrop.jpg","file_size":589336,"content_type":"image/jpeg"},"position":37,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51dc384d9f94b642880000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dc384d9f94b642880000a0"}}}],"bulk_uploads":[{"id":"51c1c92a10a21e32940001cf","created_at":"2013-06-19T15:07:22Z","updated_at":"2013-06-19T15:09:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/hNN-S9qMMK0UfJM5J57r9g/Archive.zip","tags":"sample-photo","status":"complete","article_id":null,"product_id":"50fa345c96ab5860160c8daa","attachment_ids":["51c1c9362689c22995000010","51c1c9372689c22995000011","51c1c9382689c22995000012","51c1c9392689c22995000013","51c1c93b2689c22995000014","51c1c9452689c22995000015","51c1c9532689c22995000016","51c1c95e2689c22995000017","51c1c9632689c22995000018","51c1c96c2689c22995000019","51c1c9702689c2299500001a","51c1c9782689c2299500001b","51c1c9822689c2299500001c","51c1c98c2689c2299500001d","51c1c98e2689c2299500001e","51c1c9902689c2299500001f","51c1c9972689c22995000020","51c1c99d2689c22995000021","51c1c9a62689c22995000022","51c1c9b72689c22995000023"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51c1c92a10a21e32940001cf","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51c1c92a10a21e32940001cf"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7b7801411f26000001","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000001"}}}],"attachments":[{"id":"51e45dfa78e86bf301001646","created_at":"2013-07-15T20:39:22Z","updated_at":"2013-07-17T13:19:47Z","name":"x20hero.jpg","type":"file","tags":["hero","home-hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s50x50_x20hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s150x150_x20hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s200x75_x20hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s250x250_x20hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x150_x20hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s300x112_x20hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s500x500_x20hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x400_x20hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s600x600_x20hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s630x235_x20hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x400_x20hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x350_x20hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/s940x110_x20hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c78eb690054aa0de98b97a125069ba15dc88470f/x20hero.jpg","file_size":235867,"content_type":"image/jpeg"},"position":23,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e45dfa78e86bf301001646","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e45dfa78e86bf301001646"}}}],"bulk_uploads":[{"id":"51e44b67946be06a13001859","created_at":"2013-07-15T19:20:07Z","updated_at":"2013-07-15T19:20:07Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/iRLhMxX44jkXqasR9U4Wew/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e44b6b6abc192a78000006"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e44b67946be06a13001859","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e44b67946be06a13001859"}}},{"id":"51e452f6946be00d51001630","created_at":"2013-07-15T19:52:22Z","updated_at":"2013-07-15T19:52:55Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/J68qrnm-1dbFHAoc_NscEA/gal2.zip","tags":"gallery2","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e453064ca865cd94000001","51e453084ca865cd94000002","51e4530a4ca865cd94000003","51e4530b4ca865cd94000004","51e4530e4ca865cd94000005","51e453104ca865cd94000006","51e453114ca865cd94000007","51e453134ca865cd94000008","51e453154ca865cd94000009","51e453164ca865cd9400000a","51e453174ca865cd9400000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e452f6946be00d51001630","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e452f6946be00d51001630"}}},{"id":"51e57aaccb0477fb5d000106","created_at":"2013-07-16T16:54:04Z","updated_at":"2013-07-16T16:54:04Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/5-Jl_GqpxwYeM3cXdm69qA/handling.zip","tags":"gallery2","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57aaccb0477fb5d000106","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57aaccb0477fb5d000106"}}},{"id":"51e57ad5c63de5ba0e000eea","created_at":"2013-07-16T16:54:45Z","updated_at":"2013-07-16T16:54:45Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/7L3STz82Kr9jMwxwQ5_2Bg/Archive.zip","tags":"gallery1","status":"creating","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57ad5c63de5ba0e000eea"}}},{"id":"51e57be4cb0477db2b001220","created_at":"2013-07-16T16:59:16Z","updated_at":"2013-07-16T16:59:19Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/Ut4fD_YhSA1QIROkGMAazA/tryagain.zip","tags":"gallery1","status":"complete","article_id":"51e444dea7569ff6ac0005a4","product_id":null,"attachment_ids":["51e57be636bf0921f7000001","51e57be736bf0921f7000002","51e57be736bf0921f7000003","51e57be736bf0921f7000004","51e57be736bf0921f7000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e57be4cb0477db2b001220","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e57be4cb0477db2b001220"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e444dea7569ff6ac0005a4","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e444dea7569ff6ac0005a4"}}},{"id":"51e570a1c63de5d7ce000680","created_at":"2013-07-16T16:11:13Z","updated_at":"2013-07-16T21:02:21Z","name":"Deals:
76
+ Adventure Cam Discounts for Outdoor Enthusiasts","branch_name":"master","summary":"Your
77
+ camera might get a little down and dirty but that doesn''t mean it has to
78
+ suffer. Adventure cameras are able to withstand nontraditional environments.
79
+ Here are some discounted ones to consider.","meta_description":null,"website_ids":["50e669d7bd028648e000000d","50e669d7bd028648e0000005"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["adventure","camera","tough","Panasonic","Pentax","Olympus","Polaroid","waterproof","shockproof"],"classifications":["deal"],"publish_on":"2013-07-16T21:02:20+00:00","attachment_ids":["51e58c8a8cb8389fb40012bf","51e58c9c4423e1647e001112","51e58cb0c63de5d7ce00080a","51e59067cb047718b400064f","51e59071e16820d264001233","51e5a551e168208da0001259"],"primary_product_id":null,"resource_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","disqus_uri":"/deals/deals-adventure-cam-discounts-for-outdoor-enthusiasts","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-adventure-cam-discounts-for-outdoor-enthusiasts","is_template":false,"is_branch":false,"attachments":[{"id":"51e59067cb047718b400064f","created_at":"2013-07-16T18:26:47Z","updated_at":"2013-07-16T18:27:21Z","name":"Panasonic_Lumix_TS5_DCI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s50x50_Panasonic_Lumix_TS5_DCI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s150x150_Panasonic_Lumix_TS5_DCI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s200x75_Panasonic_Lumix_TS5_DCI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s250x250_Panasonic_Lumix_TS5_DCI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x150_Panasonic_Lumix_TS5_DCI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s300x112_Panasonic_Lumix_TS5_DCI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s500x500_Panasonic_Lumix_TS5_DCI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x400_Panasonic_Lumix_TS5_DCI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s600x600_Panasonic_Lumix_TS5_DCI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s630x235_Panasonic_Lumix_TS5_DCI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x400_Panasonic_Lumix_TS5_DCI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x350_Panasonic_Lumix_TS5_DCI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/s940x110_Panasonic_Lumix_TS5_DCI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/4913ec9ccc309b29335b65b422d453c02342be3c/Panasonic_Lumix_TS5_DCI.jpg","file_size":91638,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e59067cb047718b400064f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e59067cb047718b400064f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e570a1c63de5d7ce000680","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e570a1c63de5d7ce000680"}}},{"id":"51e562abe16820d264000fe0","created_at":"2013-07-16T15:11:39Z","updated_at":"2013-07-17T13:21:26Z","name":"KitchenAid
80
+ KEBS109BSS Electric Wall Oven Review","branch_name":"master","summary":"Inconspicuous,
81
+ unremarkable and expensive","meta_description":"The KitchenAid KEBS109BSS
82
+ is a 5.1 cubic foot electric wall oven designed to complement the current
83
+ crop of KitchenAid stovetops. At $2,249.00 ($1,949.00 for the black or white
84
+ options) the KEBS109BSS represents a pretty sizable investment for any homeowner
85
+ or renovator.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove","super-hero6"],"classifications":["review"],"publish_on":"2013-07-16T18:07:37+00:00","attachment_ids":["51e5670139c22ac13600003d"],"primary_product_id":"51e55f0939c22a88c00008ae","resource_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","disqus_uri":"/content/kitchenaid-kebs109bss-electric-wall-oven-review","product_ids":["51e55f0939c22a88c00008ae"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"kitchenaid-kebs109bss-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e55f0939c22a88c00008ae","created_at":"2013-07-16T14:56:09Z","updated_at":"2013-07-16T15:21:00Z","name":"KitchenAid
86
+ KEBS109BSS","slug":"kitchenaid-kebs109bss","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":2249.0,"article_ids":["51e562abe16820d264000fe0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c7","model":"","resource_uri":"/products/kitchenaid-kebs109bss","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"51e55f2725099a34c4000005","created_at":"2013-07-16T14:56:39Z","updated_at":"2013-07-16T15:01:41Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e423818876503a3b6c28a52119737e8fd2bdf8c8/Front.jpg","file_size":80466,"content_type":"image/jpeg"},"position":5,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e55f2725099a34c4000005","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e55f2725099a34c4000005"}}}],"bulk_uploads":[{"id":"51e55f2439c22a526b000039","created_at":"2013-07-16T14:56:36Z","updated_at":"2013-07-16T14:56:36Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/X1CN6jG6SwYMT_kzA-vvBQ/KitchenAid
87
+ KEBS109BSS.zip","tags":"","status":"creating","article_id":null,"product_id":"51e55f0939c22a88c00008ae","attachment_ids":["51e55f2625099a34c4000002","51e55f2625099a34c4000003","51e55f2725099a34c4000004","51e55f2725099a34c4000005","51e55f2725099a34c4000006","51e55f2725099a34c4000007","51e55f2825099a34c4000008","51e55f2825099a34c4000009","51e55f2825099a34c400000a"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e55f2439c22a526b000039","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e55f2439c22a526b000039"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7b7801411f26000002","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7b7801411f26000002"}}}],"attachments":[{"id":"51e5670139c22ac13600003d","created_at":"2013-07-16T15:30:09Z","updated_at":"2013-07-17T13:21:09Z","name":"KitchenAid-Mock-Hero-Convection-2.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s50x50_KitchenAid-Mock-Hero-Convection-2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s150x150_KitchenAid-Mock-Hero-Convection-2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s200x75_KitchenAid-Mock-Hero-Convection-2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s250x250_KitchenAid-Mock-Hero-Convection-2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x150_KitchenAid-Mock-Hero-Convection-2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s300x112_KitchenAid-Mock-Hero-Convection-2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s500x500_KitchenAid-Mock-Hero-Convection-2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x400_KitchenAid-Mock-Hero-Convection-2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s600x600_KitchenAid-Mock-Hero-Convection-2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s630x235_KitchenAid-Mock-Hero-Convection-2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x400_KitchenAid-Mock-Hero-Convection-2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x350_KitchenAid-Mock-Hero-Convection-2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/s940x110_KitchenAid-Mock-Hero-Convection-2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/eb64ad52b4be470e2df8ff1b056982c409d04f7a/KitchenAid-Mock-Hero-Convection-2.jpg","file_size":371328,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5670139c22ac13600003d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5670139c22ac13600003d"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e562abe16820d264000fe0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e562abe16820d264000fe0"}}},{"id":"51df177941b4e382d2000a92","created_at":"2013-07-11T20:37:13Z","updated_at":"2013-07-16T15:57:49Z","name":"Scientists
88
+ Use Terminator-Like Liquid Metal for 3-D Printing","branch_name":"master","summary":"This
89
+ stretchable liquid metal alloy may be the technology smart clothing has been
90
+ waiting for.","meta_description":"This stretchable liquid metal alloy may
91
+ be the technology smart clothing has been waiting for.","website_ids":["50e669d7bd028648e0000015"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["super-hero3"],"classifications":["feature"],"publish_on":"2013-07-16T15:45:20+00:00","attachment_ids":["51df194941b4e364020009fe","51df1aca435fce49c9000d00","51df1ae741b4e3d9c9000b3e","51df1c3c346e696491000b50"],"primary_product_id":null,"resource_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","disqus_uri":"/features/scientists-use-terminator-like-liquid-metal-for-3-d-printing","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"scientists-use-terminator-like-liquid-metal-for-3-d-printing","is_template":false,"is_branch":false,"attachments":[{"id":"51df1aca435fce49c9000d00","created_at":"2013-07-11T20:51:22Z","updated_at":"2013-07-11T20:52:08Z","name":"liquid-small-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s50x50_liquid-small-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s150x150_liquid-small-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s200x75_liquid-small-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s250x250_liquid-small-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x150_liquid-small-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s300x112_liquid-small-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s500x500_liquid-small-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x400_liquid-small-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s600x600_liquid-small-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s630x235_liquid-small-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x400_liquid-small-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x350_liquid-small-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/s940x110_liquid-small-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f81416fe59340967a28bb8f6cdf2db4532b00bb2/liquid-small-hero.jpg","file_size":124248,"content_type":"image/jpeg"},"position":1,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51df1aca435fce49c9000d00","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51df1aca435fce49c9000d00"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df177941b4e382d2000a92","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df177941b4e382d2000a92"}}},{"id":"51e06951e839fded5f0000fb","created_at":"2013-07-12T20:38:42Z","updated_at":"2013-07-22T14:21:48Z","name":"Don\u2019t
92
+ Get Played by Your Own Brain: The Confirmation Bias","branch_name":"master","summary":"Even
93
+ the human thought processes can get bugs.","meta_description":"Even the human
94
+ thought processes can get bugs.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":["super-hero1"],"classifications":["science"],"publish_on":"2013-07-16T14:03:23+00:00","attachment_ids":["51e0698dd4b55d700a00038e","51e06af7fa4b299f8800029e","51e06c7ed4b55d815a000319","51e5b8179d57a6743f000085"],"primary_product_id":null,"resource_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","disqus_uri":"/science/dont-get-played-by-your-own-brain-the-confirmation-bias","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"dont-get-played-by-your-own-brain-the-confirmation-bias","is_template":false,"is_branch":false,"attachments":[{"id":"51e5b8179d57a6743f000085","created_at":"2013-07-16T21:16:07Z","updated_at":"2013-07-16T21:43:24Z","name":"Undiscovered_Genius.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s50x50_Undiscovered_Genius.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s150x150_Undiscovered_Genius.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s200x75_Undiscovered_Genius.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s250x250_Undiscovered_Genius.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x150_Undiscovered_Genius.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s300x112_Undiscovered_Genius.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s500x500_Undiscovered_Genius.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x400_Undiscovered_Genius.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s600x600_Undiscovered_Genius.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s630x235_Undiscovered_Genius.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x400_Undiscovered_Genius.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x350_Undiscovered_Genius.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/s940x110_Undiscovered_Genius.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6fd50d53be5dc78d85ab257689e731ea4dae8db8/Undiscovered_Genius.jpg","file_size":75985,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5b8179d57a6743f000085","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5b8179d57a6743f000085"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e06951e839fded5f0000fb","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e06951e839fded5f0000fb"}}},{"id":"51e066d7e839fdfe9a00012c","created_at":"2013-07-12T20:28:08Z","updated_at":"2013-07-16T22:28:04Z","name":"How
95
+ Long Could a Tour de France Rider Power Your House?","branch_name":"master","summary":"What
96
+ if we could put all that hard work to use?","meta_description":"What if we
97
+ could put all that hard work to use?","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c"],"tags":[],"classifications":["science"],"publish_on":"2013-07-16T14:03:00+00:00","attachment_ids":["51e59e564423e1c724000713","51e5bfb73a9b26e96a00019a"],"primary_product_id":null,"resource_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","disqus_uri":"/science/how-long-could-a-tour-de-france-rider-power-your-house","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-long-could-a-tour-de-france-rider-power-your-house","is_template":false,"is_branch":false,"attachments":[{"id":"51e5bfb73a9b26e96a00019a","created_at":"2013-07-16T21:48:39Z","updated_at":"2013-07-16T21:49:04Z","name":"wiggo.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s50x50_wiggo.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s150x150_wiggo.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s200x75_wiggo.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s250x250_wiggo.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x150_wiggo.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s300x112_wiggo.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s500x500_wiggo.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x400_wiggo.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s600x600_wiggo.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s630x235_wiggo.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x400_wiggo.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x350_wiggo.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/s940x110_wiggo.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7d9c2198ee9542346e11e401aac41a74f9907ede/wiggo.jpg","file_size":162847,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5bfb73a9b26e96a00019a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5bfb73a9b26e96a00019a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e066d7e839fdfe9a00012c","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e066d7e839fdfe9a00012c"}}},{"id":"51dd79adc626238784000cc7","created_at":"2013-07-10T15:11:41Z","updated_at":"2013-07-16T22:08:54Z","name":"Image
98
+ Stabilization Testing: How Do We Accurately Simulate Camera Shake?","branch_name":"master","summary":"Unlike
99
+ most performance testing, image stabilization requires a bit ingenuity to
100
+ measure.","meta_description":"Unlike most performance testing, image stabilization
101
+ requires a bit ingenuity to measure.","website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4eb0bd0286d5550b4c9c","50fc4eb0bd0286d5550b4c9f"],"tags":["imaging","how
102
+ we test","video"],"classifications":["science"],"publish_on":"2013-07-16T14:00:00+00:00","attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000005","51dd7a0f107c979982000111","51e5a535c63de5ed5200046d","51e5a9ede5973d406e0000c1"],"primary_product_id":null,"resource_uri":"/science/how-do-we-accurately-simulate-camera-shake","disqus_uri":"/science/how-do-we-accurately-simulate-camera-shake","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"how-do-we-accurately-simulate-camera-shake","is_template":false,"is_branch":false,"attachments":[{"id":"51e5a9ede5973d406e0000c1","created_at":"2013-07-16T20:15:41Z","updated_at":"2013-07-16T20:42:41Z","name":"shakerhero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s50x50_shakerhero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s150x150_shakerhero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s200x75_shakerhero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s250x250_shakerhero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x150_shakerhero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s300x112_shakerhero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s500x500_shakerhero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x400_shakerhero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s600x600_shakerhero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s630x235_shakerhero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x400_shakerhero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x350_shakerhero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/s940x110_shakerhero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7b834eaadd6d556c0177811d0a1702dcdd4e2c86/shakerhero.jpg","file_size":152969,"content_type":"image/jpeg"},"position":6,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e5a9ede5973d406e0000c1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e5a9ede5973d406e0000c1"}}}],"bulk_uploads":[{"id":"51dd79b8defe36c6f8000abe","created_at":"2013-07-10T15:11:52Z","updated_at":"2013-07-10T15:11:54Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/3A68eIyLelv_midazet74A/Archive
103
+ 2.zip","tags":"","status":"complete","article_id":"51dd79adc626238784000cc7","product_id":null,"attachment_ids":["51dd79b997ff54c4d1000001","51dd79ba97ff54c4d1000002","51dd79ba97ff54c4d1000003","51dd79ba97ff54c4d1000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51dd79b8defe36c6f8000abe"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd79adc626238784000cc7","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd79adc626238784000cc7"}}},{"id":"51e41ba997ecd04b5e00086e","created_at":"2013-07-15T15:56:25Z","updated_at":"2013-07-16T14:32:15Z","name":"Deals:
104
+ Build Yourself a Home Theater System","branch_name":"master","summary":"Get
105
+ the most out of your entertainment with a complete home theater system. You''ll
106
+ be sure to have the best living room on the block.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["Panasonic","blu-ray","player","TiVo","TV","speaker","soundbar","Newegg","Best
107
+ Buy","Amazon","projector","home-hero3"],"classifications":["deal"],"publish_on":"2013-07-15T20:43:45+00:00","attachment_ids":["51e444b17a8f6c1ec70003f0","51e447cc97ecd0ceed00161b","51e44b96e36847e0980016a5","51e455cb97ecd072120000de","51e4568c946be06a13001915","51e45dcae168206547000086","51e45e8f97ecd05d6e000129","51e5594612b5b3b8fb00084c"],"primary_product_id":null,"resource_uri":"/deals/deals-build-yourself-a-home-theater-system","disqus_uri":"/deals/deals-build-yourself-a-home-theater-system","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-build-yourself-a-home-theater-system","is_template":false,"is_branch":false,"attachments":[{"id":"51e444b17a8f6c1ec70003f0","created_at":"2013-07-15T18:51:29Z","updated_at":"2013-07-15T18:52:23Z","name":"LG_50LN5700_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s50x50_LG_50LN5700_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s150x150_LG_50LN5700_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s200x75_LG_50LN5700_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s250x250_LG_50LN5700_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x150_LG_50LN5700_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s300x112_LG_50LN5700_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s500x500_LG_50LN5700_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x400_LG_50LN5700_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s600x600_LG_50LN5700_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s630x235_LG_50LN5700_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x400_LG_50LN5700_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x350_LG_50LN5700_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/s940x110_LG_50LN5700_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/019cdad5d509e59413d3b3c432f45e3678f822e9/LG_50LN5700_TVI.jpg","file_size":82450,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e444b17a8f6c1ec70003f0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e444b17a8f6c1ec70003f0"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e41ba997ecd04b5e00086e","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e41ba997ecd04b5e00086e"}}},{"id":"51e04d9df6e59c9b160000a0","created_at":"2013-07-12T18:40:29Z","updated_at":"2013-07-17T13:17:56Z","name":"Whirlpool
108
+ WOS92EC0AS Electric Wall Oven Review","branch_name":"master","summary":"The
109
+ Whirlpool WOS92ECOA: maximum performance in a minimalist shell.","meta_description":"The
110
+ WOS92EC0AS (MSRP $1,499-$1,699) is an electric convection wall oven with an
111
+ eight-pass broiler element, it comes in the standard black and stainless steel
112
+ as well as the Whirlpools new glossy white finish: White Ice.","website_ids":["50e669d7bd028648e000002b"],"author_ids":["50fc4eb0bd0286d5550b4ca1"],"tags":["oven","range","review","gas","electric","stove"],"classifications":["review"],"publish_on":"2013-07-15T16:31:43+00:00","attachment_ids":["51e04e8accfde96a7c00009f"],"primary_product_id":"51e048ab0ecba0abc8000036","resource_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","disqus_uri":"/content/whirlpool-wos92ec0as-electric-wall-oven-review","product_ids":["51e048ab0ecba0abc8000036"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"whirlpool-wos92ec0as-electric-wall-oven-review","is_template":false,"is_branch":false,"products":[{"id":"51e048ab0ecba0abc8000036","created_at":"2013-07-12T18:19:23Z","updated_at":"2013-07-12T18:39:54Z","name":"Whirlpool
113
+ WOS92EC0AS","slug":"whirlpool-wos92ec0as","_type":"Appliances::MajorAppliances::Oven","types":[],"msrp":1699.0,"article_ids":["51e04d9df6e59c9b160000a0"],"website_ids":["50e669d7bd028648e000002b"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":null,"brand_id":"50f9ed77bd0286638e0001c5","model":"","resource_uri":"/products/whirlpool-wos92ec0as","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"is_primary_product":true,"attachments":[{"id":"51e04b2a45cfff2661000008","created_at":"2013-07-12T18:30:02Z","updated_at":"2013-07-12T18:34:02Z","name":"Front.jpg","type":"file","tags":["Front","vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s50x50_Front.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s150x150_Front.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s200x75_Front.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s250x250_Front.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x150_Front.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s300x112_Front.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s500x500_Front.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x400_Front.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s600x600_Front.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s630x235_Front.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x400_Front.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x350_Front.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/s940x110_Front.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c716e89b01b25382029d405984524e2bd7e69bb6/Front.jpg","file_size":92228,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e04b2a45cfff2661000008","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04b2a45cfff2661000008"}}}],"bulk_uploads":[{"id":"51e04b25c2998eec590000b2","created_at":"2013-07-12T18:29:57Z","updated_at":"2013-07-12T18:29:57Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/-qf2cZ8tveO3X8fZHG2tKg/untitled
114
+ folder.zip","tags":"","status":"creating","article_id":null,"product_id":"51e048ab0ecba0abc8000036","attachment_ids":["51e04b2745cfff2661000002","51e04b2845cfff2661000003","51e04b2845cfff2661000004","51e04b2945cfff2661000005","51e04b2945cfff2661000006","51e04b2a45cfff2661000007","51e04b2a45cfff2661000008","51e04b2a45cfff2661000009","51e04b2b45cfff266100000a","51e04b2b45cfff266100000b"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e04b25c2998eec590000b2","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e04b25c2998eec590000b2"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000003","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000003"}}}],"attachments":[{"id":"51e04e8accfde96a7c00009f","created_at":"2013-07-12T18:44:26Z","updated_at":"2013-07-15T20:34:12Z","name":"hero.JPG","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s50x50_Whirlpool_wall_oven_mock_hero.JPG","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s150x150_Whirlpool_wall_oven_mock_hero.JPG","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s200x75_Whirlpool_wall_oven_mock_hero.JPG","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s250x250_Whirlpool_wall_oven_mock_hero.JPG","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x150_Whirlpool_wall_oven_mock_hero.JPG","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s300x112_Whirlpool_wall_oven_mock_hero.JPG","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s500x500_Whirlpool_wall_oven_mock_hero.JPG","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x400_Whirlpool_wall_oven_mock_hero.JPG","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s600x600_Whirlpool_wall_oven_mock_hero.JPG","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s630x235_Whirlpool_wall_oven_mock_hero.JPG","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x400_Whirlpool_wall_oven_mock_hero.JPG","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x350_Whirlpool_wall_oven_mock_hero.JPG","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/s940x110_Whirlpool_wall_oven_mock_hero.JPG","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5ab0f19c4235b83af1bb006999801559f6917561/Whirlpool_wall_oven_mock_hero.JPG","file_size":129727,"content_type":"image/jpeg"},"position":0,"processing":"processing","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e04e8accfde96a7c00009f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e04e8accfde96a7c00009f"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e04d9df6e59c9b160000a0","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e04d9df6e59c9b160000a0"}}},{"id":"51dedd5141b4e3ec2b000218","created_at":"2013-07-11T16:29:06Z","updated_at":"2013-07-16T15:57:34Z","name":"UK
115
+ Woman\u2019s Fridge Explodes, Jar of Rhubarb Chutney Blamed","branch_name":"master","summary":"Fermented
116
+ chutney has been blamed for laying waste to a senior citizen\u2019s kitchen,
117
+ though a volatile refrigerant is the more likely culprit.","meta_description":"","website_ids":["50e669d7bd028648e0000019"],"author_ids":["50fc4eafbd0286d5550b4c99"],"tags":["home-hero1"],"classifications":["feature"],"publish_on":"2013-07-15T15:45:09+00:00","attachment_ids":["51e4193097ecd04193001115","51e419f9946be00d51001166","51e56b81e168201a93000ec1"],"primary_product_id":null,"resource_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","disqus_uri":"/features/uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"uk-woman-s-fridge-explodes-jar-of-rhubarb-chutney-blamed","is_template":false,"is_branch":false,"attachments":[{"id":"51e4193097ecd04193001115","created_at":"2013-07-15T15:45:52Z","updated_at":"2013-07-15T15:46:34Z","name":"Chutney
118
+ Hero","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s50x50_chutney-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s150x150_chutney-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s200x75_chutney-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s250x250_chutney-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x150_chutney-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s300x112_chutney-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s500x500_chutney-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x400_chutney-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s600x600_chutney-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s630x235_chutney-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x400_chutney-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x350_chutney-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/s940x110_chutney-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/356e8df1b775589cfeefc88ae3798f72b7404645/chutney-hero.jpg","file_size":112544,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e4193097ecd04193001115","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4193097ecd04193001115"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dedd5141b4e3ec2b000218","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dedd5141b4e3ec2b000218"}}},{"id":"51cd984553f40ab4d9000049","created_at":"2013-06-28T14:05:57Z","updated_at":"2013-07-17T13:17:51Z","name":"Samsung
119
+ ATIV Smart PC Pro 700T Review","branch_name":"master","summary":"A hybrid
120
+ laptop/tablet that uses the full potential of Windows 8","meta_description":"A
121
+ hybrid laptop/tablet that uses the full potential of Windows 8","website_ids":["50e669d7bd028648e000002f"],"author_ids":["50fc4eafbd0286d5550b4c98"],"tags":["samsung
122
+ ativ","windows 8 ativ","samsung tablet laptop","home-hero1","super-hero5"],"classifications":["review"],"publish_on":"2013-07-15T15:10:10+00:00","attachment_ids":["51defdc9903d89d7b3000001","51defde73947282a5c0007ac","51defe4f6b81be56bb0006ea","51df05e3394728eeef00074f","51df066339472841d800082a","51df068a346e6908160007d5","51df072939472841d8000849","51e40eb0946be0980d000345","51e40f3e946be021920010b2"],"primary_product_id":"51cc4b036f758de1020013fe","resource_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","disqus_uri":"/content/samsung-ativ-smart-pc-pro-700t-review","product_ids":["51cc4b036f758de1020013fe"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"samsung-ativ-smart-pc-pro-700t-review","is_template":false,"is_branch":false,"products":[{"id":"51cc4b036f758de1020013fe","created_at":"2013-06-27T14:24:04Z","updated_at":"2013-07-15T15:31:43Z","name":"Samsung
123
+ ATIV Smart PC Pro 700T","slug":"samsung-ativ-smart-pc-pro-700t","_type":"Electronics::Computers::Laptop","types":[],"msrp":1199.99,"article_ids":["51cd984553f40ab4d9000049"],"website_ids":["50e669d7bd028648e000002f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003bb","brand_id":"50f9ed6fbd0286638e0000b8","model":"","resource_uri":"/products/samsung-ativ-smart-pc-pro-700t","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.71,"ranking":{"total":15,"rank":4,"percentile":74},"rubric":{"id":"50f9ed93bd0286638e0003bb","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-28T22:44:24Z","name":"Laptops
124
+ 2012 Rubric","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003bb","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003bb"}}},"is_primary_product":true,"attachments":[{"id":"51e4140a946be06a130012c5","created_at":"2013-07-15T15:23:54Z","updated_at":"2013-07-15T15:24:40Z","name":"Samsung-ATIV-700T-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s50x50_Samsung-ATIV-700T-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s150x150_Samsung-ATIV-700T-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s200x75_Samsung-ATIV-700T-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s250x250_Samsung-ATIV-700T-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x150_Samsung-ATIV-700T-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s300x112_Samsung-ATIV-700T-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s500x500_Samsung-ATIV-700T-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x400_Samsung-ATIV-700T-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s600x600_Samsung-ATIV-700T-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s630x235_Samsung-ATIV-700T-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x400_Samsung-ATIV-700T-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x350_Samsung-ATIV-700T-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/s940x110_Samsung-ATIV-700T-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7699aced24c8f337d516be2c0b229219cca8ac72/Samsung-ATIV-700T-Vanity.jpg","file_size":98277,"content_type":"image/jpeg"},"position":7,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e4140a946be06a130012c5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e4140a946be06a130012c5"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000004","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000004"}}}],"attachments":[{"id":"51e40eb0946be0980d000345","created_at":"2013-07-15T15:01:04Z","updated_at":"2013-07-15T15:01:33Z","name":"ativ-hero-final-940x400.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s50x50_ativ-hero-final-940x400.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s150x150_ativ-hero-final-940x400.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s200x75_ativ-hero-final-940x400.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s250x250_ativ-hero-final-940x400.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x150_ativ-hero-final-940x400.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s300x112_ativ-hero-final-940x400.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s500x500_ativ-hero-final-940x400.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x400_ativ-hero-final-940x400.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s600x600_ativ-hero-final-940x400.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s630x235_ativ-hero-final-940x400.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x400_ativ-hero-final-940x400.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x350_ativ-hero-final-940x400.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/s940x110_ativ-hero-final-940x400.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/d375d96c40a3875ee13c1a28ae799f9f11d2a4e7/ativ-hero-final-940x400.jpg","file_size":162630,"content_type":"image/jpeg"},"position":7,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e40eb0946be0980d000345","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e40eb0946be0980d000345"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51cd984553f40ab4d9000049","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51cd984553f40ab4d9000049"}}},{"id":"51dc2b7e09f981a999000003","created_at":"2013-07-09T15:25:50Z","updated_at":"2013-07-15T14:58:12Z","name":"Changing
125
+ How We Rate TVs","branch_name":"master","summary":"Our scores are changing.
126
+ Here''s why.","meta_description":"Our scores are changing. Here''s why.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-15T12:58:48+00:00","attachment_ids":[],"primary_product_id":null,"resource_uri":"/features/changing-how-we-rate-tvs","disqus_uri":"/features/changing-how-we-rate-tvs","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"changing-how-we-rate-tvs","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dc2b7e09f981a999000003","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dc2b7e09f981a999000003"}}},{"id":"51e02f8704bff9a86d000037","created_at":"2013-07-12T16:32:08Z","updated_at":"2013-07-12T20:37:21Z","name":"Deal
127
+ Roundup: Wedding Registry Must-Haves","branch_name":"master","summary":"Summer
128
+ is the time for weddings and with so many potentially on your plate, how will
129
+ you know what to purchase?","meta_description":null,"website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000019"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["cuisinart","Macy''s","wedding
130
+ registry","Amazon","Cooking.com","stand mixer","slow cooker","coffee maker"],"classifications":["deal"],"publish_on":"2013-07-12T20:37:21+00:00","attachment_ids":["51e055e1786c88775f0000b4","51e056f1b51116f4670000ab","51e056fcb51116544800008a","51e055f2b511165619000065","51e055f86e8b60406500010b","51e05a08786c884d7f0000e1"],"primary_product_id":null,"resource_uri":"/deals/deal-roundup-wedding-registry-must-haves","disqus_uri":"/deals/deal-roundup-wedding-registry-must-haves","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deal-roundup-wedding-registry-must-haves","is_template":false,"is_branch":false,"attachments":[{"id":"51e05a08786c884d7f0000e1","created_at":"2013-07-12T19:33:28Z","updated_at":"2013-07-12T19:34:10Z","name":"Cuisinart_ice_cream_maker.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s50x50_Cuisinart_ice_cream_maker.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s150x150_Cuisinart_ice_cream_maker.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s200x75_Cuisinart_ice_cream_maker.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s250x250_Cuisinart_ice_cream_maker.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x150_Cuisinart_ice_cream_maker.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s300x112_Cuisinart_ice_cream_maker.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s500x500_Cuisinart_ice_cream_maker.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x400_Cuisinart_ice_cream_maker.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s600x600_Cuisinart_ice_cream_maker.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s630x235_Cuisinart_ice_cream_maker.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x400_Cuisinart_ice_cream_maker.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x350_Cuisinart_ice_cream_maker.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/s940x110_Cuisinart_ice_cream_maker.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3efef229547920fd23df0a876b77bb4a928d9a28/Cuisinart_ice_cream_maker.jpg","file_size":45052,"content_type":"image/jpeg"},"position":5,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e05a08786c884d7f0000e1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e05a08786c884d7f0000e1"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51e02f8704bff9a86d000037","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51e02f8704bff9a86d000037"}}},{"id":"51df1e16435fcedc23000ad3","created_at":"2013-07-11T21:05:26Z","updated_at":"2013-07-15T15:24:59Z","name":"Reviewed.com
131
+ Weekly Roundup: July 12, 2013","branch_name":"master","summary":"We looked
132
+ at a great camera from a lesser-known brand, a Bosch dishwasher, and more.","meta_description":null,"website_ids":["50e669d7bd028648e0000031"],"author_ids":["50fc4e99bd0286d5550b4c17"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T13:00:00+00:00","attachment_ids":["51df2476346e69f882000be3","51e01eab435fceb5fd0010e8","51df24824146740311000e04"],"primary_product_id":null,"resource_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","disqus_uri":"/features/reviewed-com-weekly-roundup-july-12-2013","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"reviewed-com-weekly-roundup-july-12-2013","is_template":false,"is_branch":false,"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51df1e16435fcedc23000ad3","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51df1e16435fcedc23000ad3"}}},{"id":"51dd59fa0637387398000704","created_at":"2013-07-10T12:56:26Z","updated_at":"2013-07-17T13:20:02Z","name":"Sony
133
+ Bravia KDL-50R550A Review","branch_name":"master","summary":"This 50-inch
134
+ LCD from Sony offers media and 3D, but lacks performance power.","meta_description":"This
135
+ 50-inch LCD from Sony offers media and 3D, but lacks performance power.","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eaebd0286d5550b4c95"],"tags":[],"classifications":["review"],"publish_on":"2013-07-12T12:39:33+00:00","attachment_ids":["51e02e3a265255027e000086","51e02e43dbe7d2dc2a000049"],"primary_product_id":"51dd568890ced0d18700073a","resource_uri":"/content/sony-bravia-kdl-50r550a-review","disqus_uri":"/content/sony-bravia-kdl-50r550a-review","product_ids":["51dd568890ced0d18700073a"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"sony-bravia-kdl-50r550a-review","is_template":false,"is_branch":false,"products":[{"id":"51dd568890ced0d18700073a","created_at":"2013-07-10T12:41:44Z","updated_at":"2013-07-15T17:12:06Z","name":"Sony
136
+ Bravia KDL-50R550A","slug":"sony-bravia-kdl-50r550a","_type":"Electronics::Television","types":[],"msrp":999.99,"article_ids":[],"website_ids":["50e669d7bd028648e000000f"],"publish_on":null,"upc":null,"price_grabber_id":null,"rubric_id":"50f9ed93bd0286638e0003a6","brand_id":"50f9ed6fbd0286638e0000b7","model":"","resource_uri":"/products/sony-bravia-kdl-50r550a","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":4.61,"ranking":{"total":106,"rank":97,"percentile":9},"rubric":{"id":"50f9ed93bd0286638e0003a6","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-27T14:00:54Z","name":"TV
137
+ Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a6","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a6"}}},"is_primary_product":true,"attachments":[{"id":"51e02b5cbd47e6771a000021","created_at":"2013-07-12T16:14:20Z","updated_at":"2013-07-12T16:14:50Z","name":"vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s50x50_vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s150x150_vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s200x75_vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s250x250_vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x150_vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s300x112_vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s500x500_vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x400_vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s600x600_vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s630x235_vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x400_vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x350_vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/s940x110_vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0c8fdd2adcd93f7ab0679ba96a1467dd98a3d256/vanity.jpg","file_size":26667,"content_type":"image/jpeg"},"position":10,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e02b5cbd47e6771a000021","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02b5cbd47e6771a000021"}}}],"bulk_uploads":[{"id":"51e0034e435fcea53e00017e","created_at":"2013-07-12T13:23:26Z","updated_at":"2013-07-12T13:23:32Z","url":"https://reviewed-misc.s3.amazonaws.com/direct-upload/1HiA0NKemcCVrXEGaUTgsA/charts.zip","tags":"color","status":"complete","article_id":null,"product_id":"51dd568890ced0d18700073a","attachment_ids":["51e00352b03e90493b000001","51e00352b03e90493b000002","51e00353b03e90493b000003","51e00353b03e90493b000004","51e00353b03e90493b000005"],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/bulk_uploads","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads"},"resource":{"rel":"/api/v1/bulk_uploads/51e0034e435fcea53e00017e","href":"https://the-guide-staging.herokuapp.com/api/v1/bulk_uploads/51e0034e435fcea53e00017e"}}}],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd7c7801411f26000005","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7c7801411f26000005"}}}],"attachments":[{"id":"51e02e3a265255027e000086","created_at":"2013-07-12T16:26:34Z","updated_at":"2013-07-12T19:21:57Z","name":"Hero2400px.jpg","type":"file","tags":["hero","super-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s50x50_Hero2400px.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s150x150_Hero2400px.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s200x75_Hero2400px.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s250x250_Hero2400px.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x150_Hero2400px.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s300x112_Hero2400px.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s500x500_Hero2400px.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x400_Hero2400px.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s600x600_Hero2400px.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s630x235_Hero2400px.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x400_Hero2400px.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x350_Hero2400px.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/s940x110_Hero2400px.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/5a72f8bdf0cfa64b9add81df066aacea08512447/Hero2400px.jpg","file_size":172693,"content_type":"image/jpeg"},"position":0,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e02e3a265255027e000086","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e02e3a265255027e000086"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dd59fa0637387398000704","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dd59fa0637387398000704"}}},{"id":"51dff7a16b81be8ef0000a3d","created_at":"2013-07-12T12:33:37Z","updated_at":"2013-07-12T18:25:19Z","name":"The
138
+ Weekly TV Roundup: July 12","branch_name":"master","summary":"It''s TV time
139
+ again!","meta_description":"It''s TV time again!","website_ids":["50e669d7bd028648e000000f"],"author_ids":["50fc4eafbd0286d5550b4c9b"],"tags":[],"classifications":["feature"],"publish_on":"2013-07-12T12:30:56+00:00","attachment_ids":["51e0269941b4e3a10d00069c","51e02d7ccd6634b64100002f","51e046170ecba0d9f0000023"],"primary_product_id":null,"resource_uri":"/features/the-weekly-tv-roundup-july-12","disqus_uri":"/features/the-weekly-tv-roundup-july-12","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"the-weekly-tv-roundup-july-12","is_template":false,"is_branch":false,"attachments":[{"id":"51e046170ecba0d9f0000023","created_at":"2013-07-12T18:08:23Z","updated_at":"2013-07-12T18:08:37Z","name":"TV_Roundup_july12.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s50x50_TV_Roundup_july12.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s150x150_TV_Roundup_july12.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s200x75_TV_Roundup_july12.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s250x250_TV_Roundup_july12.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x150_TV_Roundup_july12.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s300x112_TV_Roundup_july12.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s500x500_TV_Roundup_july12.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x400_TV_Roundup_july12.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s600x600_TV_Roundup_july12.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s630x235_TV_Roundup_july12.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x400_TV_Roundup_july12.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x350_TV_Roundup_july12.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/s940x110_TV_Roundup_july12.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/42fd883590da94c58c49aaa4ebb24047db76d08f/TV_Roundup_july12.jpg","file_size":115087,"content_type":"image/jpeg"},"position":2,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51e046170ecba0d9f0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51e046170ecba0d9f0000023"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51dff7a16b81be8ef0000a3d","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51dff7a16b81be8ef0000a3d"}}},{"id":"51decd888c7af461230027e9","created_at":"2013-07-11T15:21:44Z","updated_at":"2013-07-16T14:32:10Z","name":"Deals:
140
+ Never Leave Your Living Room Again","branch_name":"master","summary":"As the
141
+ temperatures outside swell, the need to stay inside gets stronger. Entertain
142
+ yourself this summer with deals on Google TVs and more.","meta_description":null,"website_ids":["50e669d7bd028648e000000f"],"author_ids":["513608d6182c5fb1b10003e5"],"tags":["LG","Google","TV","smart","video
143
+ game","console","Xbox 360","deals"],"classifications":["deal"],"publish_on":"2013-07-11T20:53:19+00:00","attachment_ids":["51dedab4ce7281fd6f000001","51dedfa83947282a5c000328","51dedabe346e69158c0001f7","51dedac4120b11149300020c","51e01a13120b11ddb60004da"],"primary_product_id":null,"resource_uri":"/deals/deals-never-leave-your-living-room-again","disqus_uri":"/deals/deals-never-leave-your-living-room-again","product_ids":[],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":null,"slug":"deals-never-leave-your-living-room-again","is_template":false,"is_branch":false,"attachments":[{"id":"51dedac4120b11149300020c","created_at":"2013-07-11T16:18:12Z","updated_at":"2013-07-11T19:55:56Z","name":"LG_GA6400_TVI.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s50x50_LG_GA6400_TVI.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s150x150_LG_GA6400_TVI.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s200x75_LG_GA6400_TVI.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s250x250_LG_GA6400_TVI.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x150_LG_GA6400_TVI.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s300x112_LG_GA6400_TVI.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s500x500_LG_GA6400_TVI.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x400_LG_GA6400_TVI.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s600x600_LG_GA6400_TVI.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s630x235_LG_GA6400_TVI.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x400_LG_GA6400_TVI.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x350_LG_GA6400_TVI.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/s940x110_LG_GA6400_TVI.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/01749d3a472caeefc5d6fc2ac84d4e1aacd192f9/LG_GA6400_TVI.jpg","file_size":21420,"content_type":"image/jpeg"},"position":3,"processing":"complete","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/51dedac4120b11149300020c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/51dedac4120b11149300020c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/articles","href":"https://the-guide-staging.herokuapp.com/api/v1/articles"},"resource":{"rel":"/api/v1/articles/51decd888c7af461230027e9","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/51decd888c7af461230027e9"}}}]}'
153
144
  http_version:
154
- recorded_at: Thu, 27 Jun 2013 15:43:24 GMT
155
- recorded_with: VCR 2.5.0
145
+ recorded_at: Mon, 29 Jul 2013 21:25:10 GMT
146
+ recorded_with: VCR 2.4.0
@@ -8,9 +8,9 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.8.7
11
+ - Faraday v0.8.6
12
12
  X-Reviewed-Authorization:
13
- - 38e397252ec670ec441733a95204f141
13
+ - 5bbeff36f992bbb2f6dcaf37f3e630d8
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
@@ -36,19 +36,19 @@ http_interactions:
36
36
  Content-Type:
37
37
  - application/json; charset=utf-8
38
38
  Date:
39
- - Thu, 27 Jun 2013 15:43:08 GMT
40
- Etag:
41
- - '"e0aa021e21dddbd6d8cecec71e9cf564"'
39
+ - Mon, 29 Jul 2013 21:25:10 GMT
42
40
  Status:
43
41
  - 200 OK
44
42
  Strict-Transport-Security:
45
43
  - max-age=31536000
46
44
  Vary:
47
45
  - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
48
  X-Request-Id:
49
- - 48b129082542b64498b82debb8b99f42
49
+ - ac7683929e31cfc7a25d642f118cf31d
50
50
  X-Runtime:
51
- - '0.020183'
51
+ - '0.225620'
52
52
  X-Ua-Compatible:
53
53
  - IE=Edge,chrome=1
54
54
  Transfer-Encoding:
@@ -57,198 +57,195 @@ http_interactions:
57
57
  - keep-alive
58
58
  body:
59
59
  encoding: UTF-8
60
- string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-03-07T22:08:45Z","name":"Big
61
- Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"Super-simple
62
- charcoal grill has good performance. ","meta_description":null,"website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4e94bd0286d5550b4bf8"],"tags":[],"classifications":["review"],"publish_on":"2011-11-29T20:17:00+00:00","attachment_ids":["50fb2e71bd0286d5550135b3","50fb2e71bd0286d5550135cb","50fb2e71bd0286d5550135cc","50fb2e72bd0286d5550135d0","50fb2e72bd0286d5550135d1","50fb2e72bd0286d5550135d5","50fb2e72bd0286d5550135d6","50fb2e74bd0286d5550135e4"],"primary_product_id":"50fa2cfc96ab5860160c6ac2","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review.htm","disqus_uri":"Big-Green-Egg-Medium-Charcoal-Grill-Review","product_ids":["50fa2cfc96ab5860160c6ac2","50fa2ce096ab5860160c6a4b","50fa2cfd96ab5860160c6ac7","50fa2ced96ab5860160c6a7f"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-10-12T19:31:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"50fb2e70bd0286d5550135a8","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"50fb2e70bd0286d5550135a9","name":"Introduction","body":"The
60
+ string: '{"id":"50fb2e6fbd0286d5550135a2","created_at":"2011-11-29T20:18:15Z","updated_at":"2013-04-30T16:00:04Z","name":"Big
61
+ Green Egg Medium Charcoal Grill Review","branch_name":"master","summary":"This
62
+ super-simple charcoal grill has good performance. ","meta_description":"","website_ids":["50e669d7bd028648e0000023"],"author_ids":["50fc4e94bd0286d5550b4bf8"],"tags":[],"classifications":["review"],"publish_on":"2011-11-29T20:17:00+00:00","attachment_ids":["50fb2e71bd0286d5550135b3","50fb2e71bd0286d5550135cb","50fb2e71bd0286d5550135cc","50fb2e72bd0286d5550135d0","50fb2e72bd0286d5550135d1","50fb2e72bd0286d5550135d5","50fb2e72bd0286d5550135d6","50fb2e74bd0286d5550135e4","515efe2d12629bec1d0004ab"],"primary_product_id":"50fa2cfc96ab5860160c6ac2","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review.htm","disqus_uri":"Big-Green-Egg-Medium-Charcoal-Grill-Review","product_ids":["50fa2ce096ab5860160c6a4b","50fa2ced96ab5860160c6a7f","50fa2cfc96ab5860160c6ac2","50fa2cfd96ab5860160c6ac7"],"related_article_ids":[],"price_grabber_id":null,"publishable":true,"publishable_on":"2011-09-28T15:49:00+00:00","slug":"big-green-egg-medium-charcoal-grill-review.htm","is_template":false,"is_branch":false,"deals":[],"related_articles":[],"pages":[{"id":"517fea84f2a91052ea00191a","name":"Introduction","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/introduction","slug":"introduction","sections":[{"id":"517fea84f2a91052ea001922","name":"Introduction","body":"The
63
63
  {{product.name}} is a classic charcoal grill with a simple design: a ceramic
64
64
  vessel that holds a load of charcoal. While the design is simple, don''t think
65
65
  that it offers generic performance as well. The {{product.name}} will heat
66
- your food up quick and maintain consistent high-temperature cooking.","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135ab","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"50fb2e71bd0286d5550135ad","name":"Product
67
- Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Front
66
+ your food up quick and maintain consistent high-temperature cooking.","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191b","name":"Design","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/design","slug":"design","sections":[{"id":"517fea84f2a91052ea001923","name":"Product
67
+ Tour","body":"{{section_header}}{{section.name}}{{/section_header}}\nThe Big
68
+ Green Egg Medium is a large, heavy and well constructed charcoal grill.\n\n\n\n{{product.attachments[''Front
68
69
  Photo'']}} \n \n \n{{product.attachments[''Side Photo'']}} \n \n \n{{product.attachments[''Lid
69
- Open Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ae","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
70
- 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135af","name":"Main
70
+ Open Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001924","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Controls
71
+ 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls 2 Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001925","name":"Main
71
72
  Grilling Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Main
72
- Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b0","name":"Warming
73
- Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Warming
74
- Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b2","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
75
- Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135b4","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"50fb2e71bd0286d5550135b6","name":"Heatup
73
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001926","name":"Thermometer","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Thermometer
74
+ Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191c","name":"Performance","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/performance","slug":"performance","sections":[{"id":"517fea84f2a91052ea001927","name":"Heatup
76
75
  Time","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
77
76
  {{product.model}} was a very quick grill to heat up; we found that it could
78
77
  reach our low temperature target of 325°F in just 35 seconds and our
79
78
  high temperature target of 625°F in just 36 seconds. We reached these
80
79
  two settings by adjusting the air vents on the lid and on the bottom of the
81
80
  grill body: the low fire setting by half opening the vent, and the high fire
82
- setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b7","name":"Low
81
+ setting by completely opening it.\n\n\n\n{{article.attachments[''table-b297567d41f58254691baba562ae65d34cb1c3f0.csv'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001928","name":"Low
83
82
  Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nRunning
84
83
  at our low temperature target of about 325°F, we found that the grill
85
84
  would take just over 11 minutes to cook our test patties, which is fairly
86
85
  fast for a grill of this type. \n\n\n\n\n\n{{comparison_bars title=\"Low
87
86
  Fire Performance\", attribute=\"Low Temp Performance Rating\", xLabel=\"Cooking
88
- Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b8","name":"Low
87
+ Performance Score\"}}\n\n","notes":""},{"id":"517fea84f2a91052ea001929","name":"Low
89
88
  Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
90
89
  also look at the consistency of the temperature across the cooking surface,
91
90
  and the {{product.model}} did well here, producing uniform temperatures across
92
91
  the cooking area. We did find that it was a little hotter at one edge, but
93
92
  again, that is not unusual for a charcoal grill.\n\n\n\n{{product.attachments[''Low
94
- Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135b9","name":"Low
93
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192a","name":"Low
95
94
  Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
96
95
  temperature also remained consistent over time, with only moderate variations
97
96
  in the temperature. This should mean good, even cooking of food\n\n\n\n{{product.attachments[''Low
98
- Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135ba","name":"High
97
+ Temp Consistency Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192b","name":"High
99
98
  Fire Cooking Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nOpening
100
99
  the air vents on the base and lid of the grill increased the temperature,
101
100
  and we found equally good performance from this grill cooking food at these
102
101
  higher temperatures. Here, the grill was able to cook our test patties in
103
102
  just over 8 minutes. \n\n\n\n\n\n{{comparison_bars title=\"High Fire Cooking
104
103
  Performance\", attribute=\"High Temp Performance Rating\", xLabel=\"Cooking
105
- Performance Score\"}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bb","name":"High
104
+ Performance Score\"}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192c","name":"High
106
105
  Temperature Uniformity","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
107
106
  did find that the temperature across the cooking area was a lot less consistent
108
107
  here, though; the extra flow of air from the open vents seems to create more
109
108
  hot zones, especially in the center of the cooking grate, which was nearly
110
109
  200°F hotter than close to the edges.\n\n\n\n{{product.attachments[''High
111
- Temp Uniformity Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bc","name":"High
110
+ Temp Uniformity Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192d","name":"High
112
111
  Temperature Consistency","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
113
112
  temperature also varied over time, with the temperature rising and falling
114
113
  on the cooking grate somewhat more often as the fire rose and fell than we
115
- like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135be","name":"Case
114
+ like to see. \n\n\n\n{{product.attachments[''High Temp Consistency Image'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192e","name":"Case
116
115
  & Handle Temperature","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAlthough
117
116
  the grill body got rather hot (rising to a toasty 300°F), the handle
118
117
  that you use to lift the lid remained cool; even after running the grill for
119
118
  a full hour, this wooden handle didn''t go much above 80°F, which means
120
- that it is safe and comfortable to use. \n\n\n\n{{product.manufacturer_specs['''']}}Handle
121
- Photo 1\" /> \n \nThe image below was taken with an infrared camera to
122
- show the heat levels of the lid. The numbers at the bottom indicate the temperature
123
- scale. \n{{product.attachments[''IR Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135bf","name":"Output
119
+ that it is safe and comfortable to use. \n\n\n\n \n \nThe image below was
120
+ taken with an infrared camera to show the heat levels of the lid. The numbers
121
+ at the bottom indicate the temperature scale. \n{{product.attachments[''IR
122
+ Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea00192f","name":"Output
124
123
  & Fuel Life","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
125
124
  don’t measure the BTU/Hr output of charcoal grills, but we did find
126
125
  that this grill can produce a lot of heat with a large load of charcoal onboard.
127
126
  It also retains heat well: the body of the grill remains very warm for several
128
- hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135c0","name":"Features
129
- & Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"50fb2e71bd0286d5550135c2","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
127
+ hours after the charcoal has run out.\n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191d","name":"Features
128
+ & Usability","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/features-and-usability","slug":"features-and-usability","sections":[{"id":"517fea84f2a91052ea001930","name":"Controls","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
130
129
  controls on this grill are basic, to put it mildly: you control the temperature
131
130
  by opening and closing vents on the base of the grill body and the lid. Open
132
131
  the vents, and more air rushes through to the charcoal fuel, leading to a
133
132
  higher temperature. \n\n\n\n{{product.attachments[''Controls 1 Photo'']}} \n \n \n\n\n{{product.attachments[''Controls
134
- 2 Photo'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c3","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
133
+ 2 Photo'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001931","name":"Fuel","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
135
134
  {{product.model}} uses charcoal, which fits into the space below the grate.\n\n\n\n{{product.attachments[''Fuel
136
- Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c4","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
137
- is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c5","name":"Cooking
135
+ Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001932","name":"Lighter/Ignition","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
136
+ is no lighter on this grill, so you have to ignite the charcoal yourself.\n\n\n\n","notes":""},{"id":"517fea84f2a91052ea001933","name":"Cooking
138
137
  Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThe
139
138
  cooking area is rather small: just 177 square inches. In our tests, we were
140
139
  only able to fit two of our test patties onto this space, so that might be
141
140
  a big problem for large families or party use. If you want to cook a lot of
142
141
  food at once, you should look at a gas grill with a larger cooking area, or
143
142
  one of the larger Big Green Egg models that offers more space to cook.\n\n\n\n{{product.attachments[''Main
144
- Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c6","name":"Warming
143
+ Grilling Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001934","name":"Warming
145
144
  Area","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nThere
146
145
  is no warming area on this grill.\n\n\n\n{{product.attachments[''Warming Area
147
- Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c7","name":"Other
146
+ Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001935","name":"Other
148
147
  Areas","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nNo
149
148
  side areas or other places to put food before or after cooking are included.
150
149
  Big Green Egg does offer a number of shelves that clip onto the side of the
151
150
  grill, as well as a range of wooden tables designed to hold the Big Green
152
151
  Egg medium grill. These do cost extra, though. \n\n\n\n{{product.attachments[''Side
153
- Area Photo 1'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c8","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
152
+ Area Photo 1'']}}\n\n","notes":""},{"id":"517fea84f2a91052ea001936","name":"Cleanup","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nCleaning
154
153
  up the grill is easy; the cooking grate lifts out for easy cleaning, although
155
154
  the cast iron is not suitable for dishwashing. You have to scoop out the ash
156
155
  from the charcoal, as there is no way to remove it from underneath. \n\n\n\n{{product.attachments[''Grease
157
156
  Trap Photo 1'']}} \n \n \n{{product.attachments[''Cleanup Photo 1'']}}{{product.attachments[''Cleanup
158
- Photo 2'']}}\n\n","notes":""},{"id":"50fb2e71bd0286d5550135c9","name":"Other
159
- Features","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n\n\n{{product.attachments[''Other
160
- Features Photo 1'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e71bd0286d5550135cd","name":"Weber Performer
161
- Charcoal Grill Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/weber-performer-charcoal-grill-comparison","slug":"weber-performer-charcoal-grill-comparison","sections":[{"id":"50fb2e71bd0286d5550135cf","name":"Comparison
157
+ Photo 2'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191e","name":"Weber Performer
158
+ Charcoal Grill Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/weber-performer-charcoal-grill-comparison","slug":"weber-performer-charcoal-grill-comparison","sections":[{"id":"517fea84f2a91052ea001937","name":"Comparison
162
159
  Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
163
160
  of these grills use charcoal fuel, but the Weber offers the relative luxury
164
161
  of a gas-assisted starter, and has a much larger cooking area. The Big Green
165
162
  Egg is more consistent, though, and has a simple, straightforward design that
166
- will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d2","name":"Primo
167
- Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"50fb2e72bd0286d5550135d4","name":"Comparison
163
+ will appeal to charcoal purists. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea00191f","name":"Primo
164
+ Kamado Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/primo-kamado-comparison","slug":"primo-kamado-comparison","sections":[{"id":"517fea84f2a91052ea001938","name":"Comparison
168
165
  Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nBoth
169
166
  of these grills offer the same simple, straightforward design to grilling,
170
167
  using charcoal fuel and not offering any bells or whistles. The Big Green
171
168
  Egg feels better constructed, though, and more likely to stand up to heavy
172
169
  use and weather. It is also better finished, with some nice touches like a
173
170
  wooden handle that stays cooler and a better seal around the lid that keeps
174
- the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135d7","name":"Kenmore
175
- S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"50fb2e72bd0286d5550135d9","name":"Comparison
171
+ the heat in. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea001920","name":"Kenmore
172
+ S3218AR Comparison","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/kenmore-s3218ar-comparison","slug":"kenmore-s3218ar-comparison","sections":[{"id":"517fea84f2a91052ea001939","name":"Comparison
176
173
  Overview","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\n{{article.attachments[''table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv'']}}\n\nThe
177
174
  eternal battle of the grill purists is here: charcoal vs gas. The charcoal
178
175
  fuel of the Big Green Egg produces a more natural heat, but takes longer to
179
176
  get running when you include the time to load and prep the grill with fuel).
180
177
  The Kenmore also has more features, with a side burner and a more controllable
181
178
  heat level. But in the end, the choice comes down to which you prefer to cook
182
- with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":null}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"50fb2e72bd0286d5550135da","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"50fb2e72bd0286d5550135dc","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
179
+ with: charcoal or gas. \n\n{{article.attachments[''table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv'']}}\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}},{"id":"517fea84f2a91052ea001921","name":"Conclusion","resource_uri":"/content/big-green-egg-medium-charcoal-grill-review/conclusion","slug":"conclusion","sections":[{"id":"517fea84f2a91052ea00193a","name":"Performance","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nWe
183
180
  found good performance from the Big Green Egg, with short cooking times and
184
181
  uniform temperatures. We did find that the temperatures did vary somewhat
185
182
  with the vents open and the grill running at maximum, but this didn''t seem
186
183
  to be a problem when we cooked our test dishes. Our only major issue here
187
184
  was the fact that the cooking area is very small; we were only able to get
188
- two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"50fb2e72bd0286d5550135dd","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
185
+ two test patties onto it at a time. \n\n\n\n","notes":""},{"id":"517fea84f2a91052ea00193b","name":"Usability","body":"{{section_header}}{{section.name}}{{/section_header}}\n\n\nAt
189
186
  the risk of throwing out a cliche, the {{product.brand.name}} is so simple,
190
187
  even a caveman could use it. Using the grill just involves loading it with
191
188
  charcoal, firing it up and throwing the food onto the grill. As long as the
192
189
  caveman hasn''t grown accustomed to things like lighters, side burners and
193
190
  lights, though: this grill eschews these for a more straightforward design.
194
- \n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa2ce096ab5860160c6a4b","created_at":"2011-09-28T15:42:10Z","updated_at":"2013-03-14T14:36:39Z","name":"Weber Performer
191
+ \n\n\n\n","notes":""}],"permissions":{"read":true,"create":false,"update":false,"destroy":false}}],"products":[{"id":"50fa2ce096ab5860160c6a4b","created_at":"2011-09-28T15:42:10Z","updated_at":"2013-05-21T01:03:02Z","name":"Weber Performer
195
192
  Charcoal Grill","slug":"weber-performer-charcoal-grill","_type":"Home::Grills::Charcoal","types":["Natural
196
193
  Gas"],"msrp":null,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-09-28T15:49:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed78bd0286638e0001f2","model":"Charcoal
197
- Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":0.1,"ranking":{"total":3,"rank":3,"percentile":0},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
198
- Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa36a0bd0286ee4a03a686","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a687","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a688","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a689","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68a","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68b","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68c","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa36a0bd0286ee4a03a68d","name":"Fuel","value":["Natural
194
+ Grill","resource_uri":"/products/weber-performer-charcoal-grill","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":7.44,"ranking":{"total":5,"rank":3,"percentile":40},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
195
+ Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"519a5485b4623863540005c1","name":"brand_name","value":"Performer","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c2","name":"manufacturer_name","value":"Weber","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c3","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c4","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c5","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c6","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c7","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a5485b4623863540005c8","name":"Fuel","value":["Natural
199
196
  Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
200
197
  Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
201
- (adaptor sold separately)"]},{"id":"50fa36a0bd0286ee4a03a68e","name":"Install
202
- Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a68f","name":"Burners","value":1,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a690","name":"Total
203
- cooking area","value":363,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a691","name":"Height","value":40.0,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a692","name":"Width","value":50.25,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a693","name":"Depth","value":28.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa36a0bd0286ee4a03a694","name":"Finish
204
- or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a695","name":"Control
205
- Dials","value":0,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa36a0bd0286ee4a03a696","name":"Ignition
198
+ (adaptor sold separately)"]},{"id":"519a5485b4623863540005c9","name":"Install
199
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005ca","name":"Burners","value":"1","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cb","name":"Total
200
+ cooking area","value":"363","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cc","name":"Height","value":"40","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cd","name":"Width","value":"50.25","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005ce","name":"Depth","value":"28.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a5485b4623863540005cf","name":"Finish
201
+ or Color","value":"Black","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"519a5485b4623863540005d0","name":"Control
202
+ Dials","value":"0","value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"519a5485b4623863540005d1","name":"Ignition
206
203
  type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
207
- Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa36a0bd0286ee4a03a697","name":"Side
208
- Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa36a0bd0286ee4a03a698","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce120bd0286f12a01075c","created_at":"2013-01-21T06:33:04Z","updated_at":"2013-01-21T06:33:04Z","name":"Weber-Performer-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s50x50_Weber-Performer-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s150x150_Weber-Performer-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s250x250_Weber-Performer-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x150_Weber-Performer-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x112_Weber-Performer-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s500x500_Weber-Performer-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x400_Weber-Performer-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x600_Weber-Performer-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x400_Weber-Performer-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x350_Weber-Performer-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x110_Weber-Performer-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg","file_size":33646,"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/50fce120bd0286f12a01075c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce120bd0286f12a01075c"}}}],"brand":{"id":"50f9ed78bd0286638e0001f2","created_at":"2011-09-21T14:57:52Z","updated_at":"2013-01-19T00:49:04Z","name":"Weber","slug":"weber","url":null,"resource_uri":"/products?brand=weber","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/01545cd3e6b182be8c6cdabccbdcb877bba2cf9a/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed78bd0286638e0001f2","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed78bd0286638e0001f2"}}},"awards":[],"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/51cc5d89f82dc7b9e000007b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d89f82dc7b9e000007b"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-03-14T14:36:44Z","name":"Kenmore
209
- S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-05T17:10:00+00:00","upc":null,"price_grabber_id":"883339143","rubric_id":"50f9ed93bd0286638e0003b4","brand_id":"50f9ed77bd0286638e0001c9","model":"S3218AR","resource_uri":"/products/kenmore-s3218ar","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":3.27,"ranking":{"total":7,"rank":6,"percentile":15},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
210
- Gas Grill 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/50f9ed93bd0286638e0003b4","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b4"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa369bbd0286ee4a039bed","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bee","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bef","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa369bbd0286ee4a039bf4","name":"Fuel","value":["LP
204
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"519a5485b4623863540005d2","name":"Side
205
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a5485b4623863540005d3","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce120bd0286f12a01075c","created_at":"2013-01-21T06:33:04Z","updated_at":"2013-01-21T06:33:04Z","name":"Weber-Performer-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s50x50_Weber-Performer-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s150x150_Weber-Performer-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s200x75_Weber-Performer-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s250x250_Weber-Performer-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x150_Weber-Performer-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s300x112_Weber-Performer-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s500x500_Weber-Performer-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x400_Weber-Performer-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s600x600_Weber-Performer-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s630x235_Weber-Performer-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x400_Weber-Performer-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x350_Weber-Performer-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/s940x110_Weber-Performer-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/a75898a3eeb010e96a73f5c146bc587abb775d5a/Weber-Performer-Vanity.jpg","file_size":33646,"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/50fce120bd0286f12a01075c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce120bd0286f12a01075c"}}}],"brand":{"id":"50f9ed78bd0286638e0001f2","created_at":"2011-09-21T14:57:52Z","updated_at":"2013-01-19T00:49:04Z","name":"Weber","slug":"weber","url":null,"resource_uri":"/products?brand=weber","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grills.reviewed.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/01545cd3e6b182be8c6cdabccbdcb877bba2cf9a/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed78bd0286638e0001f2","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed78bd0286638e0001f2"}}},"awards":[],"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/51f6dd7640a0cedcec000006","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7640a0cedcec000006"}}},{"id":"50fa2ced96ab5860160c6a7f","created_at":"2011-10-05T17:14:10Z","updated_at":"2013-05-23T15:29:42Z","name":"Kenmore
206
+ S3218AR","slug":"kenmore-s3218ar","_type":"Home::Grills::Gas","types":["Propane"],"msrp":null,"article_ids":["50fb2e47bd0286d55501334a","50fb2e4cbd0286d55501338d","50fb2e50bd0286d5550133d0","50fb2e63bd0286d5550134dd","50fb2e6fbd0286d5550135a2","50fc4348bd0286d5550b0efb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"upc":null,"price_grabber_id":"883339143","rubric_id":"50f9ed93bd0286638e0003b4","brand_id":"50f9ed77bd0286638e0001c9","model":"S3218AR","resource_uri":"/products/kenmore-s3218ar","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":9.37,"ranking":{"total":15,"rank":5,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b4","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
207
+ Gas Grill 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/50f9ed93bd0286638e0003b4","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b4"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"517edd730bf4957d16002055","name":"brand_name","value":"(Kenmore)","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002056","name":"manufacturer_name","value":"Kenmore","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002057","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002058","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d16002059","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205a","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205b","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517edd730bf4957d1600205c","name":"Fuel","value":["LP
211
208
  Gas"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
212
209
  Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
213
- (adaptor sold separately)"]},{"id":"50fa369bbd0286ee4a039bf5","name":"Install
214
- Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf6","name":"Burners","value":5,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf7","name":"BTU
215
- Output (total)","value":85000,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf8","name":"Total
216
- cooking area","value":784,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bf9","name":"Primary
217
- cooking area","value":400,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfa","name":"Warming
218
- rack area","value":290,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfb","name":"Height","value":60.8,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfc","name":"Width","value":48.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfd","name":"Depth","value":24.6,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa369bbd0286ee4a039bfe","name":"Finish
219
- or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039bff","name":"Control
220
- Dials","value":7,"value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"50fa369bbd0286ee4a039c00","name":"Ignition
210
+ (adaptor sold separately)"]},{"id":"517edd730bf4957d1600205d","name":"Install
211
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d1600205e","name":"Burners","value":"5","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d1600205f","name":"BTU
212
+ Output (total)","value":"85000","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002060","name":"Total
213
+ cooking area","value":"784","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002061","name":"Primary
214
+ cooking area","value":"400","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002062","name":"Warming
215
+ rack area","value":"290","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002063","name":"Height","value":"60.8","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002064","name":"Width","value":"48.6","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002065","name":"Depth","value":"24.6","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517edd730bf4957d16002066","name":"Finish
216
+ or Color","value":"Red / Stainless","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"517edd730bf4957d16002067","name":"Control
217
+ Dials","value":"7","value_units":"","value_type":"Integer","order":0,"options":["Electricity"]},{"id":"517edd730bf4957d16002068","name":"Ignition
221
218
  type","value":"Auto Electronic","value_units":"","value_type":"String","order":0,"options":["Push-button
222
- Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa369bbd0286ee4a039c01","name":"Side
223
- Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa369bbd0286ee4a039c02","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce11fbd02860b13010754","created_at":"2013-01-21T06:33:03Z","updated_at":"2013-01-21T06:33:03Z","name":"Kenmore-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s50x50_Kenmore-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s150x150_Kenmore-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s250x250_Kenmore-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x150_Kenmore-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x112_Kenmore-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s500x500_Kenmore-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x400_Kenmore-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x600_Kenmore-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x400_Kenmore-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x350_Kenmore-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x110_Kenmore-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg","file_size":32529,"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/50fce11fbd02860b13010754","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce11fbd02860b13010754"}}}],"brand":{"id":"50f9ed77bd0286638e0001c9","created_at":"2011-04-13T15:03:17Z","updated_at":"2013-01-19T00:49:05Z","name":"Kenmore","slug":"kenmore","url":null,"resource_uri":"/products?brand=kenmore","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000021","50e669d7bd028648e0000023","50e669d7bd028648e0000019","50e669d7bd028648e000001b","50e669d7bd028648e000001d"],"websites":[{"code":"RFI","name":"Refrigerators","url":"refrigeratorinfo.com"},{"code":"WDI","name":"Laundry","url":"washerdryerinfo.com"},{"code":"VCI","name":"Vacuums","url":"vacuumcleanerinfo.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashersinfo.com"},{"code":"GRI","name":"Grills","url":"grillsinfo.com"},{"code":"OVI","name":"Ovens","url":"oveninfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/ee5037a5bec182596e7e41a91fa7f9667a9aa658/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed77bd0286638e0001c9","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed77bd0286638e0001c9"}}},"awards":[],"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/51cc5d8af82dc7b9e000007c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8af82dc7b9e000007c"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-03-14T14:36:39Z","name":"Big
224
- Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T18:55:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000215","model":"Medium","resource_uri":"/products/big-green-egg-medium","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.74,"ranking":{"total":3,"rank":2,"percentile":34},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
225
- Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":true,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a0394dd","name":"brand_name","value":"(Big
226
- Green Egg)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394de","name":"manufacturer_name","value":"Big
227
- Green Egg","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394df","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e0","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e1","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e2","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e3","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a0394e4","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
219
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"517edd730bf4957d16002069","name":"Side
220
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517edd730bf4957d1600206a","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]}],"attachments":[{"id":"50fce11fbd02860b13010754","created_at":"2013-01-21T06:33:03Z","updated_at":"2013-01-21T06:33:03Z","name":"Kenmore-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s50x50_Kenmore-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s150x150_Kenmore-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s200x75_Kenmore-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s250x250_Kenmore-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x150_Kenmore-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s300x112_Kenmore-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s500x500_Kenmore-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x400_Kenmore-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s600x600_Kenmore-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s630x235_Kenmore-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x400_Kenmore-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x350_Kenmore-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/s940x110_Kenmore-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b3be76a7d03c4414a123dc6c05c1d303859102bc/Kenmore-Vanity.jpg","file_size":32529,"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/50fce11fbd02860b13010754","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce11fbd02860b13010754"}}}],"brand":{"id":"50f9ed77bd0286638e0001c9","created_at":"2011-04-13T15:03:17Z","updated_at":"2013-01-19T00:49:05Z","name":"Kenmore","slug":"kenmore","url":null,"resource_uri":"/products?brand=kenmore","website_ids":["50e669d7bd028648e000002b","50e669d7bd028648e0000021","50e669d7bd028648e0000023","50e669d7bd028648e0000019","50e669d7bd028648e000001b","50e669d7bd028648e000001d"],"websites":[{"code":"RFI","name":"Refrigerators","url":"refrigerators.reviewed.com"},{"code":"WDI","name":"Laundry","url":"laundry.reviewed.com"},{"code":"VCI","name":"Vacuums","url":"vacuums.reviewed.com"},{"code":"DWI","name":"Dishwashers","url":"dishwashers.reviewed.com"},{"code":"GRI","name":"Grills","url":"grills.reviewed.com"},{"code":"OVI","name":"Ovens","url":"ovens.reviewed.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/ee5037a5bec182596e7e41a91fa7f9667a9aa658/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed77bd0286638e0001c9","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed77bd0286638e0001c9"}}},"awards":[],"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/51f6dd7740a0cedcec000007","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7740a0cedcec000007"}}},{"id":"50fa2cfc96ab5860160c6ac2","created_at":"2011-10-12T18:55:14Z","updated_at":"2013-05-20T16:00:47Z","name":"Big
221
+ Green Egg Medium","slug":"big-green-egg-medium","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":649.0,"article_ids":["50fb2e67bd0286d55501351e","50fb2e6bbd0286d555013560","50fb2e6fbd0286d5550135a2","50fc4345bd0286d5550b0eeb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000215","model":"Medium","resource_uri":"/products/big-green-egg-medium","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":5,"rank":1,"percentile":80},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
222
+ Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":true,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"519a48afd64df212ae0003f2","name":"brand_name","value":"(Big
223
+ Green Egg)","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f3","name":"manufacturer_name","value":"Big
224
+ Green Egg","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f4","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f5","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f6","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f7","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f8","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"519a48afd64df212ae0003f9","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
228
225
  Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
229
- (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a0394e5","name":"Install
230
- Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e6","name":"Total
231
- cooking area","value":177,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a0394e7","name":"Finish
232
- or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a0394e8","name":"Ignition
226
+ (adaptor sold separately)"]},{"id":"519a48afd64df212ae0003fa","name":"Install
227
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a48afd64df212ae0003fb","name":"Total
228
+ cooking area","value":"177","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"519a48afd64df212ae0003fc","name":"Finish
229
+ or Color","value":"Green","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"519a48afd64df212ae0003fd","name":"Ignition
233
230
  type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
234
- Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a0394e9","name":"Side
235
- Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394ea","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a0394eb","name":"Original
236
- Price","value":649.0,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12cbd0286de7b010793","created_at":"2013-01-21T06:33:16Z","updated_at":"2013-01-21T06:33:16Z","name":"MEgg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s50x50_MEgg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s150x150_MEgg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s250x250_MEgg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x150_MEgg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x112_MEgg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s500x500_MEgg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x400_MEgg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x600_MEgg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x400_MEgg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x350_MEgg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x110_MEgg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg","file_size":24813,"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/50fce12cbd0286de7b010793","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12cbd0286de7b010793"}}}],"brand":{"id":"50f9ed79bd0286638e000215","created_at":"2011-10-12T17:05:13Z","updated_at":"2013-01-19T00:49:04Z","name":"Big
237
- Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/c32bb02dc90868b3732566a0274ca535cc59c464/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000215","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000215"}}},"awards":[],"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/51cc5d8af82dc7b9e000007d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8af82dc7b9e000007d"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-03-14T14:36:38Z","name":"Primo
238
- Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":"2011-10-12T19:31:00+00:00","upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000214","model":"Kamado","resource_uri":"/products/primo-kamado","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":10.0,"ranking":{"total":3,"rank":1,"percentile":67},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-21T15:39:18Z","name":"2011
239
- Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"50fa3698bd0286ee4a03952e","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a03952f","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039530","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039531","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039532","name":"manufacturer_text","value":null,"value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039533","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039534","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":[]},{"id":"50fa3698bd0286ee4a039535","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
231
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"519a48afd64df212ae0003fe","name":"Side
232
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a48afd64df212ae0003ff","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"519a48afd64df212ae000400","name":"Original
233
+ Price","value":"649","value_units":"","value_type":"Decimal","order":0,"options":null}],"attachments":[{"id":"50fce12cbd0286de7b010793","created_at":"2013-01-21T06:33:16Z","updated_at":"2013-01-21T06:33:16Z","name":"MEgg.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s50x50_MEgg.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s150x150_MEgg.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s200x75_MEgg.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s250x250_MEgg.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x150_MEgg.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s300x112_MEgg.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s500x500_MEgg.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x400_MEgg.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s600x600_MEgg.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s630x235_MEgg.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x400_MEgg.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x350_MEgg.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/s940x110_MEgg.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/bec0caff763e70d206e53410ca0678172fe5bd28/MEgg.jpg","file_size":24813,"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/50fce12cbd0286de7b010793","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12cbd0286de7b010793"}}}],"brand":{"id":"50f9ed79bd0286638e000215","created_at":"2011-10-12T17:05:13Z","updated_at":"2013-01-19T00:49:04Z","name":"Big
234
+ Green Egg","slug":"big-green-egg","url":null,"resource_uri":"/products?brand=big-green-egg","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grills.reviewed.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/c32bb02dc90868b3732566a0274ca535cc59c464/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000215","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000215"}}},"awards":[],"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/51f6dd7740a0cedcec000008","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7740a0cedcec000008"}}},{"id":"50fa2cfd96ab5860160c6ac7","created_at":"2011-10-12T19:32:52Z","updated_at":"2013-05-21T00:00:13Z","name":"Primo
235
+ Kamado","slug":"primo-kamado","_type":"Home::Grills::Charcoal","types":["Charcoal"],"msrp":829.99,"article_ids":["50fb2e4cbd0286d55501338d","50fb2e5ebd0286d55501349a","50fb2e6fbd0286d5550135a2","50fc4345bd0286d5550b0eeb"],"website_ids":["50e669d7bd028648e0000023"],"publish_on":null,"upc":null,"price_grabber_id":"","rubric_id":"50f9ed93bd0286638e0003b5","brand_id":"50f9ed79bd0286638e000214","model":"Kamado","resource_uri":"/products/primo-kamado","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":5.94,"ranking":{"total":5,"rank":4,"percentile":20},"rubric":{"id":"50f9ed93bd0286638e0003b5","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2011
236
+ Charcoal Grill 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/50f9ed93bd0286638e0003b5","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003b5"}}},"is_primary_product":false,"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"manufacturer_specs":[{"id":"517ede209e2cf26196001f14","name":"brand_name","value":"(Primo)","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f15","name":"manufacturer_name","value":"Primo","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f16","name":"manual_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f17","name":"manual_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f18","name":"manufacturer_text","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f19","name":"manufacturer_url","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f1a","name":"series_name","value":"","value_units":"","value_type":"String","order":0,"options":null},{"id":"517ede209e2cf26196001f1b","name":"Fuel","value":["Charcoal"],"value_units":"","value_type":"MultiListItem","order":0,"options":["LP
240
237
  Gas","Natural Gas","Charcoal","Electricity","Natural Gas (adaptor sold separately)","Propane
241
- (adaptor sold separately)"]},{"id":"50fa3698bd0286ee4a039536","name":"Install
242
- Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039537","name":"Total
243
- cooking area","value":280,"value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039538","name":"Height","value":429.75,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a039539","name":"Width","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953a","name":"Depth","value":21.5,"value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"50fa3698bd0286ee4a03953b","name":"Finish
244
- or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"50fa3698bd0286ee4a03953c","name":"Ignition
238
+ (adaptor sold separately)"]},{"id":"517ede209e2cf26196001f1c","name":"Install
239
+ Type","value":"Freestanding","value_units":"","value_type":"String","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1d","name":"Total
240
+ cooking area","value":"280","value_units":"","value_type":"Integer","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1e","name":"Height","value":"429.75","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f1f","name":"Width","value":"21.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f20","name":"Depth","value":"21.5","value_units":"","value_type":"Decimal","order":0,"options":["Freestanding","Portable","Install"]},{"id":"517ede209e2cf26196001f21","name":"Finish
241
+ or Color","value":"Black Ceramic","value_units":"","value_type":"String","order":0,"options":["Electricity"]},{"id":"517ede209e2cf26196001f22","name":"Ignition
245
242
  type","value":"Manual","value_units":"","value_type":"String","order":0,"options":["Push-button
246
- Electronic","Auto Electronic","Manual","Other"]},{"id":"50fa3698bd0286ee4a03953d","name":"Side
247
- Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953e","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"50fa3698bd0286ee4a03953f","name":"Original
248
- Price","value":829.99,"value_units":"","value_type":"Decimal","order":0,"options":[]}],"attachments":[{"id":"50fce12bbd02862d7701078b","created_at":"2013-01-21T06:33:15Z","updated_at":"2013-01-21T06:33:15Z","name":"Primo-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s50x50_Primo-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s150x150_Primo-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s250x250_Primo-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x150_Primo-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x112_Primo-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s500x500_Primo-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x400_Primo-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x600_Primo-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x400_Primo-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x350_Primo-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x110_Primo-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg","file_size":15587,"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/50fce12bbd02862d7701078b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12bbd02862d7701078b"}}}],"brand":{"id":"50f9ed79bd0286638e000214","created_at":"2011-10-12T17:04:59Z","updated_at":"2013-01-19T00:49:04Z","name":"Primo","slug":"primo","url":null,"resource_uri":"/products?brand=primo","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grillsinfo.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/23f6bdb326780525380b08dcbc9cc0a26385d30c/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000214","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000214"}}},"awards":[],"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/51cc5d8bf82dc7b9e000007e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51cc5d8bf82dc7b9e000007e"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
243
+ Electronic","Auto Electronic","Manual","Other"]},{"id":"517ede209e2cf26196001f23","name":"Side
244
+ Burner","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517ede209e2cf26196001f24","name":"Rotisserie","value":"No","value_units":"","value_type":"String","order":0,"options":["Yes","No"]},{"id":"517ede209e2cf26196001f25","name":"Original
245
+ Price","value":"829.99","value_units":"","value_type":"Decimal","order":0,"options":null}],"attachments":[{"id":"50fce12bbd02862d7701078b","created_at":"2013-01-21T06:33:15Z","updated_at":"2013-01-21T06:33:15Z","name":"Primo-Vanity.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s50x50_Primo-Vanity.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s150x150_Primo-Vanity.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s200x75_Primo-Vanity.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s250x250_Primo-Vanity.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x150_Primo-Vanity.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s300x112_Primo-Vanity.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s500x500_Primo-Vanity.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x400_Primo-Vanity.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s600x600_Primo-Vanity.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s630x235_Primo-Vanity.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x400_Primo-Vanity.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x350_Primo-Vanity.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/s940x110_Primo-Vanity.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ba04802a9967f9b56b0195215524b6e311ccce1a/Primo-Vanity.jpg","file_size":15587,"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/50fce12bbd02862d7701078b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce12bbd02862d7701078b"}}}],"brand":{"id":"50f9ed79bd0286638e000214","created_at":"2011-10-12T17:04:59Z","updated_at":"2013-01-19T00:49:04Z","name":"Primo","slug":"primo","url":null,"resource_uri":"/products?brand=primo","website_ids":["50e669d7bd028648e0000023"],"websites":[{"code":"GRI","name":"Grills","url":"grills.reviewed.com"}],"logo_url":"http://reviewed-staging.s3.amazonaws.com/brand/23f6bdb326780525380b08dcbc9cc0a26385d30c/logo.png","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/brands","href":"https://the-guide-staging.herokuapp.com/api/v1/brands"},"resource":{"rel":"/api/v1/brands/50f9ed79bd0286638e000214","href":"https://the-guide-staging.herokuapp.com/api/v1/brands/50f9ed79bd0286638e000214"}}},"awards":[],"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/51f6dd7740a0cedcec000009","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd7740a0cedcec000009"}}}],"authors":[{"id":"50fc4e94bd0286d5550b4bf8","created_at":"2013-01-20T20:07:48Z","updated_at":"2013-02-13T15:13:52Z","name":"Richard
249
246
  Baguley","title":"Editor","short_bio":"Richard Baguley is a valued contributor
250
247
  to the Reviewed.com family of sites.","long_bio":"Richard Baguley is a valued
251
- contributor to the Reviewed.com family of sites.","slug":"richard-baguley","social":{"email":"","facebook":"","twitter":""},"resource_uri":"/authors/richard-baguley","avatars":{"small":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=48&d=mm","medium":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=128&d=mm","normal":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4e94bd0286d5550b4bf8","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4e94bd0286d5550b4bf8"}}}],"attachments":[{"id":"50fb2e71bd0286d5550135b3","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"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/50fb2e71bd0286d5550135b3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135b3"}}},{"id":"50fb2e71bd0286d5550135cb","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e71bd0286d5550135cb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cb"}}},{"id":"50fb2e71bd0286d5550135cc","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e71bd0286d5550135cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cc"}}},{"id":"50fb2e72bd0286d5550135d0","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d0"}}},{"id":"50fb2e72bd0286d5550135d1","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d1"}}},{"id":"50fb2e72bd0286d5550135d5","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d5"}}},{"id":"50fb2e72bd0286d5550135d6","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d6"}}},{"id":"50fb2e74bd0286d5550135e4","created_at":"2013-01-19T23:38:28Z","updated_at":"2013-01-19T23:38:28Z","name":"BGE-medium-web2.jpg","type":"file","tags":["old-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s50x50_BGE-medium-web2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s150x150_BGE-medium-web2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s250x250_BGE-medium-web2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x150_BGE-medium-web2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x112_BGE-medium-web2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s500x500_BGE-medium-web2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x400_BGE-medium-web2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x600_BGE-medium-web2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x400_BGE-medium-web2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x350_BGE-medium-web2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x110_BGE-medium-web2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg","file_size":81744,"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/50fb2e74bd0286d5550135e4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e74bd0286d5550135e4"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-01-19T06:42:05Z","name":"Grills","url":"grillsinfo.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-03-06T17:19:44Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"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/50fb2e6fbd0286d5550135a2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e6fbd0286d5550135a2"}}}'
248
+ contributor to the Reviewed.com family of sites.","slug":"richard-baguley","social":{"email":"","facebook":"","twitter":""},"resource_uri":"/authors/richard-baguley","avatars":{"small":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=48&d=mm","medium":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?s=128&d=mm","normal":"http://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm"},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/authors","href":"https://the-guide-staging.herokuapp.com/api/v1/authors"},"resource":{"rel":"/api/v1/authors/50fc4e94bd0286d5550b4bf8","href":"https://the-guide-staging.herokuapp.com/api/v1/authors/50fc4e94bd0286d5550b4bf8"}}}],"attachments":[{"id":"50fb2e71bd0286d5550135b3","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s50x50_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s150x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s200x75_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s250x250_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x150_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s300x112_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s500x500_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s600x600_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s630x235_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x400_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x350_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/s940x110_table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/b297567d41f58254691baba562ae65d34cb1c3f0/table-b297567d41f58254691baba562ae65d34cb1c3f0.csv","file_size":152},"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/50fb2e71bd0286d5550135b3","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135b3"}}},{"id":"50fb2e71bd0286d5550135cb","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e71bd0286d5550135cb","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cb"}}},{"id":"50fb2e71bd0286d5550135cc","created_at":"2013-01-19T23:38:25Z","updated_at":"2013-01-19T23:38:25Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e71bd0286d5550135cc","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e71bd0286d5550135cc"}}},{"id":"50fb2e72bd0286d5550135d0","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d0"}}},{"id":"50fb2e72bd0286d5550135d1","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d1","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d1"}}},{"id":"50fb2e72bd0286d5550135d5","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s50x50_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s150x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s200x75_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s250x250_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x150_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s300x112_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s500x500_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s600x600_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s630x235_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x400_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x350_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/s940x110_table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77/table-ac64d870e0ee8793ddf47a4b39eb8eb28d14ee77.csv","file_size":152},"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/50fb2e72bd0286d5550135d5","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d5"}}},{"id":"50fb2e72bd0286d5550135d6","created_at":"2013-01-19T23:38:26Z","updated_at":"2013-01-19T23:38:26Z","name":"table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","type":"file","tags":[],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s50x50_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s150x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s200x75_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s250x250_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x150_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s300x112_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s500x500_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s600x600_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s630x235_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x400_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x350_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/s940x110_table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv"},"caption":null,"alt_text":null,"data":{"content_type":"text/csv","url":"http://reviewed-production.s3.amazonaws.com/attachment/ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea/table-ac1a1a47f44276831e4f1dcb8e6d134fc537b0ea.csv","file_size":2564},"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/50fb2e72bd0286d5550135d6","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e72bd0286d5550135d6"}}},{"id":"50fb2e74bd0286d5550135e4","created_at":"2013-01-19T23:38:28Z","updated_at":"2013-04-09T14:23:59Z","name":"BGE-medium-web2.jpg","type":"file","tags":["home-hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s50x50_BGE-medium-web2.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s150x150_BGE-medium-web2.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s200x75_BGE-medium-web2.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s250x250_BGE-medium-web2.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x150_BGE-medium-web2.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s300x112_BGE-medium-web2.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s500x500_BGE-medium-web2.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x400_BGE-medium-web2.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s600x600_BGE-medium-web2.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s630x235_BGE-medium-web2.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x400_BGE-medium-web2.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x350_BGE-medium-web2.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/s940x110_BGE-medium-web2.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg"},"caption":"","alt_text":"","data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/63583c1baea391b437d54fbee74bc35234ec3ff2/BGE-medium-web2.jpg","file_size":81744,"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/50fb2e74bd0286d5550135e4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fb2e74bd0286d5550135e4"}}},{"id":"515efe2d12629bec1d0004ab","created_at":"2013-04-05T16:39:09Z","updated_at":"2013-04-05T16:39:39Z","name":"medium-hero.jpg","type":"file","tags":["hero"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s50x50_medium-hero.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s150x150_medium-hero.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s200x75_medium-hero.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s250x250_medium-hero.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s300x150_medium-hero.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s300x112_medium-hero.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s500x500_medium-hero.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s600x400_medium-hero.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s600x600_medium-hero.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s630x235_medium-hero.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x400_medium-hero.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x350_medium-hero.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/s940x110_medium-hero.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/medium-hero.jpg"},"caption":"","alt_text":"","data":{"content_type":"image/jpeg","url":"http://reviewed-production.s3.amazonaws.com/attachment/e3e8492d1f4850b4c1c83880e9afbb6adc1172e6/medium-hero.jpg","file_size":124864},"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/515efe2d12629bec1d0004ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/515efe2d12629bec1d0004ab"}}}],"websites":[{"id":"50e669d7bd028648e0000023","created_at":"2013-01-04T05:34:15Z","updated_at":"2013-07-03T20:16:36Z","name":"Grills","url":"grills.reviewed.com","code":"GRI","category":null,"featured_video_id":null,"ad_campaign_group":{"id":"51377ab09f5e85f5a3000484","created_at":"2013-03-06T17:19:44Z","updated_at":"2013-05-13T16:38:12Z","website_id":"50e669d7bd028648e0000023","ad_campaigns":[],"permissions":{"read":false,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/ad_campaign_groups","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups"},"resource":{"rel":"/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484","href":"https://the-guide-staging.herokuapp.com/api/v1/ad_campaign_groups/51377ab09f5e85f5a3000484"}}},"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/websites","href":"https://the-guide-staging.herokuapp.com/api/v1/websites"},"resource":{"rel":"/api/v1/websites/50e669d7bd028648e0000023","href":"https://the-guide-staging.herokuapp.com/api/v1/websites/50e669d7bd028648e0000023"}}}],"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/50fb2e6fbd0286d5550135a2","href":"https://the-guide-staging.herokuapp.com/api/v1/articles/50fb2e6fbd0286d5550135a2"}}}'
252
249
  http_version:
253
- recorded_at: Thu, 27 Jun 2013 15:43:09 GMT
254
- recorded_with: VCR 2.5.0
250
+ recorded_at: Mon, 29 Jul 2013 21:25:10 GMT
251
+ recorded_with: VCR 2.4.0