reviewed 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/lib/faraday/cache.rb +13 -11
  3. data/lib/reviewed/cache.rb +18 -0
  4. data/lib/reviewed/version.rb +1 -1
  5. data/reviewed.gemspec +1 -1
  6. data/spec/article_spec.rb +1 -1
  7. data/spec/client_spec.rb +1 -1
  8. data/spec/collection_spec.rb +1 -1
  9. data/spec/faraday/cache_spec.rb +9 -9
  10. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
  11. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
  12. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
  13. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
  14. data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
  15. data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
  16. data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
  17. data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
  18. data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
  19. data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
  20. data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
  21. data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
  22. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
  23. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
  24. data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
  25. data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
  26. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
  27. data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
  28. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
  29. data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
  30. data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
  31. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
  32. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
  33. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
  34. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
  35. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
  36. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
  37. data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
  38. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
  39. data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
  40. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
  41. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
  42. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
  43. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
  44. data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
  45. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
  46. data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
  47. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
  48. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
  49. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
  50. data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
  51. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
  52. data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
  53. data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
  54. data/spec/product_spec.rb +1 -1
  55. data/spec/request_spec.rb +4 -4
  56. metadata +35 -62
  57. data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
@@ -14,207 +14,90 @@ http_interactions:
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
17
- - ! '*/*'
17
+ - '*/*'
18
18
  response:
19
19
  status:
20
20
  code: 200
21
- message: !binary |-
22
- T0s=
21
+ message: OK
23
22
  headers:
24
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctQ3JlZGVudGlhbHM=":
25
- - !binary |-
26
- dHJ1ZQ==
27
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctSGVhZGVycw==":
28
- - !binary |-
29
- eC1wYWdpbmF0aW9uLCB4LXJlcXVlc3RlZC13aXRoLCB4LXJlcXVlc3RlZC1i
30
- eSwgeC1yZXZpZXdlZC1hdXRob3JpemF0aW9uLCB4LXNraXAtY2FjaGUsIENv
31
- bnRlbnQtVHlwZQ==
32
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctTWV0aG9kcw==":
33
- - !binary |-
34
- T1BUSU9OUywgR0VULCBQT1NULCBQVVQsIERFTEVURQ==
35
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctT3JpZ2lu":
36
- - !binary |-
37
- Kg==
38
- !binary "QWNjZXNzLUNvbnRyb2wtTWF4LUFnZQ==":
39
- - !binary |-
40
- MTAwMA==
41
- !binary "Q2FjaGUtQ29udHJvbA==":
42
- - !binary |-
43
- bm8tY2FjaGUsIG5vLXN0b3Jl
44
- !binary "Q29udGVudC1FbmNvZGluZw==":
45
- - !binary |-
46
- Z3ppcA==
47
- !binary "Q29udGVudC1UeXBl":
48
- - !binary |-
49
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
50
- !binary "RGF0ZQ==":
51
- - !binary |-
52
- V2VkLCAyNCBKdWwgMjAxMyAyMTowMzowNSBHTVQ=
53
- !binary "U3RhdHVz":
54
- - !binary |-
55
- MjAwIE9L
56
- !binary "U3RyaWN0LVRyYW5zcG9ydC1TZWN1cml0eQ==":
57
- - !binary |-
58
- bWF4LWFnZT0zMTUzNjAwMA==
59
- !binary "VmFyeQ==":
60
- - !binary |-
61
- QWNjZXB0LUVuY29kaW5n
62
- !binary "WC1SYWNrLUNhY2hl":
63
- - !binary |-
64
- bWlzcw==
65
- !binary "WC1SZXF1ZXN0LUlk":
66
- - !binary |-
67
- YWU5NWJhMWIyYjNiZWQ4ZmMyMzZjYWE2OTI1MjQxNmE=
68
- !binary "WC1SdW50aW1l":
69
- - !binary |-
70
- My40NzQxOTU=
71
- !binary "WC1VYS1Db21wYXRpYmxl":
72
- - !binary |-
73
- SUU9RWRnZSxjaHJvbWU9MQ==
74
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
75
- - !binary |-
76
- Y2h1bmtlZA==
77
- !binary "Q29ubmVjdGlvbg==":
78
- - !binary |-
79
- a2VlcC1hbGl2ZQ==
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
27
+ x-skip-cache, Content-Type
28
+ Access-Control-Allow-Methods:
29
+ - OPTIONS, GET, POST, PUT, DELETE
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
35
+ - no-cache, no-store
36
+ Content-Type:
37
+ - application/json; charset=utf-8
38
+ Date:
39
+ - Mon, 29 Jul 2013 21:24:48 GMT
40
+ Status:
41
+ - 200 OK
42
+ Strict-Transport-Security:
43
+ - max-age=31536000
44
+ Vary:
45
+ - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
+ X-Request-Id:
49
+ - 9868d164c60267f66454ef642f4763ef
50
+ X-Runtime:
51
+ - '2.397712'
52
+ X-Ua-Compatible:
53
+ - IE=Edge,chrome=1
54
+ Transfer-Encoding:
55
+ - chunked
56
+ Connection:
57
+ - keep-alive
80
58
  body:
81
- encoding: ASCII-8BIT
82
- string: !binary |-
83
- H4sIAAlB8FEAA+ydba/bNpaA/4rhD4tdbJTLV5Hyt26mgwG2nQ0mAXbQweJC
84
- L1Ti5l7bsH3TpEX/+1KW5GtbpHkoyuptoAJFEkumHpMizfP4iPxtvkk/LFfp
85
- frlezRe/zffrffowX2AhBX9V/+ten6F284VM2Kt5udzu9odX5ov99km9mj+k
86
- xxfK9GGnX9ls1efl+mnXvLp6enh4NV+pL+1p5NV8/bS/X5f32fppVeyOb1yX
87
- 5U7t5wv0ap4/bbdq1b4D60LVtn27PqwPbZdqd79eHV/8/dW8SPfpfPGv3+bL
88
- Yr6Yc1SmhCUiidOMyxjhGOUcCzHXpW9VulfFfaovNicIowjJiOD3WCwwWVD5
89
- kz7naVOcnUMjxKtzEF6gZMFQdc4qfdTXnv/t7eztx/V+vXtMt/vZj4xV19g9
90
- PH3Qxz5uos3xWPRYH7vff91Ub/z+QeX77Xq1zHeLxRtd2DbVf3m7Xq72362K
91
- dx/X670+uzpZV9K//u/V/HG33cwXSfI6SV7NdYHL/EHdL4vm6C8q2y337Qu6
92
- AlQcJ4XICkRkzKRCh/+KuT5185Q9LHcf76tWr2sAkwjz94jotl8g/p8ILRA6
93
- VEOuz5hXrbrM1f2HbZpluikONcwooxwjqY9unzJ9/PBy3d7ZNl0V921DJKqI
94
- y5ojpjVInui3Pa4LpW+3ebf6tmq3ftrqKz5tl/qEu812XTzl+92dsULTbf5x
95
- +Vnd7/a6zfTp2df7qvX0keXufpevt8vVh/ss3amH5er5Rm3eVbS3cv0hqm7Q
96
- NOz8cN89Lnc73T121QF94xxPr++iY2n1DXP8Z6F2umm/Nv/Wd2e6Wd7ry386
97
- lJOvH6q2b3rd9lAJd/qMu8/4rsbY6Yt/3Kqyuof2+81ucXe3/6iiD0/LQkX6
98
- c+pe++H1R7Vdf3pKN5vX+frx8v2/P9fiDS/ye/XR9vs0//ioe+XurP/lMRe8
99
- bvaEqRQhmibS0P9038IRQe8JXjC+INzS/zrnHPtf9HwDRdUNFGF9rRi9/nnz
100
- oelA+rRy+VDdEfpTHbrH53S13H+tOsNntT028I6jLxw19aGroxrL1C+qONbG
101
- jr5OH9Nf16v0l11dIccPf1cWWVpiwcqCl5xgVUohU1qiRLEMZYgoGQtOSXZX
102
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- UAFmoP4qwA/IoAI6QIEqAAx0nWMkFTAQ7bkKwIxNKsBTBZjmnoOpgG7hkwrw
114
- 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
- R1AZUJ89yYAXKwPSutm5LGp9mjllAEVuGUCRXQboW6L+TiWj5wVIWsRMcX3t
116
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- uImChAkcqBEmAJ4gY+IB1BgTN1GYMoETtcoESNTbmXgSYQIgCpMmPv2sliZu
138
- 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
- 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
- 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
- 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
- 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
- ZDguVEzSpFQ0QTSJCcv0/6rVJE7yQE0C52k1iZsoSJPAgRpNAuAJ0iQeQI0m
144
- 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
- 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
- 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
- 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
- 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
- 3yPcmVdCbZlvnXPOBqXo0B0i3R3qWYYY25akBSZZkedFnupBqWQp5Yn+6Jpd
150
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- kAX24DEuvWwACtPAcCDzyss2oN4e2BOos/CyAShMBPv0MNO6ywagMBMMBzIv
172
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- s/IQiCrMpMCpjgsQgan66xQ/qhhOFeRUPKja5YhAVGFiBU51XJUITNXfrvhR
180
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- XERhqhVO9LyxBoiot2X1JDrsq+EiChOsPv2s3VbDRRTmVuFEz7tqQIj6a1U/
195
- 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
- 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
- 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
- tB4QClXMflqvH+fuh6kTmquTJDYWU37jrUktyWtMYCYpbNuNTpqaOFEJpsq2
199
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
217
- Pbf21PcoAQA=
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":17875,"total_pages":894,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
61
+ PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
62
+ Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb00003d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb00003d"}}},{"id":"50fa222096ab5860160c49b6","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Epson
63
+ MovieMate 30S","slug":"epson-moviemate-30s","_type":"Electronics::Projector","types":[],"msrp":1065.81,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"27671289","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"MovieMate
64
+ 30S","resource_uri":"/products/epson-moviemate-30s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc545dbd0286f12a001f71","created_at":"2013-01-20T20:32:29Z","updated_at":"2013-01-20T20:32:29Z","name":"Epson-MovieMate-30S-102537.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s50x50_Epson-MovieMate-30S-102537.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s150x150_Epson-MovieMate-30S-102537.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s200x75_Epson-MovieMate-30S-102537.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s250x250_Epson-MovieMate-30S-102537.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x150_Epson-MovieMate-30S-102537.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x112_Epson-MovieMate-30S-102537.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s500x500_Epson-MovieMate-30S-102537.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x400_Epson-MovieMate-30S-102537.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x600_Epson-MovieMate-30S-102537.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s630x235_Epson-MovieMate-30S-102537.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x400_Epson-MovieMate-30S-102537.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x350_Epson-MovieMate-30S-102537.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x110_Epson-MovieMate-30S-102537.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg","file_size":2075,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc545dbd0286f12a001f71","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc545dbd0286f12a001f71"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb00003e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb00003e"}}},{"id":"50fa222096ab5860160c49b7","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Optoma
65
+ HD73","slug":"optoma-hd73","_type":"Electronics::Projector","types":[],"msrp":136.51,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"31169103","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000ba","model":"HD73","resource_uri":"/products/optoma-hd73","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5473bd028694ea001f72","created_at":"2013-01-20T20:32:51Z","updated_at":"2013-01-20T20:32:51Z","name":"Optoma-HD73-102538.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s50x50_Optoma-HD73-102538.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s150x150_Optoma-HD73-102538.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s200x75_Optoma-HD73-102538.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s250x250_Optoma-HD73-102538.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x150_Optoma-HD73-102538.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x112_Optoma-HD73-102538.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s500x500_Optoma-HD73-102538.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x400_Optoma-HD73-102538.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x600_Optoma-HD73-102538.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s630x235_Optoma-HD73-102538.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x400_Optoma-HD73-102538.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x350_Optoma-HD73-102538.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x110_Optoma-HD73-102538.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg","file_size":1553,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5473bd028694ea001f72","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5473bd028694ea001f72"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb00003f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb00003f"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-15T20:21:52Z","name":"Fujifilm
66
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512ce232184a8a15e800019b","model":"","resource_uri":"/products/fujifilm-f900exr","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb000040","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb000040"}}},{"id":"50fa21e596ab5860160c494e","created_at":"2010-03-29T18:24:31Z","updated_at":"2013-05-21T01:05:10Z","name":"Pentax
67
+ K100D","slug":"pentax-k100d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":699.0,"article_ids":["50fb9066bd0286d5550444be"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19156","price_grabber_id":"20384825","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000af","model":"K100D","resource_uri":"/products/pentax-k100d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd07a5bd02860b1301a338","created_at":"2013-01-21T09:17:25Z","updated_at":"2013-01-21T09:17:25Z","name":"Pentax-K100D-100331.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s50x50_Pentax-K100D-100331.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s150x150_Pentax-K100D-100331.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s200x75_Pentax-K100D-100331.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s250x250_Pentax-K100D-100331.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x150_Pentax-K100D-100331.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x112_Pentax-K100D-100331.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s500x500_Pentax-K100D-100331.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x400_Pentax-K100D-100331.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x600_Pentax-K100D-100331.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s630x235_Pentax-K100D-100331.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x400_Pentax-K100D-100331.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x350_Pentax-K100D-100331.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x110_Pentax-K100D-100331.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg","file_size":5019,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07a5bd02860b1301a338","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07a5bd02860b1301a338"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb000041","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb000041"}}},{"id":"50fa21e696ab5860160c494f","created_at":"2010-03-29T18:24:33Z","updated_at":"2013-05-21T01:06:58Z","name":"Fujifilm FinePix
68
+ S5 Pro","slug":"fujifilm-finepix-s5-pro","_type":"Electronics::Cameras::DSLR","types":[],"msrp":1999.0,"article_ids":["50fb5fe1bd0286d555030c15","50fb8e2abd0286d555043a12"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"600005590","price_grabber_id":"31925698","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed76bd0286638e0001b6","model":"S5
69
+ Pro","resource_uri":"/products/fujifilm-finepix-s5-pro","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
70
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0451bd02868f8101a22a","created_at":"2013-01-21T09:03:13Z","updated_at":"2013-01-21T09:03:13Z","name":"Fuji-FinePix-S5-Pro-100332.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s50x50_Fuji-FinePix-S5-Pro-100332.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s150x150_Fuji-FinePix-S5-Pro-100332.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s200x75_Fuji-FinePix-S5-Pro-100332.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s250x250_Fuji-FinePix-S5-Pro-100332.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x150_Fuji-FinePix-S5-Pro-100332.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x112_Fuji-FinePix-S5-Pro-100332.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s500x500_Fuji-FinePix-S5-Pro-100332.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x400_Fuji-FinePix-S5-Pro-100332.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x600_Fuji-FinePix-S5-Pro-100332.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s630x235_Fuji-FinePix-S5-Pro-100332.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x400_Fuji-FinePix-S5-Pro-100332.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x350_Fuji-FinePix-S5-Pro-100332.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x110_Fuji-FinePix-S5-Pro-100332.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg","file_size":6330,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0451bd02868f8101a22a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0451bd02868f8101a22a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb000042","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb000042"}}},{"id":"50fa21e696ab5860160c4950","created_at":"2010-03-29T18:24:35Z","updated_at":"2013-05-21T01:06:58Z","name":"Pentax
71
+ K100D Super","slug":"pentax-k100d-super","_type":"Electronics::Cameras::DSLR","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47578386","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K100D
72
+ Super","resource_uri":"/products/pentax-k100d-super","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
73
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fc5336bd0286de7b0012ae","created_at":"2013-01-20T20:27:34Z","updated_at":"2013-01-20T20:27:34Z","name":"Canon-K100D-Super-100333.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s50x50_Canon-K100D-Super-100333.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s150x150_Canon-K100D-Super-100333.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s200x75_Canon-K100D-Super-100333.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s250x250_Canon-K100D-Super-100333.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x150_Canon-K100D-Super-100333.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x112_Canon-K100D-Super-100333.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s500x500_Canon-K100D-Super-100333.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x400_Canon-K100D-Super-100333.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x600_Canon-K100D-Super-100333.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s630x235_Canon-K100D-Super-100333.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x400_Canon-K100D-Super-100333.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x350_Canon-K100D-Super-100333.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x110_Canon-K100D-Super-100333.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg","file_size":4289,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5336bd0286de7b0012ae","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5336bd0286de7b0012ae"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb000043","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb000043"}}},{"id":"50fa21e796ab5860160c4951","created_at":"2010-03-29T18:24:36Z","updated_at":"2013-06-19T00:00:41Z","name":"Olympus
74
+ PEN E-P1","slug":"olympus-pen-e-p1-2","_type":"Electronics::Cameras::DSLR","types":["Compact
75
+ SLR / System"],"msrp":499.99,"article_ids":["50fb419dbd0286d5550219db","50fb41fabd0286d555021c6e","50fb4255bd0286d555021f03","50fb4267bd0286d555021f87","50fb4279bd0286d55502200d","50fb42f0bd0286d555022327","50fb4328bd0286d5550224b0","50fb480dbd0286d555024d93","50fb482bbd0286d555024e6e","50fb7825bd0286d55503a0fc","50fb7b24bd0286d55503b6d6","50fb7c0cbd0286d55503bdfd","50fb7de0bd0286d55503cd1d","50fb830cbd0286d55503f567","50fc16d2bd0286d55509c65d"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"733175108","rubric_id":"50f9ed93bd0286638e00039f","brand_id":"50f9ed6ebd0286638e0000b1","model":"E-P1","resource_uri":"/products/olympus-pen-e-p1-2","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e00039f","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-26T21:46:58Z","name":"2009-2010
76
+ Digital SLR ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e00039f","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e00039f"}}},"attachments":[{"id":"50fc5a44bd028603360024d8","created_at":"2013-01-20T20:57:40Z","updated_at":"2013-01-20T20:57:40Z","name":"Olympus-E-P1-108404.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s50x50_Olympus-E-P1-108404.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s150x150_Olympus-E-P1-108404.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s200x75_Olympus-E-P1-108404.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s250x250_Olympus-E-P1-108404.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x150_Olympus-E-P1-108404.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x112_Olympus-E-P1-108404.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s500x500_Olympus-E-P1-108404.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x400_Olympus-E-P1-108404.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x600_Olympus-E-P1-108404.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s630x235_Olympus-E-P1-108404.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x400_Olympus-E-P1-108404.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x350_Olympus-E-P1-108404.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x110_Olympus-E-P1-108404.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg","file_size":39338,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5a44bd028603360024d8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a44bd028603360024d8"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9e40a0ce88bb000044","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9e40a0ce88bb000044"}}},{"id":"50fa21e796ab5860160c4952","created_at":"2010-03-29T18:24:38Z","updated_at":"2013-05-21T01:06:17Z","name":"Nikon
77
+ D40x","slug":"nikon-d40x","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34188719","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D40x","resource_uri":"/products/nikon-d40x","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028692240012ab","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Nikon-D40x-100382.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s50x50_Nikon-D40x-100382.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s150x150_Nikon-D40x-100382.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s200x75_Nikon-D40x-100382.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s250x250_Nikon-D40x-100382.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x150_Nikon-D40x-100382.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x112_Nikon-D40x-100382.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s500x500_Nikon-D40x-100382.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x400_Nikon-D40x-100382.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x600_Nikon-D40x-100382.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s630x235_Nikon-D40x-100382.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x400_Nikon-D40x-100382.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x350_Nikon-D40x-100382.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x110_Nikon-D40x-100382.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg","file_size":6299,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028692240012ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028692240012ab"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb000045","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb000045"}}},{"id":"50fa21e896ab5860160c4953","created_at":"2010-03-29T18:24:39Z","updated_at":"2013-05-21T00:46:57Z","name":"Olympus
78
+ EVOLT E-410","slug":"olympus-evolt-e-410","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34714852","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
79
+ E-410","resource_uri":"/products/olympus-evolt-e-410","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028600af0012ac","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Olympus-EVOLT-E-410-100384.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s50x50_Olympus-EVOLT-E-410-100384.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s150x150_Olympus-EVOLT-E-410-100384.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s200x75_Olympus-EVOLT-E-410-100384.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s250x250_Olympus-EVOLT-E-410-100384.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x150_Olympus-EVOLT-E-410-100384.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x112_Olympus-EVOLT-E-410-100384.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s500x500_Olympus-EVOLT-E-410-100384.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x400_Olympus-EVOLT-E-410-100384.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x600_Olympus-EVOLT-E-410-100384.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s630x235_Olympus-EVOLT-E-410-100384.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x400_Olympus-EVOLT-E-410-100384.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x350_Olympus-EVOLT-E-410-100384.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x110_Olympus-EVOLT-E-410-100384.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg","file_size":5928,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028600af0012ac","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028600af0012ac"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb000046","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb000046"}}},{"id":"50fa21e896ab5860160c4954","created_at":"2010-03-29T18:24:40Z","updated_at":"2013-05-21T00:46:58Z","name":"Pentax
80
+ K10D","slug":"pentax-k10d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":799.0,"article_ids":["50fb74c6bd0286d5550385f4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19091","price_grabber_id":"26157789","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K10D","resource_uri":"/products/pentax-k10d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
81
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0674bd028600af01a2cf","created_at":"2013-01-21T09:12:20Z","updated_at":"2013-01-21T09:12:20Z","name":"Pentax-K10D-101956.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s50x50_Pentax-K10D-101956.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s150x150_Pentax-K10D-101956.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s200x75_Pentax-K10D-101956.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s250x250_Pentax-K10D-101956.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x150_Pentax-K10D-101956.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x112_Pentax-K10D-101956.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s500x500_Pentax-K10D-101956.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x400_Pentax-K10D-101956.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x600_Pentax-K10D-101956.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s630x235_Pentax-K10D-101956.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x400_Pentax-K10D-101956.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x350_Pentax-K10D-101956.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x110_Pentax-K10D-101956.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg","file_size":10305,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0674bd028600af01a2cf","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0674bd028600af01a2cf"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb000047","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb000047"}}},{"id":"50fa21e996ab5860160c4955","created_at":"2010-03-29T18:24:41Z","updated_at":"2013-05-21T01:06:58Z","name":"Canon
82
+ EOS Rebel XTi","slug":"canon-eos-rebel-xti","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f72bd0286d555030b34","50fb8da4bd0286d5550436d6","50fb8ed9bd0286d555043ead"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1236B002","price_grabber_id":"24712314","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"XTi","resource_uri":"/products/canon-eos-rebel-xti","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
83
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce42fbd02868f81012512","created_at":"2013-01-21T06:46:07Z","updated_at":"2013-01-21T06:46:07Z","name":"Canon-EOS-Rebel-XTi-101957.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s50x50_Canon-EOS-Rebel-XTi-101957.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s150x150_Canon-EOS-Rebel-XTi-101957.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s200x75_Canon-EOS-Rebel-XTi-101957.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s250x250_Canon-EOS-Rebel-XTi-101957.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x150_Canon-EOS-Rebel-XTi-101957.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x112_Canon-EOS-Rebel-XTi-101957.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s500x500_Canon-EOS-Rebel-XTi-101957.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x400_Canon-EOS-Rebel-XTi-101957.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x600_Canon-EOS-Rebel-XTi-101957.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s630x235_Canon-EOS-Rebel-XTi-101957.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x400_Canon-EOS-Rebel-XTi-101957.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x350_Canon-EOS-Rebel-XTi-101957.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x110_Canon-EOS-Rebel-XTi-101957.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg","file_size":6228,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce42fbd02868f81012512","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce42fbd02868f81012512"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb000048","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb000048"}}},{"id":"50fa21e996ab5860160c4956","created_at":"2010-03-29T18:24:43Z","updated_at":"2013-05-21T01:06:58Z","name":"Nikon
84
+ D80","slug":"nikon-d80","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5ff4bd0286d555030c98","50fc0ea4bd0286d5550978a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"25412","price_grabber_id":"23760802","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D80","resource_uri":"/products/nikon-d80","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
85
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce45fbd02868f81012532","created_at":"2013-01-21T06:46:54Z","updated_at":"2013-01-21T06:46:55Z","name":"Nikon-D80-101958.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s50x50_Nikon-D80-101958.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s150x150_Nikon-D80-101958.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s200x75_Nikon-D80-101958.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s250x250_Nikon-D80-101958.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x150_Nikon-D80-101958.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x112_Nikon-D80-101958.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s500x500_Nikon-D80-101958.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x400_Nikon-D80-101958.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x600_Nikon-D80-101958.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s630x235_Nikon-D80-101958.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x400_Nikon-D80-101958.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x350_Nikon-D80-101958.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x110_Nikon-D80-101958.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg","file_size":7738,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce45fbd02868f81012532","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce45fbd02868f81012532"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb000049","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb000049"}}},{"id":"50fa21ea96ab5860160c4957","created_at":"2010-03-29T18:24:45Z","updated_at":"2013-05-21T01:06:58Z","name":"Leica
86
+ M8","slug":"leica-m8","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb927cbd0286d5550456e4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"29253005","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b4","model":"M8","resource_uri":"/products/leica-m8","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
87
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd07f7bd028663f101a357","created_at":"2013-01-21T09:18:47Z","updated_at":"2013-01-21T09:18:47Z","name":"Leica-M8-101964.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s50x50_Leica-M8-101964.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s150x150_Leica-M8-101964.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s200x75_Leica-M8-101964.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s250x250_Leica-M8-101964.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x150_Leica-M8-101964.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x112_Leica-M8-101964.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s500x500_Leica-M8-101964.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x400_Leica-M8-101964.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x600_Leica-M8-101964.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s630x235_Leica-M8-101964.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x400_Leica-M8-101964.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x350_Leica-M8-101964.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x110_Leica-M8-101964.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg","file_size":5352,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07f7bd028663f101a357","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07f7bd028663f101a357"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb00004a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb00004a"}}},{"id":"50fa21ea96ab5860160c4958","created_at":"2010-03-29T18:24:46Z","updated_at":"2013-05-21T01:06:59Z","name":"Panasonic
88
+ DMC-L1","slug":"panasonic-dmc-l1","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb601bbd0286d555030cdb"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DMCL1","price_grabber_id":"22919627","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b5","model":"DMC-L1","resource_uri":"/products/panasonic-dmc-l1","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
89
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0464bd0286027b01a22b","created_at":"2013-01-21T09:03:32Z","updated_at":"2013-01-21T09:03:32Z","name":"Panasonic-DMC-L1-101974.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s50x50_Panasonic-DMC-L1-101974.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s150x150_Panasonic-DMC-L1-101974.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s200x75_Panasonic-DMC-L1-101974.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s250x250_Panasonic-DMC-L1-101974.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x150_Panasonic-DMC-L1-101974.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x112_Panasonic-DMC-L1-101974.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s500x500_Panasonic-DMC-L1-101974.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x400_Panasonic-DMC-L1-101974.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x600_Panasonic-DMC-L1-101974.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s630x235_Panasonic-DMC-L1-101974.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x400_Panasonic-DMC-L1-101974.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x350_Panasonic-DMC-L1-101974.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x110_Panasonic-DMC-L1-101974.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg","file_size":4557,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0464bd0286027b01a22b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0464bd0286027b01a22b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb00004b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb00004b"}}},{"id":"50fa21eb96ab5860160c4959","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:17Z","name":"Sigma
90
+ SD14","slug":"sigma-sd14","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb9472bd0286d5550466a9"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"28909658","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b6","model":"SD14","resource_uri":"/products/sigma-sd14","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd0838bd0286227201a371","created_at":"2013-01-21T09:19:52Z","updated_at":"2013-01-21T09:19:52Z","name":"Sigma-SD14-101981.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s50x50_Sigma-SD14-101981.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s150x150_Sigma-SD14-101981.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s200x75_Sigma-SD14-101981.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s250x250_Sigma-SD14-101981.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x150_Sigma-SD14-101981.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x112_Sigma-SD14-101981.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s500x500_Sigma-SD14-101981.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x400_Sigma-SD14-101981.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x600_Sigma-SD14-101981.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s630x235_Sigma-SD14-101981.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x400_Sigma-SD14-101981.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x350_Sigma-SD14-101981.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x110_Sigma-SD14-101981.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg","file_size":5178,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0838bd0286227201a371","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0838bd0286227201a371"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb00004c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb00004c"}}},{"id":"50fa21eb96ab5860160c495a","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:59Z","name":"Sony
91
+ Alpha DSLR-A100","slug":"sony-alpha-dslr-a100","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60c6bd0286d555030e92"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DSLRA100","price_grabber_id":"20953889","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b7","model":"Alpha
92
+ DSLR-A100","resource_uri":"/products/sony-alpha-dslr-a100","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
93
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fc53b5bd028694ea001c1c","created_at":"2013-01-20T20:29:41Z","updated_at":"2013-01-20T20:29:41Z","name":"Sony-Alpha-DSLR-A100-102016.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s50x50_Sony-Alpha-DSLR-A100-102016.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s150x150_Sony-Alpha-DSLR-A100-102016.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s200x75_Sony-Alpha-DSLR-A100-102016.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s250x250_Sony-Alpha-DSLR-A100-102016.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x150_Sony-Alpha-DSLR-A100-102016.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x112_Sony-Alpha-DSLR-A100-102016.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s500x500_Sony-Alpha-DSLR-A100-102016.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x400_Sony-Alpha-DSLR-A100-102016.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x600_Sony-Alpha-DSLR-A100-102016.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s630x235_Sony-Alpha-DSLR-A100-102016.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x400_Sony-Alpha-DSLR-A100-102016.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x350_Sony-Alpha-DSLR-A100-102016.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x110_Sony-Alpha-DSLR-A100-102016.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg","file_size":6090,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc53b5bd028694ea001c1c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc53b5bd028694ea001c1c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9f40a0ce88bb00004d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9f40a0ce88bb00004d"}}},{"id":"50fa21ec96ab5860160c495b","created_at":"2010-03-29T18:24:50Z","updated_at":"2013-05-21T01:06:59Z","name":"Olympus
94
+ EVOLT E-510","slug":"olympus-evolt-e-510","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb604cbd0286d555030d22","50fb93afbd0286d5550461fe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"262070","price_grabber_id":"34859947","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
95
+ E-510","resource_uri":"/products/olympus-evolt-e-510","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
96
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd046ebd028662a701a22c","created_at":"2013-01-21T09:03:42Z","updated_at":"2013-01-21T09:03:42Z","name":"Olympus-EVOLT-E-510-102021.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s50x50_Olympus-EVOLT-E-510-102021.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s150x150_Olympus-EVOLT-E-510-102021.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s200x75_Olympus-EVOLT-E-510-102021.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s250x250_Olympus-EVOLT-E-510-102021.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x150_Olympus-EVOLT-E-510-102021.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x112_Olympus-EVOLT-E-510-102021.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s500x500_Olympus-EVOLT-E-510-102021.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x400_Olympus-EVOLT-E-510-102021.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x600_Olympus-EVOLT-E-510-102021.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s630x235_Olympus-EVOLT-E-510-102021.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x400_Olympus-EVOLT-E-510-102021.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x350_Olympus-EVOLT-E-510-102021.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x110_Olympus-EVOLT-E-510-102021.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg","file_size":6491,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd046ebd028662a701a22c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd046ebd028662a701a22c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dda040a0ce88bb00004e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda040a0ce88bb00004e"}}},{"id":"50fa21ec96ab5860160c495c","created_at":"2010-03-29T18:24:52Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
97
+ D40","slug":"nikon-d40","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb8237bd0286d55503eefe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1901B004","price_grabber_id":"29541608","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D40","resource_uri":"/products/nikon-d40","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
98
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd067dbd02868f8101a2d4","created_at":"2013-01-21T09:12:29Z","updated_at":"2013-01-21T09:12:29Z","name":"Nikon-D40-102024.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s50x50_Nikon-D40-102024.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s150x150_Nikon-D40-102024.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s200x75_Nikon-D40-102024.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s250x250_Nikon-D40-102024.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x150_Nikon-D40-102024.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x112_Nikon-D40-102024.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s500x500_Nikon-D40-102024.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x400_Nikon-D40-102024.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x600_Nikon-D40-102024.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s630x235_Nikon-D40-102024.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x400_Nikon-D40-102024.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x350_Nikon-D40-102024.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x110_Nikon-D40-102024.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg","file_size":5104,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd067dbd02868f8101a2d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd067dbd02868f8101a2d4"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dda040a0ce88bb00004f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda040a0ce88bb00004f"}}},{"id":"50fa21ed96ab5860160c495d","created_at":"2010-03-29T18:24:53Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
99
+ D200","slug":"nikon-d200","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f94bd0286d555030b7b","50fb8b70bd0286d555042ef3"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"13321369","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D200","resource_uri":"/products/nikon-d200","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
100
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce458bd02862d77012531","created_at":"2013-01-21T06:46:48Z","updated_at":"2013-01-21T06:46:48Z","name":"Nikon-D200-102025.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s50x50_Nikon-D200-102025.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s150x150_Nikon-D200-102025.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s200x75_Nikon-D200-102025.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s250x250_Nikon-D200-102025.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x150_Nikon-D200-102025.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x112_Nikon-D200-102025.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s500x500_Nikon-D200-102025.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x400_Nikon-D200-102025.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x600_Nikon-D200-102025.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s630x235_Nikon-D200-102025.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x400_Nikon-D200-102025.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x350_Nikon-D200-102025.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x110_Nikon-D200-102025.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg","file_size":6424,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce458bd02862d77012531","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce458bd02862d77012531"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dda040a0ce88bb000050","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda040a0ce88bb000050"}}}]}'
218
101
  http_version:
219
- recorded_at: Wed, 24 Jul 2013 21:03:05 GMT
102
+ recorded_at: Mon, 29 Jul 2013 21:24:48 GMT
220
103
  recorded_with: VCR 2.4.0
@@ -14,209 +14,92 @@ http_interactions:
14
14
  Accept-Encoding:
15
15
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
16
  Accept:
17
- - ! '*/*'
17
+ - '*/*'
18
18
  response:
19
19
  status:
20
20
  code: 200
21
- message: !binary |-
22
- T0s=
21
+ message: OK
23
22
  headers:
24
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctQ3JlZGVudGlhbHM=":
25
- - !binary |-
26
- dHJ1ZQ==
27
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctSGVhZGVycw==":
28
- - !binary |-
29
- eC1wYWdpbmF0aW9uLCB4LXJlcXVlc3RlZC13aXRoLCB4LXJlcXVlc3RlZC1i
30
- eSwgeC1yZXZpZXdlZC1hdXRob3JpemF0aW9uLCB4LXNraXAtY2FjaGUsIENv
31
- bnRlbnQtVHlwZQ==
32
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctTWV0aG9kcw==":
33
- - !binary |-
34
- T1BUSU9OUywgR0VULCBQT1NULCBQVVQsIERFTEVURQ==
35
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctT3JpZ2lu":
36
- - !binary |-
37
- Kg==
38
- !binary "QWNjZXNzLUNvbnRyb2wtTWF4LUFnZQ==":
39
- - !binary |-
40
- MTAwMA==
41
- !binary "Q2FjaGUtQ29udHJvbA==":
42
- - !binary |-
43
- bm8tY2FjaGUsIG5vLXN0b3Jl
44
- !binary "Q29udGVudC1FbmNvZGluZw==":
45
- - !binary |-
46
- Z3ppcA==
47
- !binary "Q29udGVudC1UeXBl":
48
- - !binary |-
49
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
50
- !binary "RGF0ZQ==":
51
- - !binary |-
52
- V2VkLCAyNCBKdWwgMjAxMyAyMTowMjo1MSBHTVQ=
53
- !binary "U3RhdHVz":
54
- - !binary |-
55
- MjAwIE9L
56
- !binary "U3RyaWN0LVRyYW5zcG9ydC1TZWN1cml0eQ==":
57
- - !binary |-
58
- bWF4LWFnZT0zMTUzNjAwMA==
59
- !binary "VmFyeQ==":
60
- - !binary |-
61
- QWNjZXB0LUVuY29kaW5n
62
- !binary "WC1SYWNrLUNhY2hl":
63
- - !binary |-
64
- bWlzcw==
65
- !binary "WC1SZXF1ZXN0LUlk":
66
- - !binary |-
67
- Y2Y1NjM1MGZlMzI1ZmJlNjg3OTA4ZmI4N2ViMzZlYTM=
68
- !binary "WC1SdW50aW1l":
69
- - !binary |-
70
- Mi41MjYzMzM=
71
- !binary "WC1VYS1Db21wYXRpYmxl":
72
- - !binary |-
73
- SUU9RWRnZSxjaHJvbWU9MQ==
74
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
75
- - !binary |-
76
- Y2h1bmtlZA==
77
- !binary "Q29ubmVjdGlvbg==":
78
- - !binary |-
79
- a2VlcC1hbGl2ZQ==
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
27
+ x-skip-cache, Content-Type
28
+ Access-Control-Allow-Methods:
29
+ - OPTIONS, GET, POST, PUT, DELETE
30
+ Access-Control-Allow-Origin:
31
+ - '*'
32
+ Access-Control-Max-Age:
33
+ - '1000'
34
+ Cache-Control:
35
+ - no-cache, no-store
36
+ Content-Type:
37
+ - application/json; charset=utf-8
38
+ Date:
39
+ - Mon, 29 Jul 2013 21:24:26 GMT
40
+ Status:
41
+ - 200 OK
42
+ Strict-Transport-Security:
43
+ - max-age=31536000
44
+ Vary:
45
+ - Accept-Encoding
46
+ X-Rack-Cache:
47
+ - miss
48
+ X-Request-Id:
49
+ - d82e36f1c943fd834c6e360d9609e68c
50
+ X-Runtime:
51
+ - '2.313186'
52
+ X-Ua-Compatible:
53
+ - IE=Edge,chrome=1
54
+ Transfer-Encoding:
55
+ - chunked
56
+ Connection:
57
+ - keep-alive
80
58
  body:
81
- encoding: ASCII-8BIT
82
- string: !binary |-
83
- H4sIAPtA8FEAA+yd74/bNpqA/xXDHw53uCjDn6Lkb71sFwtcuxdsAtyii8OA
84
- kqjEzYxt2J40adH//ShL8tgWab4UZXUaqECRxJSlx6RI8338ivxtvpEfliu5
85
- X65X88Vv8/16Lx/mCywSwV/V/7rXR6jdfJGk7NW8XG53+8Mr88V++6RezR/k
86
- 8YVSPuz0K5ut+rxcP+2aV1dPDw+v5iv1pT2MvJqvn/b36/I+Wz+tit3xjeuy
87
- 3Kn9fIFezfOn7Vat2ndgfVK1bd+ui3XRdql29+vV8cXfX80LuZfzxb9+my+L
88
- +WLOUSkJS0Uay4wnMcIxyjkWYq7PvlVyr4p7qS82JwijCCURwe+xWGCyoMlP
89
- +pinTXF2DI0Qr45BeIHSBUPVMSv5qK89/9vb2duP6/169yi3+9mPjFXX2D08
90
- fdBlHzfR5lgWPdZl9/uvm+qN3z+ofL9dr5b5brF4o0+2lfovb9fL1f67VfHu
91
- 43q910dXB+tK+tf/vZo/7rab+SJNX6fpq7k+4TJ/UPfLoin9RWW75b59QVeA
92
- iuO0EFmBSBKzRKHDf8VcH7p5yh6Wu4/3VavXNYBJhPl7RHTbLxD/T4QWCB2q
93
- IddHzKtWXebq/sNWZpluikMNM8ooxyjRpdunTJcfXq7bO9vKVXHfNkSqiris
94
- OWJag+SpftvjulD6dpt3q2+rduunrb7i03apD7jbbNfFU77f3RkrVG7zj8vP
95
- 6n63122mD8++3letp0uWu/tdvt4uVx/uM7lTD8vV843avKtob+X6Q1TdoGnY
96
- +eG+e1zudrp77KoCfeMcD6/vouPZ6hvm+M9C7XTTfm3+re9OuVne68t/Opwn
97
- Xz9Ubd/0uu2hEu70EXef8V2NsdMX/7hVZXUP7feb3eLubv9RRR+eloWK9OfU
98
- vfbD649qu/70JDeb1/n68fL9vz/X4g0v8nv10fZ7mX981L1yd9b/8pgLXjd7
99
- ypREiMo0MfQ/3bdwRNB7gheMLwi39L/OMcf+Fz3fQFF1A0VYXytGr3/efGg6
100
- kD6sXD5Ud4T+VIfu8VmulvuvVWf4rLbHBt5x9IWjpj50dVRjmfpFFcfa2NHX
101
- 8lH+ul7JX3Z1hRw//F1ZZLLEgpUFLznBqkxEImmJUsUylCGiklhwSrK7+ir3
102
- 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
- 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
- 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
- 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
- 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
- YAr7yfVcWM8ms6eHT/dPm4e1bOOygWpeh0typRv8GMjct0FRj6Y5vrVvjRxP
108
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- ZQC35SgDZYC4IgPEIDJAvBQZIPR4x8jAmQHCSwaISQb8KWQAQrI8jJmmDjis
121
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- AbFLBvAFYSexyN+Xn9ar2Zv1+mGz/DJ7q2cg6NkGrKrCKK8Lo01TeIM1A6oP
132
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- kHggWZJGDEhhlgSOZMsasSD1NyV+SKa0EQtSf1vih2TKG+kiBRoTMJKLZCRr
159
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- jQ7wLzFZrDxZ07/6ycz07O55Iph1FtY5xrj8ctUl6t9UR1fAJM8zRAqqBBJx
170
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- yotUVhv/UFxies1Fd/EDZTQc6pqMNmAF2Wg41RUbbYIK0tEeVFd0tAErzEfD
186
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- pK6d2oF369XX2ZuvOmSOqg0uZ3959yb6W/osCHa6PMqP5VGxy6OPaW9HoANp
198
- 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
- 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
- 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
- B3CQxhxc4QgyBh4gjTGwk4SZAjhJawocJL0NgScJJldIwsyAT7+pzYCdJMwI
202
- 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
- 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
- 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
- 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
- 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
- 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
- YB6O1AbzUKTeUb0nko7qAUhh4b1Pb6vDewBSWJwPR2rjfCBS/4DfDykGIgVF
209
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
217
- lPcoAQA=
59
+ encoding: UTF-8
60
+ string: '{"pagination":{"total":17875,"total_pages":894,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
61
+ PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
62
+ Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd887801416790000005","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd887801416790000005"}}},{"id":"50fa222096ab5860160c49b6","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Epson
63
+ MovieMate 30S","slug":"epson-moviemate-30s","_type":"Electronics::Projector","types":[],"msrp":1065.81,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"27671289","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"MovieMate
64
+ 30S","resource_uri":"/products/epson-moviemate-30s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc545dbd0286f12a001f71","created_at":"2013-01-20T20:32:29Z","updated_at":"2013-01-20T20:32:29Z","name":"Epson-MovieMate-30S-102537.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s50x50_Epson-MovieMate-30S-102537.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s150x150_Epson-MovieMate-30S-102537.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s200x75_Epson-MovieMate-30S-102537.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s250x250_Epson-MovieMate-30S-102537.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x150_Epson-MovieMate-30S-102537.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x112_Epson-MovieMate-30S-102537.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s500x500_Epson-MovieMate-30S-102537.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x400_Epson-MovieMate-30S-102537.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x600_Epson-MovieMate-30S-102537.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s630x235_Epson-MovieMate-30S-102537.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x400_Epson-MovieMate-30S-102537.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x350_Epson-MovieMate-30S-102537.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x110_Epson-MovieMate-30S-102537.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg","file_size":2075,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc545dbd0286f12a001f71","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc545dbd0286f12a001f71"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd887801416790000006","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd887801416790000006"}}},{"id":"50fa222096ab5860160c49b7","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Optoma
65
+ HD73","slug":"optoma-hd73","_type":"Electronics::Projector","types":[],"msrp":136.51,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"31169103","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000ba","model":"HD73","resource_uri":"/products/optoma-hd73","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5473bd028694ea001f72","created_at":"2013-01-20T20:32:51Z","updated_at":"2013-01-20T20:32:51Z","name":"Optoma-HD73-102538.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s50x50_Optoma-HD73-102538.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s150x150_Optoma-HD73-102538.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s200x75_Optoma-HD73-102538.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s250x250_Optoma-HD73-102538.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x150_Optoma-HD73-102538.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x112_Optoma-HD73-102538.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s500x500_Optoma-HD73-102538.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x400_Optoma-HD73-102538.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x600_Optoma-HD73-102538.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s630x235_Optoma-HD73-102538.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x400_Optoma-HD73-102538.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x350_Optoma-HD73-102538.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x110_Optoma-HD73-102538.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg","file_size":1553,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5473bd028694ea001f72","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5473bd028694ea001f72"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd887801416790000007","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd887801416790000007"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-15T20:21:52Z","name":"Fujifilm
66
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512ce232184a8a15e800019b","model":"","resource_uri":"/products/fujifilm-f900exr","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd887801416790000008","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd887801416790000008"}}},{"id":"50fa21e596ab5860160c494e","created_at":"2010-03-29T18:24:31Z","updated_at":"2013-05-21T01:05:10Z","name":"Pentax
67
+ K100D","slug":"pentax-k100d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":699.0,"article_ids":["50fb9066bd0286d5550444be"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19156","price_grabber_id":"20384825","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000af","model":"K100D","resource_uri":"/products/pentax-k100d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd07a5bd02860b1301a338","created_at":"2013-01-21T09:17:25Z","updated_at":"2013-01-21T09:17:25Z","name":"Pentax-K100D-100331.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s50x50_Pentax-K100D-100331.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s150x150_Pentax-K100D-100331.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s200x75_Pentax-K100D-100331.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s250x250_Pentax-K100D-100331.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x150_Pentax-K100D-100331.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x112_Pentax-K100D-100331.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s500x500_Pentax-K100D-100331.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x400_Pentax-K100D-100331.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x600_Pentax-K100D-100331.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s630x235_Pentax-K100D-100331.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x400_Pentax-K100D-100331.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x350_Pentax-K100D-100331.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x110_Pentax-K100D-100331.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg","file_size":5019,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07a5bd02860b1301a338","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07a5bd02860b1301a338"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd887801416790000009","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd887801416790000009"}}},{"id":"50fa21e696ab5860160c494f","created_at":"2010-03-29T18:24:33Z","updated_at":"2013-05-21T01:06:58Z","name":"Fujifilm FinePix
68
+ S5 Pro","slug":"fujifilm-finepix-s5-pro","_type":"Electronics::Cameras::DSLR","types":[],"msrp":1999.0,"article_ids":["50fb5fe1bd0286d555030c15","50fb8e2abd0286d555043a12"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"600005590","price_grabber_id":"31925698","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed76bd0286638e0001b6","model":"S5
69
+ Pro","resource_uri":"/products/fujifilm-finepix-s5-pro","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
70
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0451bd02868f8101a22a","created_at":"2013-01-21T09:03:13Z","updated_at":"2013-01-21T09:03:13Z","name":"Fuji-FinePix-S5-Pro-100332.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s50x50_Fuji-FinePix-S5-Pro-100332.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s150x150_Fuji-FinePix-S5-Pro-100332.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s200x75_Fuji-FinePix-S5-Pro-100332.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s250x250_Fuji-FinePix-S5-Pro-100332.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x150_Fuji-FinePix-S5-Pro-100332.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x112_Fuji-FinePix-S5-Pro-100332.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s500x500_Fuji-FinePix-S5-Pro-100332.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x400_Fuji-FinePix-S5-Pro-100332.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x600_Fuji-FinePix-S5-Pro-100332.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s630x235_Fuji-FinePix-S5-Pro-100332.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x400_Fuji-FinePix-S5-Pro-100332.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x350_Fuji-FinePix-S5-Pro-100332.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x110_Fuji-FinePix-S5-Pro-100332.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg","file_size":6330,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0451bd02868f8101a22a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0451bd02868f8101a22a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd88780141679000000a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd88780141679000000a"}}},{"id":"50fa21e696ab5860160c4950","created_at":"2010-03-29T18:24:35Z","updated_at":"2013-05-21T01:06:58Z","name":"Pentax
71
+ K100D Super","slug":"pentax-k100d-super","_type":"Electronics::Cameras::DSLR","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47578386","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K100D
72
+ Super","resource_uri":"/products/pentax-k100d-super","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
73
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fc5336bd0286de7b0012ae","created_at":"2013-01-20T20:27:34Z","updated_at":"2013-01-20T20:27:34Z","name":"Canon-K100D-Super-100333.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s50x50_Canon-K100D-Super-100333.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s150x150_Canon-K100D-Super-100333.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s200x75_Canon-K100D-Super-100333.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s250x250_Canon-K100D-Super-100333.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x150_Canon-K100D-Super-100333.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x112_Canon-K100D-Super-100333.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s500x500_Canon-K100D-Super-100333.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x400_Canon-K100D-Super-100333.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x600_Canon-K100D-Super-100333.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s630x235_Canon-K100D-Super-100333.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x400_Canon-K100D-Super-100333.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x350_Canon-K100D-Super-100333.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x110_Canon-K100D-Super-100333.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg","file_size":4289,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5336bd0286de7b0012ae","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5336bd0286de7b0012ae"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd88780141679000000b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd88780141679000000b"}}},{"id":"50fa21e796ab5860160c4951","created_at":"2010-03-29T18:24:36Z","updated_at":"2013-06-19T00:00:41Z","name":"Olympus
74
+ PEN E-P1","slug":"olympus-pen-e-p1-2","_type":"Electronics::Cameras::DSLR","types":["Compact
75
+ SLR / System"],"msrp":499.99,"article_ids":["50fb419dbd0286d5550219db","50fb41fabd0286d555021c6e","50fb4255bd0286d555021f03","50fb4267bd0286d555021f87","50fb4279bd0286d55502200d","50fb42f0bd0286d555022327","50fb4328bd0286d5550224b0","50fb480dbd0286d555024d93","50fb482bbd0286d555024e6e","50fb7825bd0286d55503a0fc","50fb7b24bd0286d55503b6d6","50fb7c0cbd0286d55503bdfd","50fb7de0bd0286d55503cd1d","50fb830cbd0286d55503f567","50fc16d2bd0286d55509c65d"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"733175108","rubric_id":"50f9ed93bd0286638e00039f","brand_id":"50f9ed6ebd0286638e0000b1","model":"E-P1","resource_uri":"/products/olympus-pen-e-p1-2","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e00039f","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-26T21:46:58Z","name":"2009-2010
76
+ Digital SLR ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e00039f","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e00039f"}}},"attachments":[{"id":"50fc5a44bd028603360024d8","created_at":"2013-01-20T20:57:40Z","updated_at":"2013-01-20T20:57:40Z","name":"Olympus-E-P1-108404.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s50x50_Olympus-E-P1-108404.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s150x150_Olympus-E-P1-108404.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s200x75_Olympus-E-P1-108404.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s250x250_Olympus-E-P1-108404.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x150_Olympus-E-P1-108404.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x112_Olympus-E-P1-108404.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s500x500_Olympus-E-P1-108404.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x400_Olympus-E-P1-108404.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x600_Olympus-E-P1-108404.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s630x235_Olympus-E-P1-108404.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x400_Olympus-E-P1-108404.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x350_Olympus-E-P1-108404.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x110_Olympus-E-P1-108404.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg","file_size":39338,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5a44bd028603360024d8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a44bd028603360024d8"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd89780141679000000c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd89780141679000000c"}}},{"id":"50fa21e796ab5860160c4952","created_at":"2010-03-29T18:24:38Z","updated_at":"2013-05-21T01:06:17Z","name":"Nikon
77
+ D40x","slug":"nikon-d40x","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34188719","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D40x","resource_uri":"/products/nikon-d40x","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028692240012ab","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Nikon-D40x-100382.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s50x50_Nikon-D40x-100382.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s150x150_Nikon-D40x-100382.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s200x75_Nikon-D40x-100382.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s250x250_Nikon-D40x-100382.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x150_Nikon-D40x-100382.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x112_Nikon-D40x-100382.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s500x500_Nikon-D40x-100382.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x400_Nikon-D40x-100382.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x600_Nikon-D40x-100382.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s630x235_Nikon-D40x-100382.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x400_Nikon-D40x-100382.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x350_Nikon-D40x-100382.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x110_Nikon-D40x-100382.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg","file_size":6299,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028692240012ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028692240012ab"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd89780141679000000d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd89780141679000000d"}}},{"id":"50fa21e896ab5860160c4953","created_at":"2010-03-29T18:24:39Z","updated_at":"2013-05-21T00:46:57Z","name":"Olympus
78
+ EVOLT E-410","slug":"olympus-evolt-e-410","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34714852","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
79
+ E-410","resource_uri":"/products/olympus-evolt-e-410","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028600af0012ac","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Olympus-EVOLT-E-410-100384.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s50x50_Olympus-EVOLT-E-410-100384.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s150x150_Olympus-EVOLT-E-410-100384.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s200x75_Olympus-EVOLT-E-410-100384.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s250x250_Olympus-EVOLT-E-410-100384.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x150_Olympus-EVOLT-E-410-100384.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x112_Olympus-EVOLT-E-410-100384.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s500x500_Olympus-EVOLT-E-410-100384.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x400_Olympus-EVOLT-E-410-100384.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x600_Olympus-EVOLT-E-410-100384.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s630x235_Olympus-EVOLT-E-410-100384.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x400_Olympus-EVOLT-E-410-100384.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x350_Olympus-EVOLT-E-410-100384.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x110_Olympus-EVOLT-E-410-100384.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg","file_size":5928,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028600af0012ac","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028600af0012ac"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd89780141679000000e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd89780141679000000e"}}},{"id":"50fa21e896ab5860160c4954","created_at":"2010-03-29T18:24:40Z","updated_at":"2013-05-21T00:46:58Z","name":"Pentax
80
+ K10D","slug":"pentax-k10d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":799.0,"article_ids":["50fb74c6bd0286d5550385f4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19091","price_grabber_id":"26157789","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K10D","resource_uri":"/products/pentax-k10d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
81
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0674bd028600af01a2cf","created_at":"2013-01-21T09:12:20Z","updated_at":"2013-01-21T09:12:20Z","name":"Pentax-K10D-101956.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s50x50_Pentax-K10D-101956.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s150x150_Pentax-K10D-101956.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s200x75_Pentax-K10D-101956.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s250x250_Pentax-K10D-101956.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x150_Pentax-K10D-101956.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x112_Pentax-K10D-101956.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s500x500_Pentax-K10D-101956.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x400_Pentax-K10D-101956.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x600_Pentax-K10D-101956.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s630x235_Pentax-K10D-101956.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x400_Pentax-K10D-101956.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x350_Pentax-K10D-101956.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x110_Pentax-K10D-101956.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg","file_size":10305,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0674bd028600af01a2cf","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0674bd028600af01a2cf"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd89780141679000000f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd89780141679000000f"}}},{"id":"50fa21e996ab5860160c4955","created_at":"2010-03-29T18:24:41Z","updated_at":"2013-05-21T01:06:58Z","name":"Canon
82
+ EOS Rebel XTi","slug":"canon-eos-rebel-xti","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f72bd0286d555030b34","50fb8da4bd0286d5550436d6","50fb8ed9bd0286d555043ead"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1236B002","price_grabber_id":"24712314","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"XTi","resource_uri":"/products/canon-eos-rebel-xti","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
83
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce42fbd02868f81012512","created_at":"2013-01-21T06:46:07Z","updated_at":"2013-01-21T06:46:07Z","name":"Canon-EOS-Rebel-XTi-101957.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s50x50_Canon-EOS-Rebel-XTi-101957.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s150x150_Canon-EOS-Rebel-XTi-101957.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s200x75_Canon-EOS-Rebel-XTi-101957.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s250x250_Canon-EOS-Rebel-XTi-101957.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x150_Canon-EOS-Rebel-XTi-101957.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x112_Canon-EOS-Rebel-XTi-101957.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s500x500_Canon-EOS-Rebel-XTi-101957.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x400_Canon-EOS-Rebel-XTi-101957.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x600_Canon-EOS-Rebel-XTi-101957.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s630x235_Canon-EOS-Rebel-XTi-101957.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x400_Canon-EOS-Rebel-XTi-101957.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x350_Canon-EOS-Rebel-XTi-101957.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x110_Canon-EOS-Rebel-XTi-101957.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg","file_size":6228,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce42fbd02868f81012512","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce42fbd02868f81012512"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd897801416790000010","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd897801416790000010"}}},{"id":"50fa21e996ab5860160c4956","created_at":"2010-03-29T18:24:43Z","updated_at":"2013-05-21T01:06:58Z","name":"Nikon
84
+ D80","slug":"nikon-d80","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5ff4bd0286d555030c98","50fc0ea4bd0286d5550978a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"25412","price_grabber_id":"23760802","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D80","resource_uri":"/products/nikon-d80","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
85
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce45fbd02868f81012532","created_at":"2013-01-21T06:46:54Z","updated_at":"2013-01-21T06:46:55Z","name":"Nikon-D80-101958.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s50x50_Nikon-D80-101958.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s150x150_Nikon-D80-101958.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s200x75_Nikon-D80-101958.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s250x250_Nikon-D80-101958.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x150_Nikon-D80-101958.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x112_Nikon-D80-101958.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s500x500_Nikon-D80-101958.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x400_Nikon-D80-101958.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x600_Nikon-D80-101958.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s630x235_Nikon-D80-101958.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x400_Nikon-D80-101958.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x350_Nikon-D80-101958.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x110_Nikon-D80-101958.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg","file_size":7738,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce45fbd02868f81012532","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce45fbd02868f81012532"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd897801416790000011","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd897801416790000011"}}},{"id":"50fa21ea96ab5860160c4957","created_at":"2010-03-29T18:24:45Z","updated_at":"2013-05-21T01:06:58Z","name":"Leica
86
+ M8","slug":"leica-m8","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb927cbd0286d5550456e4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"29253005","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b4","model":"M8","resource_uri":"/products/leica-m8","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
87
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd07f7bd028663f101a357","created_at":"2013-01-21T09:18:47Z","updated_at":"2013-01-21T09:18:47Z","name":"Leica-M8-101964.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s50x50_Leica-M8-101964.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s150x150_Leica-M8-101964.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s200x75_Leica-M8-101964.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s250x250_Leica-M8-101964.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x150_Leica-M8-101964.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x112_Leica-M8-101964.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s500x500_Leica-M8-101964.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x400_Leica-M8-101964.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x600_Leica-M8-101964.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s630x235_Leica-M8-101964.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x400_Leica-M8-101964.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x350_Leica-M8-101964.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x110_Leica-M8-101964.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg","file_size":5352,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07f7bd028663f101a357","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07f7bd028663f101a357"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd897801416790000012","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd897801416790000012"}}},{"id":"50fa21ea96ab5860160c4958","created_at":"2010-03-29T18:24:46Z","updated_at":"2013-05-21T01:06:59Z","name":"Panasonic
88
+ DMC-L1","slug":"panasonic-dmc-l1","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb601bbd0286d555030cdb"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DMCL1","price_grabber_id":"22919627","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b5","model":"DMC-L1","resource_uri":"/products/panasonic-dmc-l1","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
89
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0464bd0286027b01a22b","created_at":"2013-01-21T09:03:32Z","updated_at":"2013-01-21T09:03:32Z","name":"Panasonic-DMC-L1-101974.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s50x50_Panasonic-DMC-L1-101974.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s150x150_Panasonic-DMC-L1-101974.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s200x75_Panasonic-DMC-L1-101974.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s250x250_Panasonic-DMC-L1-101974.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x150_Panasonic-DMC-L1-101974.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x112_Panasonic-DMC-L1-101974.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s500x500_Panasonic-DMC-L1-101974.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x400_Panasonic-DMC-L1-101974.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x600_Panasonic-DMC-L1-101974.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s630x235_Panasonic-DMC-L1-101974.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x400_Panasonic-DMC-L1-101974.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x350_Panasonic-DMC-L1-101974.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x110_Panasonic-DMC-L1-101974.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg","file_size":4557,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0464bd0286027b01a22b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0464bd0286027b01a22b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd897801416790000013","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd897801416790000013"}}},{"id":"50fa21eb96ab5860160c4959","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:17Z","name":"Sigma
90
+ SD14","slug":"sigma-sd14","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb9472bd0286d5550466a9"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"28909658","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b6","model":"SD14","resource_uri":"/products/sigma-sd14","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd0838bd0286227201a371","created_at":"2013-01-21T09:19:52Z","updated_at":"2013-01-21T09:19:52Z","name":"Sigma-SD14-101981.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s50x50_Sigma-SD14-101981.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s150x150_Sigma-SD14-101981.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s200x75_Sigma-SD14-101981.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s250x250_Sigma-SD14-101981.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x150_Sigma-SD14-101981.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x112_Sigma-SD14-101981.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s500x500_Sigma-SD14-101981.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x400_Sigma-SD14-101981.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x600_Sigma-SD14-101981.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s630x235_Sigma-SD14-101981.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x400_Sigma-SD14-101981.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x350_Sigma-SD14-101981.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x110_Sigma-SD14-101981.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg","file_size":5178,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0838bd0286227201a371","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0838bd0286227201a371"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd897801416790000014","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd897801416790000014"}}},{"id":"50fa21eb96ab5860160c495a","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:59Z","name":"Sony
91
+ Alpha DSLR-A100","slug":"sony-alpha-dslr-a100","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60c6bd0286d555030e92"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DSLRA100","price_grabber_id":"20953889","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b7","model":"Alpha
92
+ DSLR-A100","resource_uri":"/products/sony-alpha-dslr-a100","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
93
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fc53b5bd028694ea001c1c","created_at":"2013-01-20T20:29:41Z","updated_at":"2013-01-20T20:29:41Z","name":"Sony-Alpha-DSLR-A100-102016.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s50x50_Sony-Alpha-DSLR-A100-102016.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s150x150_Sony-Alpha-DSLR-A100-102016.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s200x75_Sony-Alpha-DSLR-A100-102016.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s250x250_Sony-Alpha-DSLR-A100-102016.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x150_Sony-Alpha-DSLR-A100-102016.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x112_Sony-Alpha-DSLR-A100-102016.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s500x500_Sony-Alpha-DSLR-A100-102016.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x400_Sony-Alpha-DSLR-A100-102016.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x600_Sony-Alpha-DSLR-A100-102016.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s630x235_Sony-Alpha-DSLR-A100-102016.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x400_Sony-Alpha-DSLR-A100-102016.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x350_Sony-Alpha-DSLR-A100-102016.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x110_Sony-Alpha-DSLR-A100-102016.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg","file_size":6090,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc53b5bd028694ea001c1c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc53b5bd028694ea001c1c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd8a7801416790000015","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8a7801416790000015"}}},{"id":"50fa21ec96ab5860160c495b","created_at":"2010-03-29T18:24:50Z","updated_at":"2013-05-21T01:06:59Z","name":"Olympus
94
+ EVOLT E-510","slug":"olympus-evolt-e-510","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb604cbd0286d555030d22","50fb93afbd0286d5550461fe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"262070","price_grabber_id":"34859947","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
95
+ E-510","resource_uri":"/products/olympus-evolt-e-510","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
96
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd046ebd028662a701a22c","created_at":"2013-01-21T09:03:42Z","updated_at":"2013-01-21T09:03:42Z","name":"Olympus-EVOLT-E-510-102021.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s50x50_Olympus-EVOLT-E-510-102021.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s150x150_Olympus-EVOLT-E-510-102021.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s200x75_Olympus-EVOLT-E-510-102021.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s250x250_Olympus-EVOLT-E-510-102021.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x150_Olympus-EVOLT-E-510-102021.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x112_Olympus-EVOLT-E-510-102021.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s500x500_Olympus-EVOLT-E-510-102021.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x400_Olympus-EVOLT-E-510-102021.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x600_Olympus-EVOLT-E-510-102021.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s630x235_Olympus-EVOLT-E-510-102021.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x400_Olympus-EVOLT-E-510-102021.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x350_Olympus-EVOLT-E-510-102021.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x110_Olympus-EVOLT-E-510-102021.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg","file_size":6491,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd046ebd028662a701a22c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd046ebd028662a701a22c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd8a7801416790000016","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8a7801416790000016"}}},{"id":"50fa21ec96ab5860160c495c","created_at":"2010-03-29T18:24:52Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
97
+ D40","slug":"nikon-d40","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb8237bd0286d55503eefe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1901B004","price_grabber_id":"29541608","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D40","resource_uri":"/products/nikon-d40","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
98
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd067dbd02868f8101a2d4","created_at":"2013-01-21T09:12:29Z","updated_at":"2013-01-21T09:12:29Z","name":"Nikon-D40-102024.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s50x50_Nikon-D40-102024.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s150x150_Nikon-D40-102024.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s200x75_Nikon-D40-102024.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s250x250_Nikon-D40-102024.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x150_Nikon-D40-102024.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x112_Nikon-D40-102024.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s500x500_Nikon-D40-102024.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x400_Nikon-D40-102024.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x600_Nikon-D40-102024.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s630x235_Nikon-D40-102024.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x400_Nikon-D40-102024.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x350_Nikon-D40-102024.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x110_Nikon-D40-102024.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg","file_size":5104,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd067dbd02868f8101a2d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd067dbd02868f8101a2d4"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd8a7801416790000017","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8a7801416790000017"}}},{"id":"50fa21ed96ab5860160c495d","created_at":"2010-03-29T18:24:53Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
99
+ D200","slug":"nikon-d200","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f94bd0286d555030b7b","50fb8b70bd0286d555042ef3"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"13321369","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D200","resource_uri":"/products/nikon-d200","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
100
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce458bd02862d77012531","created_at":"2013-01-21T06:46:48Z","updated_at":"2013-01-21T06:46:48Z","name":"Nikon-D200-102025.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s50x50_Nikon-D200-102025.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s150x150_Nikon-D200-102025.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s200x75_Nikon-D200-102025.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s250x250_Nikon-D200-102025.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x150_Nikon-D200-102025.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x112_Nikon-D200-102025.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s500x500_Nikon-D200-102025.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x400_Nikon-D200-102025.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x600_Nikon-D200-102025.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s630x235_Nikon-D200-102025.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x400_Nikon-D200-102025.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x350_Nikon-D200-102025.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x110_Nikon-D200-102025.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg","file_size":6424,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce458bd02862d77012531","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce458bd02862d77012531"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd8a7801416790000018","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8a7801416790000018"}}}]}'
218
101
  http_version:
219
- recorded_at: Wed, 24 Jul 2013 21:02:51 GMT
102
+ recorded_at: Mon, 29 Jul 2013 21:24:26 GMT
220
103
  - request:
221
104
  method: get
222
105
  uri: https://the-guide-staging.herokuapp.com/api/v1/products?page=2
@@ -231,221 +114,95 @@ http_interactions:
231
114
  Accept-Encoding:
232
115
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
233
116
  Accept:
234
- - ! '*/*'
117
+ - '*/*'
235
118
  response:
236
119
  status:
237
120
  code: 200
238
- message: !binary |-
239
- T0s=
121
+ message: OK
240
122
  headers:
241
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctQ3JlZGVudGlhbHM=":
242
- - !binary |-
243
- dHJ1ZQ==
244
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctSGVhZGVycw==":
245
- - !binary |-
246
- eC1wYWdpbmF0aW9uLCB4LXJlcXVlc3RlZC13aXRoLCB4LXJlcXVlc3RlZC1i
247
- eSwgeC1yZXZpZXdlZC1hdXRob3JpemF0aW9uLCB4LXNraXAtY2FjaGUsIENv
248
- bnRlbnQtVHlwZQ==
249
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctTWV0aG9kcw==":
250
- - !binary |-
251
- T1BUSU9OUywgR0VULCBQT1NULCBQVVQsIERFTEVURQ==
252
- !binary "QWNjZXNzLUNvbnRyb2wtQWxsb3ctT3JpZ2lu":
253
- - !binary |-
254
- Kg==
255
- !binary "QWNjZXNzLUNvbnRyb2wtTWF4LUFnZQ==":
256
- - !binary |-
257
- MTAwMA==
258
- !binary "Q2FjaGUtQ29udHJvbA==":
259
- - !binary |-
260
- bm8tY2FjaGUsIG5vLXN0b3Jl
261
- !binary "Q29udGVudC1FbmNvZGluZw==":
262
- - !binary |-
263
- Z3ppcA==
264
- !binary "Q29udGVudC1UeXBl":
265
- - !binary |-
266
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
267
- !binary "RGF0ZQ==":
268
- - !binary |-
269
- V2VkLCAyNCBKdWwgMjAxMyAyMTowMjo1MiBHTVQ=
270
- !binary "U3RhdHVz":
271
- - !binary |-
272
- MjAwIE9L
273
- !binary "U3RyaWN0LVRyYW5zcG9ydC1TZWN1cml0eQ==":
274
- - !binary |-
275
- bWF4LWFnZT0zMTUzNjAwMA==
276
- !binary "VmFyeQ==":
277
- - !binary |-
278
- QWNjZXB0LUVuY29kaW5n
279
- !binary "WC1SYWNrLUNhY2hl":
280
- - !binary |-
281
- bWlzcw==
282
- !binary "WC1SZXF1ZXN0LUlk":
283
- - !binary |-
284
- ODM3ODIyMTA5NjgxYmY4Mzc5ZTdhZjcyYTc0NGQ1ZDg=
285
- !binary "WC1SdW50aW1l":
286
- - !binary |-
287
- MC4yMTY1MDc=
288
- !binary "WC1VYS1Db21wYXRpYmxl":
289
- - !binary |-
290
- SUU9RWRnZSxjaHJvbWU9MQ==
291
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
292
- - !binary |-
293
- Y2h1bmtlZA==
294
- !binary "Q29ubmVjdGlvbg==":
295
- - !binary |-
296
- a2VlcC1hbGl2ZQ==
123
+ Access-Control-Allow-Credentials:
124
+ - 'true'
125
+ Access-Control-Allow-Headers:
126
+ - x-pagination, x-requested-with, x-requested-by, x-reviewed-authorization,
127
+ x-skip-cache, Content-Type
128
+ Access-Control-Allow-Methods:
129
+ - OPTIONS, GET, POST, PUT, DELETE
130
+ Access-Control-Allow-Origin:
131
+ - '*'
132
+ Access-Control-Max-Age:
133
+ - '1000'
134
+ Cache-Control:
135
+ - no-cache, no-store
136
+ Content-Type:
137
+ - application/json; charset=utf-8
138
+ Date:
139
+ - Mon, 29 Jul 2013 21:24:33 GMT
140
+ Status:
141
+ - 200 OK
142
+ Strict-Transport-Security:
143
+ - max-age=31536000
144
+ Vary:
145
+ - Accept-Encoding
146
+ X-Rack-Cache:
147
+ - miss
148
+ X-Request-Id:
149
+ - 4a75a9ef754ef7427996c509c7803212
150
+ X-Runtime:
151
+ - '6.233503'
152
+ X-Ua-Compatible:
153
+ - IE=Edge,chrome=1
154
+ Transfer-Encoding:
155
+ - chunked
156
+ Connection:
157
+ - keep-alive
297
158
  body:
298
- encoding: ASCII-8BIT
299
- string: !binary |-
300
- H4sIAPxA8FEAA+ydWY/jNrqG/4rhi8EMTivFRaQk32XpwRnM1pgOgiDBQUFr
301
- t5Mq27BcnU6C/PdDbS5LIs2P+mx3TUO5mOkqqeTHlEjpfcTl9+UufrfexIf1
302
- drNc/b48bA/xw3JFgzAQr5qf7tUeeblchZH/alms9+Wh/s1yVcQPZf5q+RAP
303
- f7Pb5x/W26ey/S19tdzkH7t9+Kvl9ulwvy3uk+3TJiuPf7UtijI/LFeMvFqm
304
- T/t9vun+hKlD5vvuB7VZbdqv8/J+uzn+8o9Xyyw+xMvVj78v19lytRSkiJkf
305
- k0jGiQgloZKkgobpUh19n8eHPLuP1actGaHEI6HH6Lc0WFF/5csf1D5Pu6y3
306
- D/eIqPYhdEWilc+qfTbxo/rs5ddxud4uXn9cP6wfF6+/936gRBC1uXx4eqc2
307
- p9VmL683q//zfms33x9+3VV//vohTw/77WadlqvV1+qQ+1j94812vTl8ucne
308
- vt9uD2rvamdVVj/+36vlY7nfLVebp4eHV8t4f1inD/n9uirIH6svnUge0CQj
309
- LJSZEIJwGhfZUv3ZL3lSrg8nu+ZSRlnQ7OqHOan/q3fdPSUP6/L9fXVNNAVE
310
- mUfFt4SpK2NFxP8QsiKkLqW0+gbf11/5q79/89WyOvvrNL9/t4+TRJ20+lxw
311
- ztQpCCO1df+UqO333SmK8iziDYLkNQOPmdot2ceb7HQvWfT2IqlUez1us/yh
312
- AhiV/T4vt097xfG0X6sd7nb7bfaUHso709mI9+n79Yf8vjyo067+Ivn1vroA
313
- 1JZ1eV+m2/168+4+icv8Yb15vtLbv1KYh/1T3n27qiLZvuDwGlTXF/Vo9K0q
314
- WT9aMW64Bkf7tNcgIyRYqCJbqH+Ei/riWfxpUV88i/+o2r15Vy7+vK//4ZW7
315
- PC0X7/bbp91flnXVelyXqlQ2ZQWuuI5fp4E8ftuG5/hjlpfquv21/VlVwHi3
316
- vlfF83N9nHT7UF3Ybbuyr8/Tndrj7gO9a4qpVB/+fp8XasP7w2FXru7uDu9z
317
- 793TOss9dR5Uu/Tui/f5fvvzU7zbfZFuH4d//8fziTZ+yN2Zk4D6dPOB//ij
318
- KozDIU7fP6qmquw1ShkRNG7+hCSUE6paKd90QVQNTrQicsV94wUx2Oe0UfKa
319
- iuF1FcOjhEY8/OKn3bu2SVF7FuuH6jJX37huFz7Em/Xh16oV+JDvj1dFKchH
320
- VU+aslJFVbXw+S95diypkn8RP8a/bTfxL2VTWMfvfycyJvLcj+IsyJNUJESo
321
- lomwVAqfS+6LuOBBzHh613zKPYC9pGpXegOi9nNATKrufQzE1ZGaj4ERKXp2
322
- g1JqPwfExMltzlz7OXAmym7DRBmISZCqMtyiztWfA2KSal//Bkzt54CZ5I2Y
323
- JJSJq/rAr98UtJ8DYor825y79nPATPwGbUH7OWAmSm/DpD4HwqSePquQ9nBt
324
- JiuKeq5J413zUNcGkIfD/UGlu+7nJoT9vnza62jbx3D19zcCflU/3tyX69+q
325
- IMolkeobbDeHKly2zz/rRxUh737a5fXX221VSKq/H6mizDbN1aPx5l339T7B
326
- w/Lpg+TUR9bTY5x9aD7Z8e7Mwyqawnxw9fCsnj2Tp4ef7592D9s4a1PvhUpe
327
- hcZ4o074Mcvdd9Fwwqk5/unUEjke4OxJOYZXQQvik0LEJIuiMEvSos7sAv35
328
- 5iNXWea8UcmsRkWY0uzRqIgVC0/Cy1+fflqrevu4WPxVnaE364+LtwE5USpF
329
- u90r1Obd+qNXNpunKZXl64+qPcjybPHDdvu4PGtYrupRDPLED0LBItaXJw3c
330
- SJMEspdGaXKqSdpCNLoRU7Fe2o20Z/nzdw/4DzlnEtTtMGzbz5xHeeUezGqJ
331
- kW8ZXfnCrDdH+5xURq+th151CXnNDTa6tUZQVSySSZ7HjCZhQLKCkizJKQ/C
332
- NAt8PytyXz0lhKLTCDZwpEOA43QOwQqEEghwnlYg2HFQ9sCBp7UHViCcOoAD
333
- deoABjTZGzgCUWYHwkkDlxrWSAMrEM4YwIE6YwACmq4L3IAkCAjlChyAWldg
334
- BcKJAjhQJwpAQNMtgRsQh1R7nCJwA6oUgQ0I6QfAQOc5biQHLkTbMwOSMzaL
335
- AQcxYHr2vIgY0B98FgNWMSAH8V1eTAyMjzwWA3QgBnK7GAgdu1q8jR/Lp827
336
- xdvwtIdF2fzWK8OrdqwIcz886Vjh8zgNr9ux4kxvioDBhMCw30QSngqB8Hxn
337
- iUHBzh7ghXqAJGp7/Ijq1kd85pNzHkBdbHTForMe4GSfft3zqoumvpH65NYG
338
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- /OqiaW6T/q3zfSYCRkkSSBbmoYJlhU9VHRMkjjLqqwJgNIvSnAzf3o+Rkcke
357
- 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
- 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
- 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
- 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
- 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
- FIRhmMSCRIL6sUzSKI1zkTCfhgkLYs7SQJPGB8jINA4H0aTxIQoqjcNJxml8
363
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- XpAomBtHt8Yxv1rjmAMaR11Xi9PGUa4IpCNTr3FUF0L8cfHv6hls8SU7GVq0
381
- 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
- 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
- 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
- jtSCgxOkcJxOkEJwJttRRxzKbDg4NepSqxo1asHBeVE4TudFATjTpagbjgTg
385
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- qTZ7ZdZs/kyMgVRlKn02raMUPzEG4wI8M6BKX6SzM3ixziBqzrzwRTMtVGRx
395
- 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
- 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
- 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
- lZ0Jpw/gTM8jrWBM0/2BGxMHtgU4geDG1Iy2sjIhDQKYyYpyI4VwOeDBmqFy
399
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- DAoq9cNJ2tR/DgSV9h1I2rR/BgWX8uEoXcq3oUxO944oKt2fQcGlepfa06T6
424
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- FCLneSocHYr2WfVSDkVz8NmhODuU6WfEfuSxQwkGDqWwO5TQ0aHUixEvjosR
440
- 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
- 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
- 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
- 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
- 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
- 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
- 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
159
+ encoding: UTF-8
160
+ string: '{"pagination":{"total":17875,"total_pages":894,"first_page":false,"last_page":false,"previous_page":1,"next_page":3,"out_of_bounds":false,"offset":20,"current_page":2,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa21ee96ab5860160c495e","created_at":"2010-03-29T18:24:55Z","updated_at":"2013-05-21T01:06:59Z","name":"Canon
161
+ EOS 30D","slug":"canon-eos-30d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb6057bd0286d555030d6d","50fb8bf5bd0286d555043068"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"17423818","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"30D","resource_uri":"/products/canon-eos-30d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
162
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd047bbd028600af01a22d","created_at":"2013-01-21T09:03:55Z","updated_at":"2013-01-21T09:03:55Z","name":"Canon-EOS-30D-102026.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s50x50_Canon-EOS-30D-102026.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s150x150_Canon-EOS-30D-102026.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s200x75_Canon-EOS-30D-102026.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s250x250_Canon-EOS-30D-102026.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s300x150_Canon-EOS-30D-102026.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s300x112_Canon-EOS-30D-102026.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s500x500_Canon-EOS-30D-102026.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s600x400_Canon-EOS-30D-102026.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s600x600_Canon-EOS-30D-102026.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s630x235_Canon-EOS-30D-102026.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s940x400_Canon-EOS-30D-102026.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s940x350_Canon-EOS-30D-102026.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/s940x110_Canon-EOS-30D-102026.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/Canon-EOS-30D-102026.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/83de2bac85f8026e8567bd3fe94490b77a2a26f3/Canon-EOS-30D-102026.jpg","file_size":4873,"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/50fd047bbd028600af01a22d","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd047bbd028600af01a22d"}}}],"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/51f6dd8b7801416790000019","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b7801416790000019"}}},{"id":"50fa21ee96ab5860160c495f","created_at":"2010-03-29T18:24:56Z","updated_at":"2013-05-21T01:07:00Z","name":"Canon
163
+ EOS Rebel XT","slug":"canon-eos-rebel-xt","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f5bbd0286d555030ae3","50fb8ad3bd0286d555042b60"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"7139451","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"XT","resource_uri":"/products/canon-eos-rebel-xt","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
164
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce429bd02862d7701248b","created_at":"2013-01-21T06:46:01Z","updated_at":"2013-01-21T06:46:01Z","name":"Canon-EOS-Rebel-XT-102027.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s50x50_Canon-EOS-Rebel-XT-102027.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s150x150_Canon-EOS-Rebel-XT-102027.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s200x75_Canon-EOS-Rebel-XT-102027.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s250x250_Canon-EOS-Rebel-XT-102027.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s300x150_Canon-EOS-Rebel-XT-102027.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s300x112_Canon-EOS-Rebel-XT-102027.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s500x500_Canon-EOS-Rebel-XT-102027.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s600x400_Canon-EOS-Rebel-XT-102027.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s600x600_Canon-EOS-Rebel-XT-102027.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s630x235_Canon-EOS-Rebel-XT-102027.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s940x400_Canon-EOS-Rebel-XT-102027.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s940x350_Canon-EOS-Rebel-XT-102027.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/s940x110_Canon-EOS-Rebel-XT-102027.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/Canon-EOS-Rebel-XT-102027.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/2066c5cf21faca866fb87a71e885d2dd17c48621/Canon-EOS-Rebel-XT-102027.jpg","file_size":5991,"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/50fce429bd02862d7701248b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce429bd02862d7701248b"}}}],"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/51f6dd8b780141679000001a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b780141679000001a"}}},{"id":"50fa21ef96ab5860160c4960","created_at":"2010-03-29T18:24:58Z","updated_at":"2013-05-21T01:07:00Z","name":"Canon
165
+ EOS 5D","slug":"canon-eos-5d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb749dbd0286d5550385b4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"0296B002","price_grabber_id":"11259024","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"5D","resource_uri":"/products/canon-eos-5d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
166
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0673bd0286ac7501a2ce","created_at":"2013-01-21T09:12:19Z","updated_at":"2013-01-21T09:12:19Z","name":"Canon-EOS-5D-102028.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s50x50_Canon-EOS-5D-102028.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s150x150_Canon-EOS-5D-102028.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s200x75_Canon-EOS-5D-102028.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s250x250_Canon-EOS-5D-102028.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s300x150_Canon-EOS-5D-102028.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s300x112_Canon-EOS-5D-102028.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s500x500_Canon-EOS-5D-102028.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s600x400_Canon-EOS-5D-102028.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s600x600_Canon-EOS-5D-102028.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s630x235_Canon-EOS-5D-102028.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s940x400_Canon-EOS-5D-102028.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s940x350_Canon-EOS-5D-102028.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/s940x110_Canon-EOS-5D-102028.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/Canon-EOS-5D-102028.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/8836bb9dfeb3416930f48cd0646471be75947dbd/Canon-EOS-5D-102028.jpg","file_size":5708,"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/50fd0673bd0286ac7501a2ce","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0673bd0286ac7501a2ce"}}}],"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/51f6dd8b780141679000001b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b780141679000001b"}}},{"id":"50fa221f96ab5860160c49b4","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
167
+ PowerLite Home Cinema 1080","slug":"epson-powerlite-home-cinema-1080","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:00+00:00","upc":"","price_grabber_id":"35424051","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
168
+ Home Cinema 1080","resource_uri":"/products/epson-powerlite-home-cinema-1080","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd02862aee0012aa","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"60743099_160.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s50x50_60743099_160.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s150x150_60743099_160.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s200x75_60743099_160.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s250x250_60743099_160.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s300x150_60743099_160.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s300x112_60743099_160.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s500x500_60743099_160.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s600x400_60743099_160.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s600x600_60743099_160.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s630x235_60743099_160.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s940x400_60743099_160.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s940x350_60743099_160.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/s940x110_60743099_160.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/60743099_160.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/9f3b2569fbdebcd320f68ba787f1a31b122979a6/60743099_160.jpg","file_size":10017,"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/50fc5335bd02862aee0012aa","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd02862aee0012aa"}}}],"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/51f6dd8b780141679000001c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b780141679000001c"}}},{"id":"50fa222296ab5860160c49bf","created_at":"2010-05-20T19:18:50Z","updated_at":"2013-05-21T00:57:31Z","name":"Sanyo
169
+ PLC-XP100L","slug":"sanyo-plc-xp100l","_type":"Electronics::Projector","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000bf","model":"PLC-XP100L","resource_uri":"/products/sanyo-plc-xp100l","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"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/51f6dd8b780141679000001d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b780141679000001d"}}},{"id":"50fa21ef96ab5860160c4961","created_at":"2010-03-29T18:24:59Z","updated_at":"2013-05-21T00:57:30Z","name":"Olympus
170
+ EVOLT E-500","slug":"olympus-evolt-e-500","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60a9bd0286d555030db4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"12462251","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
171
+ E-500","resource_uri":"/products/olympus-evolt-e-500","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fce474bd0286027b012536","created_at":"2013-01-21T06:47:16Z","updated_at":"2013-01-21T06:47:16Z","name":"Olympus-EVOLT-E-500-102029.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s50x50_Olympus-EVOLT-E-500-102029.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s150x150_Olympus-EVOLT-E-500-102029.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s200x75_Olympus-EVOLT-E-500-102029.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s250x250_Olympus-EVOLT-E-500-102029.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s300x150_Olympus-EVOLT-E-500-102029.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s300x112_Olympus-EVOLT-E-500-102029.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s500x500_Olympus-EVOLT-E-500-102029.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s600x400_Olympus-EVOLT-E-500-102029.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s600x600_Olympus-EVOLT-E-500-102029.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s630x235_Olympus-EVOLT-E-500-102029.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s940x400_Olympus-EVOLT-E-500-102029.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s940x350_Olympus-EVOLT-E-500-102029.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/s940x110_Olympus-EVOLT-E-500-102029.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/Olympus-EVOLT-E-500-102029.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/1086108216b5ac357df6c9119824749f7e11d585/Olympus-EVOLT-E-500-102029.jpg","file_size":5686,"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/50fce474bd0286027b012536","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce474bd0286027b012536"}}}],"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/51f6dd8b780141679000001e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8b780141679000001e"}}},{"id":"50fa21ef96ab5860160c4962","created_at":"2010-03-29T18:25:00Z","updated_at":"2013-05-21T00:57:30Z","name":"Nikon
172
+ D2Xs","slug":"nikon-d2xs","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"20724796","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D2Xs","resource_uri":"/products/nikon-d2xs","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc535bbd0286f12a00135c","created_at":"2013-01-20T20:28:11Z","updated_at":"2013-01-20T20:28:11Z","name":"Nikon-D2Xs-102030.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s50x50_Nikon-D2Xs-102030.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s150x150_Nikon-D2Xs-102030.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s200x75_Nikon-D2Xs-102030.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s250x250_Nikon-D2Xs-102030.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s300x150_Nikon-D2Xs-102030.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s300x112_Nikon-D2Xs-102030.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s500x500_Nikon-D2Xs-102030.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s600x400_Nikon-D2Xs-102030.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s600x600_Nikon-D2Xs-102030.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s630x235_Nikon-D2Xs-102030.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s940x400_Nikon-D2Xs-102030.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s940x350_Nikon-D2Xs-102030.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/s940x110_Nikon-D2Xs-102030.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/Nikon-D2Xs-102030.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3bc7c26b5c4b14319712919fb18b1ca9cfb68b6c/Nikon-D2Xs-102030.jpg","file_size":6614,"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/50fc535bbd0286f12a00135c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc535bbd0286f12a00135c"}}}],"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/51f6dd8c780141679000001f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c780141679000001f"}}},{"id":"50fa21f096ab5860160c4963","created_at":"2010-03-29T18:25:01Z","updated_at":"2013-05-21T00:57:31Z","name":"Samsung
173
+ Digimax GX-10","slug":"samsung-digimax-gx-10","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"33258715","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b8","model":"Digimax
174
+ GX-10","resource_uri":"/products/samsung-digimax-gx-10","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc535bbd0286156c00135f","created_at":"2013-01-20T20:28:11Z","updated_at":"2013-01-20T20:28:11Z","name":"Samsung-Digimax-GX-10-102031.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s50x50_Samsung-Digimax-GX-10-102031.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s150x150_Samsung-Digimax-GX-10-102031.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s200x75_Samsung-Digimax-GX-10-102031.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s250x250_Samsung-Digimax-GX-10-102031.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s300x150_Samsung-Digimax-GX-10-102031.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s300x112_Samsung-Digimax-GX-10-102031.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s500x500_Samsung-Digimax-GX-10-102031.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s600x400_Samsung-Digimax-GX-10-102031.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s600x600_Samsung-Digimax-GX-10-102031.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s630x235_Samsung-Digimax-GX-10-102031.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s940x400_Samsung-Digimax-GX-10-102031.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s940x350_Samsung-Digimax-GX-10-102031.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/s940x110_Samsung-Digimax-GX-10-102031.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/Samsung-Digimax-GX-10-102031.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f2298c0b645e8b5dc0221d54568a66ad37ee12f2/Samsung-Digimax-GX-10-102031.jpg","file_size":5870,"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/50fc535bbd0286156c00135f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc535bbd0286156c00135f"}}}],"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/51f6dd8c7801416790000020","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000020"}}},{"id":"50fa21f096ab5860160c4964","created_at":"2010-03-29T18:25:02Z","updated_at":"2013-05-21T00:57:31Z","name":"Canon
175
+ EOS 1Ds Mark II","slug":"canon-eos-1ds-mark-ii","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"4558042","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b3","model":"1Ds
176
+ Mark II","resource_uri":"/products/canon-eos-1ds-mark-ii","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc535cbd028694ea001364","created_at":"2013-01-20T20:28:12Z","updated_at":"2013-01-20T20:28:12Z","name":"Canon-EOS-1Ds-Mark-II-102032.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s50x50_Canon-EOS-1Ds-Mark-II-102032.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s150x150_Canon-EOS-1Ds-Mark-II-102032.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s200x75_Canon-EOS-1Ds-Mark-II-102032.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s250x250_Canon-EOS-1Ds-Mark-II-102032.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s300x150_Canon-EOS-1Ds-Mark-II-102032.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s300x112_Canon-EOS-1Ds-Mark-II-102032.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s500x500_Canon-EOS-1Ds-Mark-II-102032.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s600x400_Canon-EOS-1Ds-Mark-II-102032.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s600x600_Canon-EOS-1Ds-Mark-II-102032.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s630x235_Canon-EOS-1Ds-Mark-II-102032.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s940x400_Canon-EOS-1Ds-Mark-II-102032.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s940x350_Canon-EOS-1Ds-Mark-II-102032.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/s940x110_Canon-EOS-1Ds-Mark-II-102032.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/Canon-EOS-1Ds-Mark-II-102032.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ee5358c62246b6091263384f148ac7a52d88247c/Canon-EOS-1Ds-Mark-II-102032.jpg","file_size":5833,"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/50fc535cbd028694ea001364","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc535cbd028694ea001364"}}}],"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/51f6dd8c7801416790000021","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000021"}}},{"id":"50fa21f096ab5860160c4965","created_at":"2010-03-29T18:25:03Z","updated_at":"2013-05-21T01:06:17Z","name":"Nikon
177
+ D50","slug":"nikon-d50","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60ebbd0286d555030edf"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"25216","price_grabber_id":"8233642","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D50","resource_uri":"/products/nikon-d50","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
178
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fca31fbd028663f100c385","created_at":"2013-01-21T02:08:31Z","updated_at":"2013-01-21T02:08:31Z","name":"Nikon-D50-102033.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s50x50_Nikon-D50-102033.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s150x150_Nikon-D50-102033.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s200x75_Nikon-D50-102033.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s250x250_Nikon-D50-102033.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s300x150_Nikon-D50-102033.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s300x112_Nikon-D50-102033.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s500x500_Nikon-D50-102033.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s600x400_Nikon-D50-102033.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s600x600_Nikon-D50-102033.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s630x235_Nikon-D50-102033.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s940x400_Nikon-D50-102033.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s940x350_Nikon-D50-102033.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/s940x110_Nikon-D50-102033.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/Nikon-D50-102033.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/770fb35d2365cb01eaa8680a76683a9e68b9458f/Nikon-D50-102033.jpg","file_size":10752,"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/50fca31fbd028663f100c385","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fca31fbd028663f100c385"}}}],"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/51f6dd8c7801416790000022","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000022"}}},{"id":"50fa21f196ab5860160c4966","created_at":"2010-03-29T18:25:04Z","updated_at":"2013-05-21T00:57:31Z","name":"Nikon
179
+ D70s","slug":"nikon-d70s","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"8255541","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D70s","resource_uri":"/products/nikon-d70s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc535cbd0286de7b001367","created_at":"2013-01-20T20:28:12Z","updated_at":"2013-01-20T20:28:12Z","name":"Nikon-D70s-102034.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s50x50_Nikon-D70s-102034.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s150x150_Nikon-D70s-102034.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s200x75_Nikon-D70s-102034.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s250x250_Nikon-D70s-102034.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s300x150_Nikon-D70s-102034.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s300x112_Nikon-D70s-102034.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s500x500_Nikon-D70s-102034.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s600x400_Nikon-D70s-102034.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s600x600_Nikon-D70s-102034.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s630x235_Nikon-D70s-102034.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s940x400_Nikon-D70s-102034.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s940x350_Nikon-D70s-102034.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/s940x110_Nikon-D70s-102034.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/Nikon-D70s-102034.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/2c87590370ff282da1f327c41830c9e2430b8afc/Nikon-D70s-102034.jpg","file_size":6318,"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/50fc535cbd0286de7b001367","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc535cbd0286de7b001367"}}}],"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/51f6dd8c7801416790000023","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000023"}}},{"id":"50fa21f196ab5860160c4967","created_at":"2010-03-29T18:25:05Z","updated_at":"2013-05-21T01:07:00Z","name":"Nikon
180
+ D70","slug":"nikon-d70","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb91c3bd0286d5550452eb"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"97693455","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D70","resource_uri":"/products/nikon-d70","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd07debd0286258101a34e","created_at":"2013-01-21T09:18:22Z","updated_at":"2013-01-21T09:18:22Z","name":"Nikon-D70-102906.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s50x50_Nikon-D70-102906.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s150x150_Nikon-D70-102906.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s200x75_Nikon-D70-102906.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s250x250_Nikon-D70-102906.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s300x150_Nikon-D70-102906.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s300x112_Nikon-D70-102906.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s500x500_Nikon-D70-102906.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s600x400_Nikon-D70-102906.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s600x600_Nikon-D70-102906.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s630x235_Nikon-D70-102906.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s940x400_Nikon-D70-102906.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s940x350_Nikon-D70-102906.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/s940x110_Nikon-D70-102906.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/Nikon-D70-102906.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ad362b6744d89db4031b25cda3efd8a2cc5d22d6/Nikon-D70-102906.jpg","file_size":11225,"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/50fd07debd0286258101a34e","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07debd0286258101a34e"}}}],"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/51f6dd8c7801416790000024","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000024"}}},{"id":"50fa21f296ab5860160c4968","created_at":"2010-03-29T18:25:07Z","updated_at":"2013-05-21T01:07:00Z","name":"Canon
181
+ EOS 1D Mark II N","slug":"canon-eos-1d-mark-ii-n","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb755ebd0286d555038abc"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1888B002","price_grabber_id":"12637875","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"1D
182
+ Mark II N","resource_uri":"/products/canon-eos-1d-mark-ii-n","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
183
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0675bd0286e39e01a2d0","created_at":"2013-01-21T09:12:21Z","updated_at":"2013-01-21T09:12:21Z","name":"Canon-EOS-1D-Mark-II-N-102908.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s50x50_Canon-EOS-1D-Mark-II-N-102908.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s150x150_Canon-EOS-1D-Mark-II-N-102908.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s200x75_Canon-EOS-1D-Mark-II-N-102908.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s250x250_Canon-EOS-1D-Mark-II-N-102908.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s300x150_Canon-EOS-1D-Mark-II-N-102908.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s300x112_Canon-EOS-1D-Mark-II-N-102908.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s500x500_Canon-EOS-1D-Mark-II-N-102908.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s600x400_Canon-EOS-1D-Mark-II-N-102908.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s600x600_Canon-EOS-1D-Mark-II-N-102908.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s630x235_Canon-EOS-1D-Mark-II-N-102908.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s940x400_Canon-EOS-1D-Mark-II-N-102908.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s940x350_Canon-EOS-1D-Mark-II-N-102908.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/s940x110_Canon-EOS-1D-Mark-II-N-102908.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/Canon-EOS-1D-Mark-II-N-102908.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/db2aa5cc32fc16727acd20f78eca7e6e34bb58f6/Canon-EOS-1D-Mark-II-N-102908.jpg","file_size":9230,"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/50fd0675bd0286e39e01a2d0","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0675bd0286e39e01a2d0"}}}],"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/51f6dd8c7801416790000025","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8c7801416790000025"}}},{"id":"50fa21f296ab5860160c4969","created_at":"2010-03-29T18:25:08Z","updated_at":"2013-05-21T01:07:00Z","name":"Fujifilm FinePix
184
+ S3 Pro","slug":"fujifilm-finepix-s3-pro","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5ef9bd0286d555030a70"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"4438644","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed76bd0286638e0001b6","model":"S3
185
+ Pro","resource_uri":"/products/fujifilm-finepix-s3-pro","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
186
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0448bd028600af01a227","created_at":"2013-01-21T09:03:04Z","updated_at":"2013-01-21T09:03:04Z","name":"Fujifilm-FinePix-S3-Pro-102909.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s50x50_Fujifilm-FinePix-S3-Pro-102909.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s150x150_Fujifilm-FinePix-S3-Pro-102909.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s200x75_Fujifilm-FinePix-S3-Pro-102909.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s250x250_Fujifilm-FinePix-S3-Pro-102909.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s300x150_Fujifilm-FinePix-S3-Pro-102909.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s300x112_Fujifilm-FinePix-S3-Pro-102909.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s500x500_Fujifilm-FinePix-S3-Pro-102909.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s600x400_Fujifilm-FinePix-S3-Pro-102909.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s600x600_Fujifilm-FinePix-S3-Pro-102909.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s630x235_Fujifilm-FinePix-S3-Pro-102909.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s940x400_Fujifilm-FinePix-S3-Pro-102909.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s940x350_Fujifilm-FinePix-S3-Pro-102909.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/s940x110_Fujifilm-FinePix-S3-Pro-102909.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/Fujifilm-FinePix-S3-Pro-102909.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7e7b98e1ac886070ca03cd4b027436ab5ed796a6/Fujifilm-FinePix-S3-Pro-102909.jpg","file_size":13496,"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/50fd0448bd028600af01a227","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0448bd028600af01a227"}}}],"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/51f6dd8d7801416790000026","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8d7801416790000026"}}},{"id":"50fa21f396ab5860160c496a","created_at":"2010-03-29T18:25:10Z","updated_at":"2013-05-21T01:07:00Z","name":"Pentax
187
+ *ist DL","slug":"pentax-ist-dl","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f2abd0286d555030aa7"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"9482508","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6ebd0286638e0000af","model":"*ist
188
+ DL","resource_uri":"/products/pentax-ist-dl","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
189
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd044abd0286e39e01a228","created_at":"2013-01-21T09:03:06Z","updated_at":"2013-01-21T09:03:06Z","name":"Pentax--ist-DL-102910.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s50x50_Pentax--ist-DL-102910.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s150x150_Pentax--ist-DL-102910.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s200x75_Pentax--ist-DL-102910.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s250x250_Pentax--ist-DL-102910.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s300x150_Pentax--ist-DL-102910.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s300x112_Pentax--ist-DL-102910.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s500x500_Pentax--ist-DL-102910.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s600x400_Pentax--ist-DL-102910.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s600x600_Pentax--ist-DL-102910.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s630x235_Pentax--ist-DL-102910.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s940x400_Pentax--ist-DL-102910.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s940x350_Pentax--ist-DL-102910.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/s940x110_Pentax--ist-DL-102910.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/Pentax--ist-DL-102910.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e3ec2e9f33753285db5bbeaccdbafe3870b1b524/Pentax--ist-DL-102910.jpg","file_size":3951,"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/50fd044abd0286e39e01a228","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd044abd0286e39e01a228"}}}],"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/51f6dd8d7801416790000027","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8d7801416790000027"}}},{"id":"50fa21f396ab5860160c496b","created_at":"2010-03-29T18:25:11Z","updated_at":"2013-05-21T01:07:01Z","name":"Samsung
190
+ GX 1S","slug":"samsung-gx-1s","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb68e8bd0286d555032e3c"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"28910067","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b8","model":"GX
191
+ 1S","resource_uri":"/products/samsung-gx-1s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
192
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0610bd028600af01a273","created_at":"2013-01-21T09:10:40Z","updated_at":"2013-01-21T09:10:40Z","name":"Samsung-GX-1S-102911.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s50x50_Samsung-GX-1S-102911.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s150x150_Samsung-GX-1S-102911.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s200x75_Samsung-GX-1S-102911.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s250x250_Samsung-GX-1S-102911.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s300x150_Samsung-GX-1S-102911.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s300x112_Samsung-GX-1S-102911.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s500x500_Samsung-GX-1S-102911.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s600x400_Samsung-GX-1S-102911.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s600x600_Samsung-GX-1S-102911.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s630x235_Samsung-GX-1S-102911.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s940x400_Samsung-GX-1S-102911.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s940x350_Samsung-GX-1S-102911.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/s940x110_Samsung-GX-1S-102911.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/Samsung-GX-1S-102911.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/23365283fd07383ef909d359fe47458d9d7374e5/Samsung-GX-1S-102911.jpg","file_size":3447,"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/50fd0610bd028600af01a273","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0610bd028600af01a273"}}}],"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/51f6dd8d7801416790000028","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8d7801416790000028"}}},{"id":"50fa21f496ab5860160c496c","created_at":"2010-03-29T18:25:13Z","updated_at":"2013-05-21T01:07:01Z","name":"Olympus
193
+ EVOLT E-330","slug":"olympus-evolt-e-330","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5fbdbd0286d555030bc2","50fb9464bd0286d555046679"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"17210005","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
194
+ E-330","resource_uri":"/products/olympus-evolt-e-330","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
195
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd044fbd02860b1301a229","created_at":"2013-01-21T09:03:11Z","updated_at":"2013-01-21T09:03:11Z","name":"Olympus-EVOLT-E-330-102917.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s50x50_Olympus-EVOLT-E-330-102917.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s150x150_Olympus-EVOLT-E-330-102917.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s200x75_Olympus-EVOLT-E-330-102917.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s250x250_Olympus-EVOLT-E-330-102917.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s300x150_Olympus-EVOLT-E-330-102917.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s300x112_Olympus-EVOLT-E-330-102917.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s500x500_Olympus-EVOLT-E-330-102917.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s600x400_Olympus-EVOLT-E-330-102917.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s600x600_Olympus-EVOLT-E-330-102917.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s630x235_Olympus-EVOLT-E-330-102917.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s940x400_Olympus-EVOLT-E-330-102917.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s940x350_Olympus-EVOLT-E-330-102917.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/s940x110_Olympus-EVOLT-E-330-102917.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/Olympus-EVOLT-E-330-102917.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/c18802f648a27c7734372125df4699a4737c778d/Olympus-EVOLT-E-330-102917.jpg","file_size":11611,"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/50fd044fbd02860b1301a229","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd044fbd02860b1301a229"}}}],"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/51f6dd8d7801416790000029","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8d7801416790000029"}}},{"id":"50fa21f496ab5860160c496d","created_at":"2010-03-29T18:25:14Z","updated_at":"2013-05-21T01:07:02Z","name":"Leica
196
+ DIGILUX 3","slug":"leica-digilux-3","_type":"Electronics::Cameras::DSLR","types":[],"msrp":2499.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"26374924","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b4","model":"DIGILUX
197
+ 3","resource_uri":"/products/leica-digilux-3","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
198
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fc535cbd0286cc5c001374","created_at":"2013-01-20T20:28:12Z","updated_at":"2013-01-20T20:28:12Z","name":"Leica-DIGILUX-3-102918.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s50x50_Leica-DIGILUX-3-102918.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s150x150_Leica-DIGILUX-3-102918.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s200x75_Leica-DIGILUX-3-102918.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s250x250_Leica-DIGILUX-3-102918.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s300x150_Leica-DIGILUX-3-102918.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s300x112_Leica-DIGILUX-3-102918.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s500x500_Leica-DIGILUX-3-102918.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s600x400_Leica-DIGILUX-3-102918.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s600x600_Leica-DIGILUX-3-102918.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s630x235_Leica-DIGILUX-3-102918.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s940x400_Leica-DIGILUX-3-102918.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s940x350_Leica-DIGILUX-3-102918.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/s940x110_Leica-DIGILUX-3-102918.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/Leica-DIGILUX-3-102918.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/291ca7be9db48120fc284c7107c2feaa26100acd/Leica-DIGILUX-3-102918.jpg","file_size":8444,"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/50fc535cbd0286cc5c001374","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc535cbd0286cc5c001374"}}}],"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/51f6dd8d780141679000002a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8d780141679000002a"}}},{"id":"50fa21f596ab5860160c496e","created_at":"2010-03-29T18:25:18Z","updated_at":"2013-05-21T01:07:02Z","name":"Canon
199
+ EOS-1D Mark III","slug":"canon-eos-1d-mark-iii","_type":"Electronics::Cameras::DSLR","types":[],"msrp":3999.0,"article_ids":["50fb6addbd0286d555033c27","50fb8ec2bd0286d555043e08"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1888B002","price_grabber_id":"35859610","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6fbd0286638e0000b3","model":"EOS-1D
200
+ Mark III","resource_uri":"/products/canon-eos-1d-mark-iii","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
201
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd065bbd02862d7701a288","created_at":"2013-01-21T09:11:55Z","updated_at":"2013-01-21T09:11:55Z","name":"Canon-EOS-1D-Mark-III-100381.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s50x50_Canon-EOS-1D-Mark-III-100381.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s150x150_Canon-EOS-1D-Mark-III-100381.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s200x75_Canon-EOS-1D-Mark-III-100381.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s250x250_Canon-EOS-1D-Mark-III-100381.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s300x150_Canon-EOS-1D-Mark-III-100381.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s300x112_Canon-EOS-1D-Mark-III-100381.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s500x500_Canon-EOS-1D-Mark-III-100381.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s600x400_Canon-EOS-1D-Mark-III-100381.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s600x600_Canon-EOS-1D-Mark-III-100381.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s630x235_Canon-EOS-1D-Mark-III-100381.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s940x400_Canon-EOS-1D-Mark-III-100381.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s940x350_Canon-EOS-1D-Mark-III-100381.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/s940x110_Canon-EOS-1D-Mark-III-100381.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/Canon-EOS-1D-Mark-III-100381.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7224b2780bcfaf934083f70e5798a52c54f3a5ac/Canon-EOS-1D-Mark-III-100381.jpg","file_size":6643,"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/50fd065bbd02862d7701a288","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd065bbd02862d7701a288"}}}],"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/51f6dd8e780141679000002b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8e780141679000002b"}}},{"id":"50fa21f696ab5860160c496f","created_at":"2010-03-29T18:25:19Z","updated_at":"2013-05-21T01:07:02Z","name":"Canon
202
+ EOS 40D","slug":"canon-eos-40d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":1499.0,"article_ids":["50fb612ebd0286d555030f22"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:00+00:00","upc":"1901B004","price_grabber_id":"47301134","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6fbd0286638e0000b3","model":"40D","resource_uri":"/products/canon-eos-40d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
203
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0482bd02860b1301a22f","created_at":"2013-01-21T09:04:02Z","updated_at":"2013-01-21T09:04:02Z","name":"Canon-EOS-40D-103072.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s50x50_Canon-EOS-40D-103072.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s150x150_Canon-EOS-40D-103072.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s200x75_Canon-EOS-40D-103072.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s250x250_Canon-EOS-40D-103072.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s300x150_Canon-EOS-40D-103072.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s300x112_Canon-EOS-40D-103072.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s500x500_Canon-EOS-40D-103072.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s600x400_Canon-EOS-40D-103072.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s600x600_Canon-EOS-40D-103072.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s630x235_Canon-EOS-40D-103072.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s940x400_Canon-EOS-40D-103072.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s940x350_Canon-EOS-40D-103072.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/s940x110_Canon-EOS-40D-103072.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/Canon-EOS-40D-103072.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ac0d2f5cb8b9ef041ea6cf31b955e2908e51e5fd/Canon-EOS-40D-103072.jpg","file_size":9924,"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/50fd0482bd02860b1301a22f","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0482bd02860b1301a22f"}}}],"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/51f6dd8f780141679000002c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd8f780141679000002c"}}}]}'
447
204
  http_version:
448
- recorded_at: Wed, 24 Jul 2013 21:02:52 GMT
205
+ recorded_at: Mon, 29 Jul 2013 21:24:33 GMT
449
206
  - request:
450
207
  method: get
451
208
  uri: https://the-guide-staging.herokuapp.com/api/v1/products?page=1
@@ -460,7 +217,7 @@ http_interactions:
460
217
  Accept-Encoding:
461
218
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
462
219
  Accept:
463
- - ! '*/*'
220
+ - '*/*'
464
221
  response:
465
222
  status:
466
223
  code: 200
@@ -474,17 +231,15 @@ http_interactions:
474
231
  Access-Control-Allow-Methods:
475
232
  - OPTIONS, GET, POST, PUT, DELETE
476
233
  Access-Control-Allow-Origin:
477
- - ! '*'
234
+ - '*'
478
235
  Access-Control-Max-Age:
479
236
  - '1000'
480
237
  Cache-Control:
481
238
  - no-cache, no-store
482
- Content-Encoding:
483
- - gzip
484
239
  Content-Type:
485
240
  - application/json; charset=utf-8
486
241
  Date:
487
- - Wed, 24 Jul 2013 21:02:54 GMT
242
+ - Mon, 29 Jul 2013 21:24:35 GMT
488
243
  Status:
489
244
  - 200 OK
490
245
  Strict-Transport-Security:
@@ -494,9 +249,9 @@ http_interactions:
494
249
  X-Rack-Cache:
495
250
  - miss
496
251
  X-Request-Id:
497
- - 220a74f192df4e342a2f133e0d9c9722
252
+ - d07d43f72dd4106879970eb74778f109
498
253
  X-Runtime:
499
- - '2.223410'
254
+ - '2.398022'
500
255
  X-Ua-Compatible:
501
256
  - IE=Edge,chrome=1
502
257
  Transfer-Encoding:
@@ -504,143 +259,48 @@ http_interactions:
504
259
  Connection:
505
260
  - keep-alive
506
261
  body:
507
- encoding: ASCII-8BIT
508
- string: !binary |-
509
- H4sIAP5A8FEAA+ydba/bNpaA/4rhD4tdbJTLV5Hyt26mgwG2nQ0mAXbQweJC
510
- L1Ti5l7bsH3TpEX/+1KW5GtbpHkoyuptoAJFEkumHpMizfP4iPxtvkk/LFfp
511
- frlezRe/zffrffowX2AhBX9V/+ten6F284VM2Kt5udzu9odX5ov99km9mj+k
512
- xxfK9GGnX9ls1efl+mnXvLp6enh4NV+pL+1p5NV8/bS/X5f32fppVeyOb1yX
513
- 5U7t5wv0ap4/bbdq1b4D60LVtn27PqwPbZdqd79eHV/8/dW8SPfpfPGv3+bL
514
- Yr6Yc1SmhCUiidOMyxjhGOUcCzHXpW9VulfFfaovNicIowjJiOD3WCwwWVD5
515
- kz7naVOcnUMjxKtzEF6gZMFQdc4qfdTXnv/t7eztx/V+vXtMt/vZj4xV19g9
516
- PH3Qxz5uos3xWPRYH7vff91Ub/z+QeX77Xq1zHeLxRtd2DbVf3m7Xq72362K
517
- dx/X670+uzpZV9K//u/V/HG33cwXSfI6SV7NdYHL/EHdL4vm6C8q2y337Qu6
518
- AlQcJ4XICkRkzKRCh/+KuT5185Q9LHcf76tWr2sAkwjz94jotl8g/p8ILRA6
519
- VEOuz5hXrbrM1f2HbZpluikONcwooxwjqY9unzJ9/PBy3d7ZNl0V921DJKqI
520
- y5ojpjVInui3Pa4LpW+3ebf6tmq3ftrqKz5tl/qEu812XTzl+92dsULTbf5x
521
- +Vnd7/a6zfTp2df7qvX0keXufpevt8vVh/ss3amH5er5Rm3eVbS3cv0hqm7Q
522
- NOz8cN89Lnc73T121QF94xxPr++iY2n1DXP8Z6F2umm/Nv/Wd2e6Wd7ry386
523
- lJOvH6q2b3rd9lAJd/qMu8/4rsbY6Yt/3Kqyuof2+81ucXe3/6iiD0/LQkX6
524
- c+pe++H1R7Vdf3pKN5vX+frx8v2/P9fiDS/ye/XR9vs0//ioe+XurP/lMRe8
525
- bvaEqRQhmibS0P9038IRQe8JXjC+INzS/zrnHPtf9HwDRdUNFGF9rRi9/nnz
526
- oelA+rRy+VDdEfpTHbrH53S13H+tOsNntT028I6jLxw19aGroxrL1C+qONbG
527
- jr5OH9Nf16v0l11dIccPf1cWWVpiwcqCl5xgVUohU1qiRLEMZYgoGQtOSXZX
528
- X+XeBb7D+jw8Ak5zHTcQQeiL4DfnqS8DwNHcZIT6aa7jBqJonAZrrgMEwmQc
529
- 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
- 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
- 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
- /Nz9vFGHj7ZZ69n/4bOharq+zpWet64+tB/tD5jJns4L+040T8u4OqM9OfHu
533
- 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
- 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
- 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
- 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
- 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
- jCqgCxSmAuBAFhVgBuqvAvyADCrAABSkAjyAzCqgCxSmAuBAFhVgBuqvAvyA
539
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 1CkDuC1HGSgDxBUZIAaRAeKlyAChxztGBs4MEF4yQEwy4E8hAxBKy8OYaeqA
547
- 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
- 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
- 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
- +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
- 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
- QAwqA5r6A8qApkYnGfBiZUBRNzsphDiMmblbBlCADKBWGVDdQPV3KhtbBlCF
553
- 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
- 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
- gAWovwzwA+rKABNQkAzwADLKAANQmAyAA5llgAWovwzwA+rKAAtQfxngB9SV
556
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- X+ImChImcKBGmAB4goyJB1BjTNxEYcoETtQqEyBRb2fiSYQJgChMmvj0s1qa
564
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 2RA4ki1fxIbU24h4IhkSRgxIYVbEp7eZM0YMSGFmBI5kSxmxIPW3I35IppwR
584
- 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
585
- yUjWZDDeiydsdIA+qRM/dWKcnA6lTgyFT+rEW50UN1MnhUGd5BfqxPT4/4U6
586
- ce5jeqFO/vr081L328fZ7K+6hd4uv8y+k+REnpTN8ajUh6sn69L68A3syR+w
587
- ZCllQnKSXDxEY1myVMRn4SbO4hML0tSa1X3Y6nFaqvSlL1UapyQ7rOhkVwW9
588
- lyqtel/UdLyouoX0FyqRIhnbE6gyp6xIWFbGBaJ5IrNM10DKUlWSRA9RnNIM
589
- JRluPYGDO1ASwGlaSeDiCTIEcJzGEDhpgvSAB06jB1w8YW4AztO6ARBPbzHg
590
- yYOJkyfMCvj0rdoKuHjClACcp1UCEJ7+PsCPJ4bwBMkAD55GBrh4wkwAnKc1
591
- ARCe/hrAj4cC+nuYA/DjqRyAgydQAIB5rmKMFP0PA3sW+lNBp8i/59KkZ3PN
592
- oZcmPSl8ivy9I//+LeIu2R35m363Po/8GWRtDW57auRH61Mjj7d6auSPCPcp
593
- xhJjDAr3AU95/OjxlMfjTZ7ymML9gHB/GgL9hsDyZkNgCRgCqXsI9JWf56sz
594
- v+P2xZl3/LZrMzMuT3PGCKLy5gsw88Q2SlYrC6FBVxYyLcDc1Ddw/eWmBaZk
595
- sW90gH+JyWLlyZr+1U9mpmd3zxPBrLOwzjnG5ZerLlH/pjq6AiZ5niFSUCWQ
596
- iGXCmCy40h9flfqPLGWJymQeS25efbkLHuiA4TjmxZcNQEESGM5jXHvZhBNk
597
- gT14jEsvG4DCNDAcyLzysg2otwf2BOosvGwAChPBPj3MtO6yASjMBMOBzMsu
598
- W4D6q2A/oO6qyyagIBfsAWRcdNkAFCaD4UDmNZctQP1tsB9Qd8llC1B/HewH
599
- 1F1xuQsU6IPBQNc5RhLCA9GeJ4MxQabn6HyTwUyTz8GSwbqFT0rY14cc8ndu
600
- 4kN0yV0fUlz4EOb0IRyyW9XZmh26iXaV1Zj98PSoI/S//Pgmev8TPTHD7QnR
601
- Q3VCVDzm0f5XekszgjJ6akaQqnXH7cyI/tD6M7+74kYkvzDIYW6En7iRy3q3
602
- u2VrS0yGZDIkIxkS1v60qGiiqu8R4nqcTg9Kzg2q2nMuB6Xo0DmipnMcZhsC
603
- ja1JyjKXopSSZIKVcZaLIlVFnpOUUpKQWFLOEJbquPoyiD7QlcCZjssKgaiC
604
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- SGZ6UOYzNa37Tzypab9cQOPcdqhcQEPhk5r21jD0ZhqGAjSMcGoYbEu7sWmY
615
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- OhTueTovj+nkTP2W1DTORYdaUtNQ+ORMnXZAXcTw/XeGdZfctQPlhR1I3HYA
623
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- yN8DqYn8AUhhCgCO1CoAIFJ/F+CHRGGDQJgU8EOqpIAbKdAOgJFcJCNpgsF4
636
- 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
- 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
- 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
- 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
- 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
- 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
- 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
643
- lUz3KAEA
262
+ encoding: UTF-8
263
+ string: '{"pagination":{"total":17875,"total_pages":894,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
264
+ PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
265
+ Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9140a0ce88bb000015","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9140a0ce88bb000015"}}},{"id":"50fa222096ab5860160c49b6","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Epson
266
+ MovieMate 30S","slug":"epson-moviemate-30s","_type":"Electronics::Projector","types":[],"msrp":1065.81,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"27671289","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"MovieMate
267
+ 30S","resource_uri":"/products/epson-moviemate-30s","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc545dbd0286f12a001f71","created_at":"2013-01-20T20:32:29Z","updated_at":"2013-01-20T20:32:29Z","name":"Epson-MovieMate-30S-102537.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s50x50_Epson-MovieMate-30S-102537.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s150x150_Epson-MovieMate-30S-102537.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s200x75_Epson-MovieMate-30S-102537.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s250x250_Epson-MovieMate-30S-102537.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x150_Epson-MovieMate-30S-102537.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s300x112_Epson-MovieMate-30S-102537.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s500x500_Epson-MovieMate-30S-102537.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x400_Epson-MovieMate-30S-102537.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s600x600_Epson-MovieMate-30S-102537.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s630x235_Epson-MovieMate-30S-102537.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x400_Epson-MovieMate-30S-102537.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x350_Epson-MovieMate-30S-102537.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/s940x110_Epson-MovieMate-30S-102537.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/68144c086f170d08f0b97a9a40ce475e92e3d930/Epson-MovieMate-30S-102537.jpg","file_size":2075,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc545dbd0286f12a001f71","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc545dbd0286f12a001f71"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9140a0ce88bb000016","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9140a0ce88bb000016"}}},{"id":"50fa222096ab5860160c49b7","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T01:00:22Z","name":"Optoma
268
+ HD73","slug":"optoma-hd73","_type":"Electronics::Projector","types":[],"msrp":136.51,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"31169103","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000ba","model":"HD73","resource_uri":"/products/optoma-hd73","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5473bd028694ea001f72","created_at":"2013-01-20T20:32:51Z","updated_at":"2013-01-20T20:32:51Z","name":"Optoma-HD73-102538.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s50x50_Optoma-HD73-102538.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s150x150_Optoma-HD73-102538.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s200x75_Optoma-HD73-102538.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s250x250_Optoma-HD73-102538.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x150_Optoma-HD73-102538.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s300x112_Optoma-HD73-102538.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s500x500_Optoma-HD73-102538.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x400_Optoma-HD73-102538.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s600x600_Optoma-HD73-102538.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s630x235_Optoma-HD73-102538.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x400_Optoma-HD73-102538.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x350_Optoma-HD73-102538.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/s940x110_Optoma-HD73-102538.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85e0995ca2bb60ce6c2bf63b50c05fe6f2adf7ba/Optoma-HD73-102538.jpg","file_size":1553,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5473bd028694ea001f72","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5473bd028694ea001f72"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9140a0ce88bb000017","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9140a0ce88bb000017"}}},{"id":"512cd7548087b2a042000821","created_at":"2013-02-26T15:40:04Z","updated_at":"2013-03-15T20:21:52Z","name":"Fujifilm
269
+ F900EXR","slug":"fujifilm-f900exr","_type":"Electronics::Cameras::PointAndShoot","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":null,"upc":"","price_grabber_id":"","rubric_id":null,"brand_id":"512ce232184a8a15e800019b","model":"","resource_uri":"/products/fujifilm-f900exr","archive_state":"by_date","is_scoring_baseline":false,"archived":false,"product_rating":null,"ranking":{"total":null,"rank":null,"percentile":null},"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9140a0ce88bb000018","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9140a0ce88bb000018"}}},{"id":"50fa21e596ab5860160c494e","created_at":"2010-03-29T18:24:31Z","updated_at":"2013-05-21T01:05:10Z","name":"Pentax
270
+ K100D","slug":"pentax-k100d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":699.0,"article_ids":["50fb9066bd0286d5550444be"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19156","price_grabber_id":"20384825","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000af","model":"K100D","resource_uri":"/products/pentax-k100d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd07a5bd02860b1301a338","created_at":"2013-01-21T09:17:25Z","updated_at":"2013-01-21T09:17:25Z","name":"Pentax-K100D-100331.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s50x50_Pentax-K100D-100331.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s150x150_Pentax-K100D-100331.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s200x75_Pentax-K100D-100331.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s250x250_Pentax-K100D-100331.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x150_Pentax-K100D-100331.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s300x112_Pentax-K100D-100331.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s500x500_Pentax-K100D-100331.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x400_Pentax-K100D-100331.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s600x600_Pentax-K100D-100331.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s630x235_Pentax-K100D-100331.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x400_Pentax-K100D-100331.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x350_Pentax-K100D-100331.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/s940x110_Pentax-K100D-100331.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7ae98c36bb973daaafff13d48e0d14d883a684d1/Pentax-K100D-100331.jpg","file_size":5019,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07a5bd02860b1301a338","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07a5bd02860b1301a338"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb000019","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb000019"}}},{"id":"50fa21e696ab5860160c494f","created_at":"2010-03-29T18:24:33Z","updated_at":"2013-05-21T01:06:58Z","name":"Fujifilm FinePix
271
+ S5 Pro","slug":"fujifilm-finepix-s5-pro","_type":"Electronics::Cameras::DSLR","types":[],"msrp":1999.0,"article_ids":["50fb5fe1bd0286d555030c15","50fb8e2abd0286d555043a12"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"600005590","price_grabber_id":"31925698","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed76bd0286638e0001b6","model":"S5
272
+ Pro","resource_uri":"/products/fujifilm-finepix-s5-pro","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
273
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0451bd02868f8101a22a","created_at":"2013-01-21T09:03:13Z","updated_at":"2013-01-21T09:03:13Z","name":"Fuji-FinePix-S5-Pro-100332.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s50x50_Fuji-FinePix-S5-Pro-100332.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s150x150_Fuji-FinePix-S5-Pro-100332.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s200x75_Fuji-FinePix-S5-Pro-100332.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s250x250_Fuji-FinePix-S5-Pro-100332.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x150_Fuji-FinePix-S5-Pro-100332.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s300x112_Fuji-FinePix-S5-Pro-100332.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s500x500_Fuji-FinePix-S5-Pro-100332.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x400_Fuji-FinePix-S5-Pro-100332.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s600x600_Fuji-FinePix-S5-Pro-100332.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s630x235_Fuji-FinePix-S5-Pro-100332.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x400_Fuji-FinePix-S5-Pro-100332.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x350_Fuji-FinePix-S5-Pro-100332.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/s940x110_Fuji-FinePix-S5-Pro-100332.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/0f08dad409f0e2fc028b30682a2734c1116d9ec5/Fuji-FinePix-S5-Pro-100332.jpg","file_size":6330,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0451bd02868f8101a22a","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0451bd02868f8101a22a"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001a"}}},{"id":"50fa21e696ab5860160c4950","created_at":"2010-03-29T18:24:35Z","updated_at":"2013-05-21T01:06:58Z","name":"Pentax
274
+ K100D Super","slug":"pentax-k100d-super","_type":"Electronics::Cameras::DSLR","types":[],"msrp":599.0,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47578386","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K100D
275
+ Super","resource_uri":"/products/pentax-k100d-super","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
276
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fc5336bd0286de7b0012ae","created_at":"2013-01-20T20:27:34Z","updated_at":"2013-01-20T20:27:34Z","name":"Canon-K100D-Super-100333.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s50x50_Canon-K100D-Super-100333.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s150x150_Canon-K100D-Super-100333.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s200x75_Canon-K100D-Super-100333.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s250x250_Canon-K100D-Super-100333.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x150_Canon-K100D-Super-100333.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s300x112_Canon-K100D-Super-100333.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s500x500_Canon-K100D-Super-100333.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x400_Canon-K100D-Super-100333.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s600x600_Canon-K100D-Super-100333.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s630x235_Canon-K100D-Super-100333.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x400_Canon-K100D-Super-100333.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x350_Canon-K100D-Super-100333.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/s940x110_Canon-K100D-Super-100333.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/e0769c77714759892db25ef994463c560f35c42f/Canon-K100D-Super-100333.jpg","file_size":4289,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5336bd0286de7b0012ae","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5336bd0286de7b0012ae"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001b"}}},{"id":"50fa21e796ab5860160c4951","created_at":"2010-03-29T18:24:36Z","updated_at":"2013-06-19T00:00:41Z","name":"Olympus
277
+ PEN E-P1","slug":"olympus-pen-e-p1-2","_type":"Electronics::Cameras::DSLR","types":["Compact
278
+ SLR / System"],"msrp":499.99,"article_ids":["50fb419dbd0286d5550219db","50fb41fabd0286d555021c6e","50fb4255bd0286d555021f03","50fb4267bd0286d555021f87","50fb4279bd0286d55502200d","50fb42f0bd0286d555022327","50fb4328bd0286d5550224b0","50fb480dbd0286d555024d93","50fb482bbd0286d555024e6e","50fb7825bd0286d55503a0fc","50fb7b24bd0286d55503b6d6","50fb7c0cbd0286d55503bdfd","50fb7de0bd0286d55503cd1d","50fb830cbd0286d55503f567","50fc16d2bd0286d55509c65d"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"733175108","rubric_id":"50f9ed93bd0286638e00039f","brand_id":"50f9ed6ebd0286638e0000b1","model":"E-P1","resource_uri":"/products/olympus-pen-e-p1-2","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e00039f","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-06-26T21:46:58Z","name":"2009-2010
279
+ Digital SLR ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e00039f","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e00039f"}}},"attachments":[{"id":"50fc5a44bd028603360024d8","created_at":"2013-01-20T20:57:40Z","updated_at":"2013-01-20T20:57:40Z","name":"Olympus-E-P1-108404.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s50x50_Olympus-E-P1-108404.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s150x150_Olympus-E-P1-108404.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s200x75_Olympus-E-P1-108404.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s250x250_Olympus-E-P1-108404.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x150_Olympus-E-P1-108404.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s300x112_Olympus-E-P1-108404.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s500x500_Olympus-E-P1-108404.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x400_Olympus-E-P1-108404.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s600x600_Olympus-E-P1-108404.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s630x235_Olympus-E-P1-108404.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x400_Olympus-E-P1-108404.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x350_Olympus-E-P1-108404.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/s940x110_Olympus-E-P1-108404.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dbb974085be928c6d5cd26491cdcb75978e69bb2/Olympus-E-P1-108404.jpg","file_size":39338,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5a44bd028603360024d8","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5a44bd028603360024d8"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001c"}}},{"id":"50fa21e796ab5860160c4952","created_at":"2010-03-29T18:24:38Z","updated_at":"2013-05-21T01:06:17Z","name":"Nikon
280
+ D40x","slug":"nikon-d40x","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34188719","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b2","model":"D40x","resource_uri":"/products/nikon-d40x","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028692240012ab","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Nikon-D40x-100382.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s50x50_Nikon-D40x-100382.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s150x150_Nikon-D40x-100382.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s200x75_Nikon-D40x-100382.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s250x250_Nikon-D40x-100382.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x150_Nikon-D40x-100382.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s300x112_Nikon-D40x-100382.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s500x500_Nikon-D40x-100382.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x400_Nikon-D40x-100382.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s600x600_Nikon-D40x-100382.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s630x235_Nikon-D40x-100382.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x400_Nikon-D40x-100382.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x350_Nikon-D40x-100382.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/s940x110_Nikon-D40x-100382.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/f55558355a7f4a23bba1be77d70921933a6e8da2/Nikon-D40x-100382.jpg","file_size":6299,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028692240012ab","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028692240012ab"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001d"}}},{"id":"50fa21e896ab5860160c4953","created_at":"2010-03-29T18:24:39Z","updated_at":"2013-05-21T00:46:57Z","name":"Olympus
281
+ EVOLT E-410","slug":"olympus-evolt-e-410","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":[],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"34714852","rubric_id":null,"brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
282
+ E-410","resource_uri":"/products/olympus-evolt-e-410","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5335bd028600af0012ac","created_at":"2013-01-20T20:27:33Z","updated_at":"2013-01-20T20:27:33Z","name":"Olympus-EVOLT-E-410-100384.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s50x50_Olympus-EVOLT-E-410-100384.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s150x150_Olympus-EVOLT-E-410-100384.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s200x75_Olympus-EVOLT-E-410-100384.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s250x250_Olympus-EVOLT-E-410-100384.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x150_Olympus-EVOLT-E-410-100384.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s300x112_Olympus-EVOLT-E-410-100384.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s500x500_Olympus-EVOLT-E-410-100384.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x400_Olympus-EVOLT-E-410-100384.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s600x600_Olympus-EVOLT-E-410-100384.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s630x235_Olympus-EVOLT-E-410-100384.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x400_Olympus-EVOLT-E-410-100384.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x350_Olympus-EVOLT-E-410-100384.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/s940x110_Olympus-EVOLT-E-410-100384.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/34019e8dd92a56537dee480a60d37f152b2ee8ef/Olympus-EVOLT-E-410-100384.jpg","file_size":5928,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5335bd028600af0012ac","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5335bd028600af0012ac"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001e"}}},{"id":"50fa21e896ab5860160c4954","created_at":"2010-03-29T18:24:40Z","updated_at":"2013-05-21T00:46:58Z","name":"Pentax
283
+ K10D","slug":"pentax-k10d","_type":"Electronics::Cameras::DSLR","types":[],"msrp":799.0,"article_ids":["50fb74c6bd0286d5550385f4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"19091","price_grabber_id":"26157789","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000af","model":"K10D","resource_uri":"/products/pentax-k10d","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
284
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd0674bd028600af01a2cf","created_at":"2013-01-21T09:12:20Z","updated_at":"2013-01-21T09:12:20Z","name":"Pentax-K10D-101956.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s50x50_Pentax-K10D-101956.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s150x150_Pentax-K10D-101956.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s200x75_Pentax-K10D-101956.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s250x250_Pentax-K10D-101956.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x150_Pentax-K10D-101956.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s300x112_Pentax-K10D-101956.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s500x500_Pentax-K10D-101956.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x400_Pentax-K10D-101956.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s600x600_Pentax-K10D-101956.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s630x235_Pentax-K10D-101956.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x400_Pentax-K10D-101956.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x350_Pentax-K10D-101956.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/s940x110_Pentax-K10D-101956.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/fbe8c6000d7a429cdef3e4a62ffcce9a94a851ed/Pentax-K10D-101956.jpg","file_size":10305,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0674bd028600af01a2cf","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0674bd028600af01a2cf"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb00001f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb00001f"}}},{"id":"50fa21e996ab5860160c4955","created_at":"2010-03-29T18:24:41Z","updated_at":"2013-05-21T01:06:58Z","name":"Canon
285
+ EOS Rebel XTi","slug":"canon-eos-rebel-xti","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f72bd0286d555030b34","50fb8da4bd0286d5550436d6","50fb8ed9bd0286d555043ead"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1236B002","price_grabber_id":"24712314","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b3","model":"XTi","resource_uri":"/products/canon-eos-rebel-xti","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
286
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce42fbd02868f81012512","created_at":"2013-01-21T06:46:07Z","updated_at":"2013-01-21T06:46:07Z","name":"Canon-EOS-Rebel-XTi-101957.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s50x50_Canon-EOS-Rebel-XTi-101957.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s150x150_Canon-EOS-Rebel-XTi-101957.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s200x75_Canon-EOS-Rebel-XTi-101957.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s250x250_Canon-EOS-Rebel-XTi-101957.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x150_Canon-EOS-Rebel-XTi-101957.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s300x112_Canon-EOS-Rebel-XTi-101957.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s500x500_Canon-EOS-Rebel-XTi-101957.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x400_Canon-EOS-Rebel-XTi-101957.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s600x600_Canon-EOS-Rebel-XTi-101957.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s630x235_Canon-EOS-Rebel-XTi-101957.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x400_Canon-EOS-Rebel-XTi-101957.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x350_Canon-EOS-Rebel-XTi-101957.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/s940x110_Canon-EOS-Rebel-XTi-101957.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/1fab8f8826cb05ebd54cc5c7ce52e04bd0326b13/Canon-EOS-Rebel-XTi-101957.jpg","file_size":6228,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce42fbd02868f81012512","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce42fbd02868f81012512"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9240a0ce88bb000020","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9240a0ce88bb000020"}}},{"id":"50fa21e996ab5860160c4956","created_at":"2010-03-29T18:24:43Z","updated_at":"2013-05-21T01:06:58Z","name":"Nikon
287
+ D80","slug":"nikon-d80","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5ff4bd0286d555030c98","50fc0ea4bd0286d5550978a4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"25412","price_grabber_id":"23760802","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D80","resource_uri":"/products/nikon-d80","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
288
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce45fbd02868f81012532","created_at":"2013-01-21T06:46:54Z","updated_at":"2013-01-21T06:46:55Z","name":"Nikon-D80-101958.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s50x50_Nikon-D80-101958.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s150x150_Nikon-D80-101958.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s200x75_Nikon-D80-101958.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s250x250_Nikon-D80-101958.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x150_Nikon-D80-101958.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s300x112_Nikon-D80-101958.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s500x500_Nikon-D80-101958.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x400_Nikon-D80-101958.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s600x600_Nikon-D80-101958.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s630x235_Nikon-D80-101958.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x400_Nikon-D80-101958.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x350_Nikon-D80-101958.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/s940x110_Nikon-D80-101958.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/55188f235359b433d794485861326c5592652a58/Nikon-D80-101958.jpg","file_size":7738,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce45fbd02868f81012532","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce45fbd02868f81012532"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000021","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000021"}}},{"id":"50fa21ea96ab5860160c4957","created_at":"2010-03-29T18:24:45Z","updated_at":"2013-05-21T01:06:58Z","name":"Leica
289
+ M8","slug":"leica-m8","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb927cbd0286d5550456e4"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"29253005","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b4","model":"M8","resource_uri":"/products/leica-m8","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
290
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd07f7bd028663f101a357","created_at":"2013-01-21T09:18:47Z","updated_at":"2013-01-21T09:18:47Z","name":"Leica-M8-101964.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s50x50_Leica-M8-101964.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s150x150_Leica-M8-101964.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s200x75_Leica-M8-101964.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s250x250_Leica-M8-101964.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x150_Leica-M8-101964.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s300x112_Leica-M8-101964.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s500x500_Leica-M8-101964.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x400_Leica-M8-101964.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s600x600_Leica-M8-101964.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s630x235_Leica-M8-101964.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x400_Leica-M8-101964.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x350_Leica-M8-101964.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/s940x110_Leica-M8-101964.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/7a94e8c760e4e02b342fe77f1b3a15de617f0ac6/Leica-M8-101964.jpg","file_size":5352,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd07f7bd028663f101a357","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd07f7bd028663f101a357"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000022","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000022"}}},{"id":"50fa21ea96ab5860160c4958","created_at":"2010-03-29T18:24:46Z","updated_at":"2013-05-21T01:06:59Z","name":"Panasonic
291
+ DMC-L1","slug":"panasonic-dmc-l1","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb601bbd0286d555030cdb"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DMCL1","price_grabber_id":"22919627","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b5","model":"DMC-L1","resource_uri":"/products/panasonic-dmc-l1","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
292
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd0464bd0286027b01a22b","created_at":"2013-01-21T09:03:32Z","updated_at":"2013-01-21T09:03:32Z","name":"Panasonic-DMC-L1-101974.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s50x50_Panasonic-DMC-L1-101974.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s150x150_Panasonic-DMC-L1-101974.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s200x75_Panasonic-DMC-L1-101974.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s250x250_Panasonic-DMC-L1-101974.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x150_Panasonic-DMC-L1-101974.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s300x112_Panasonic-DMC-L1-101974.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s500x500_Panasonic-DMC-L1-101974.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x400_Panasonic-DMC-L1-101974.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s600x600_Panasonic-DMC-L1-101974.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s630x235_Panasonic-DMC-L1-101974.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x400_Panasonic-DMC-L1-101974.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x350_Panasonic-DMC-L1-101974.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/s940x110_Panasonic-DMC-L1-101974.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/85cfe04ffba458d903e776bcbfb6a0637e284891/Panasonic-DMC-L1-101974.jpg","file_size":4557,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0464bd0286027b01a22b","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0464bd0286027b01a22b"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000023","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000023"}}},{"id":"50fa21eb96ab5860160c4959","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:17Z","name":"Sigma
293
+ SD14","slug":"sigma-sd14","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb9472bd0286d5550466a9"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"28909658","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b6","model":"SD14","resource_uri":"/products/sigma-sd14","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fd0838bd0286227201a371","created_at":"2013-01-21T09:19:52Z","updated_at":"2013-01-21T09:19:52Z","name":"Sigma-SD14-101981.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s50x50_Sigma-SD14-101981.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s150x150_Sigma-SD14-101981.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s200x75_Sigma-SD14-101981.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s250x250_Sigma-SD14-101981.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x150_Sigma-SD14-101981.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s300x112_Sigma-SD14-101981.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s500x500_Sigma-SD14-101981.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x400_Sigma-SD14-101981.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s600x600_Sigma-SD14-101981.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s630x235_Sigma-SD14-101981.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x400_Sigma-SD14-101981.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x350_Sigma-SD14-101981.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/s940x110_Sigma-SD14-101981.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/dd04149f5eae6aee6465cc4344d4e869ba1a4dc8/Sigma-SD14-101981.jpg","file_size":5178,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd0838bd0286227201a371","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd0838bd0286227201a371"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000024","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000024"}}},{"id":"50fa21eb96ab5860160c495a","created_at":"2010-03-29T18:24:48Z","updated_at":"2013-05-21T01:06:59Z","name":"Sony
294
+ Alpha DSLR-A100","slug":"sony-alpha-dslr-a100","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb60c6bd0286d555030e92"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"DSLRA100","price_grabber_id":"20953889","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b7","model":"Alpha
295
+ DSLR-A100","resource_uri":"/products/sony-alpha-dslr-a100","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
296
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fc53b5bd028694ea001c1c","created_at":"2013-01-20T20:29:41Z","updated_at":"2013-01-20T20:29:41Z","name":"Sony-Alpha-DSLR-A100-102016.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s50x50_Sony-Alpha-DSLR-A100-102016.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s150x150_Sony-Alpha-DSLR-A100-102016.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s200x75_Sony-Alpha-DSLR-A100-102016.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s250x250_Sony-Alpha-DSLR-A100-102016.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x150_Sony-Alpha-DSLR-A100-102016.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s300x112_Sony-Alpha-DSLR-A100-102016.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s500x500_Sony-Alpha-DSLR-A100-102016.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x400_Sony-Alpha-DSLR-A100-102016.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s600x600_Sony-Alpha-DSLR-A100-102016.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s630x235_Sony-Alpha-DSLR-A100-102016.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x400_Sony-Alpha-DSLR-A100-102016.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x350_Sony-Alpha-DSLR-A100-102016.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/s940x110_Sony-Alpha-DSLR-A100-102016.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/ef2c7f69e761baa6197322b59dc792dd44723b92/Sony-Alpha-DSLR-A100-102016.jpg","file_size":6090,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc53b5bd028694ea001c1c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc53b5bd028694ea001c1c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000025","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000025"}}},{"id":"50fa21ec96ab5860160c495b","created_at":"2010-03-29T18:24:50Z","updated_at":"2013-05-21T01:06:59Z","name":"Olympus
297
+ EVOLT E-510","slug":"olympus-evolt-e-510","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb604cbd0286d555030d22","50fb93afbd0286d5550461fe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"262070","price_grabber_id":"34859947","rubric_id":"50f9ed93bd0286638e0003a1","brand_id":"50f9ed6ebd0286638e0000b1","model":"EVOLT
298
+ E-510","resource_uri":"/products/olympus-evolt-e-510","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a1","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2007
299
+ and 2008 Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a1","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a1"}}},"attachments":[{"id":"50fd046ebd028662a701a22c","created_at":"2013-01-21T09:03:42Z","updated_at":"2013-01-21T09:03:42Z","name":"Olympus-EVOLT-E-510-102021.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s50x50_Olympus-EVOLT-E-510-102021.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s150x150_Olympus-EVOLT-E-510-102021.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s200x75_Olympus-EVOLT-E-510-102021.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s250x250_Olympus-EVOLT-E-510-102021.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x150_Olympus-EVOLT-E-510-102021.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s300x112_Olympus-EVOLT-E-510-102021.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s500x500_Olympus-EVOLT-E-510-102021.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x400_Olympus-EVOLT-E-510-102021.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s600x600_Olympus-EVOLT-E-510-102021.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s630x235_Olympus-EVOLT-E-510-102021.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x400_Olympus-EVOLT-E-510-102021.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x350_Olympus-EVOLT-E-510-102021.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/s940x110_Olympus-EVOLT-E-510-102021.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/3614faa002b36aa2f98c7165d97d0d3a2bf1ec35/Olympus-EVOLT-E-510-102021.jpg","file_size":6491,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd046ebd028662a701a22c","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd046ebd028662a701a22c"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000026","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000026"}}},{"id":"50fa21ec96ab5860160c495c","created_at":"2010-03-29T18:24:52Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
300
+ D40","slug":"nikon-d40","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb8237bd0286d55503eefe"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"1901B004","price_grabber_id":"29541608","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D40","resource_uri":"/products/nikon-d40","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
301
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fd067dbd02868f8101a2d4","created_at":"2013-01-21T09:12:29Z","updated_at":"2013-01-21T09:12:29Z","name":"Nikon-D40-102024.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s50x50_Nikon-D40-102024.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s150x150_Nikon-D40-102024.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s200x75_Nikon-D40-102024.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s250x250_Nikon-D40-102024.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x150_Nikon-D40-102024.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s300x112_Nikon-D40-102024.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s500x500_Nikon-D40-102024.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x400_Nikon-D40-102024.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s600x600_Nikon-D40-102024.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s630x235_Nikon-D40-102024.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x400_Nikon-D40-102024.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x350_Nikon-D40-102024.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/s940x110_Nikon-D40-102024.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/6b76c2a2865951101afda528d3a6c32fc8b51fb6/Nikon-D40-102024.jpg","file_size":5104,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fd067dbd02868f8101a2d4","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fd067dbd02868f8101a2d4"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000027","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000027"}}},{"id":"50fa21ed96ab5860160c495d","created_at":"2010-03-29T18:24:53Z","updated_at":"2013-05-21T01:06:59Z","name":"Nikon
302
+ D200","slug":"nikon-d200","_type":"Electronics::Cameras::DSLR","types":[],"msrp":null,"article_ids":["50fb5f94bd0286d555030b7b","50fb8b70bd0286d555042ef3"],"website_ids":["50e669d7bd028648e000000d"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"13321369","rubric_id":"50f9ed93bd0286638e0003a3","brand_id":"50f9ed6fbd0286638e0000b2","model":"D200","resource_uri":"/products/nikon-d200","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"id":"50f9ed93bd0286638e0003a3","created_at":"2013-01-19T00:49:23Z","updated_at":"2013-01-19T00:49:23Z","name":"2006
303
+ Digital SLR Camera Ratings (rating-specs group)","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics/50f9ed93bd0286638e0003a3","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics/50f9ed93bd0286638e0003a3"}}},"attachments":[{"id":"50fce458bd02862d77012531","created_at":"2013-01-21T06:46:48Z","updated_at":"2013-01-21T06:46:48Z","name":"Nikon-D200-102025.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s50x50_Nikon-D200-102025.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s150x150_Nikon-D200-102025.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s200x75_Nikon-D200-102025.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s250x250_Nikon-D200-102025.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x150_Nikon-D200-102025.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s300x112_Nikon-D200-102025.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s500x500_Nikon-D200-102025.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x400_Nikon-D200-102025.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s600x600_Nikon-D200-102025.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s630x235_Nikon-D200-102025.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x400_Nikon-D200-102025.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x350_Nikon-D200-102025.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/s940x110_Nikon-D200-102025.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/cc69fbc06673253e5f0620b16b0192f0bb517a7c/Nikon-D200-102025.jpg","file_size":6424,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fce458bd02862d77012531","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fce458bd02862d77012531"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9340a0ce88bb000028","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9340a0ce88bb000028"}}}]}'
644
304
  http_version:
645
- recorded_at: Wed, 24 Jul 2013 21:02:54 GMT
305
+ recorded_at: Mon, 29 Jul 2013 21:24:35 GMT
646
306
  recorded_with: VCR 2.4.0