reviewed 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/lib/faraday/cache.rb +13 -11
 - data/lib/reviewed/cache.rb +18 -0
 - data/lib/reviewed/version.rb +1 -1
 - data/reviewed.gemspec +1 -1
 - data/spec/article_spec.rb +1 -1
 - data/spec/client_spec.rb +1 -1
 - data/spec/collection_spec.rb +1 -1
 - data/spec/faraday/cache_spec.rb +9 -9
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/assigns_attachments_to_the_correct_class.yml +236 -289
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_has_many_attachments.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/does_not_have_any_matching_attachments.yml +236 -289
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/finds_attachments_by_tag.yml +228 -361
 - data/spec/fixtures/vcr/Reviewed_Article/associations/attachments/gets_gallery_attachments.yml +236 -313
 - data/spec/fixtures/vcr/Reviewed_Article/associations/deals/has_many_deals.yml +228 -278
 - data/spec/fixtures/vcr/Reviewed_Article/associations/pages/has_many_pages.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/products/has_many_products.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/products/returns_products_of_the_correct_class.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/associations/related_articles/has_many_related_articles.yml +196 -226
 - data/spec/fixtures/vcr/Reviewed_Article/fetches_when_a_tag_is_not_in_pre-loaded_set.yml +365 -438
 - data/spec/fixtures/vcr/Reviewed_Article/find_page/finds_a_page_with_a_matching_slug.yml +294 -351
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_a_product_of_the_correct_class.yml +424 -504
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_nil_if_does_not_respond_to_products.yml +392 -452
 - data/spec/fixtures/vcr/Reviewed_Article/primary_product/returns_the_primary_product.yml +392 -452
 - data/spec/fixtures/vcr/Reviewed_Article/returns_local_attachments_when_available.yml +363 -438
 - data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/not_set/has_nil_query_params.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Client/_perform/request_params/set/merges_quest_params.yml +11 -12
 - data/spec/fixtures/vcr/Reviewed_Collection/collection_data/fetches_the_first_page_by_default.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/collection_data/is_enumerable.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/next_page/fetches_the_next_page_of_results.yml +99 -302
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_if_the_page_number_is_out_of_bounds.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/indicates_whether_this_is_the_first_or_last_page.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_limit_value_max_per_page_.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_number_of_entries_on_the_current_page.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_item_count.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_total_number_of_pages.yml +80 -197
 - data/spec/fixtures/vcr/Reviewed_Collection/previous_page/fetches_the_previous_page_of_results.yml +211 -551
 - data/spec/fixtures/vcr/Reviewed_Collection/previous_page/returns_nil_if_there_is_no_previous_page.yml +48 -145
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/does_not_have_any_matching_attachments.yml +90 -162
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/matches_attachments_by_tag_properly.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/no_longer_has_many_attachments.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_by_tag.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/associations/attachments/returns_attachments_of_the_correct_class.yml +58 -110
 - data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/has_many_manufacturer_specs.yml +50 -99
 - data/spec/fixtures/vcr/Reviewed_Product/manufacturer_specs/returns_attachments_of_the_correct_class.yml +52 -99
 - data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_keywords.yml +72 -0
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_a_collection.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_an_empty_set_if_no_matching_data_was_found.yml +11 -9
 - data/spec/fixtures/vcr/Reviewed_Request/_where/returns_the_appropriate_page_of_results.yml +91 -69
 - data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_a_collection_object.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/collection_from_response/returns_objects_of_the_correct_class.yml +93 -102
 - data/spec/fixtures/vcr/Reviewed_Request/object_from_response/returns_an_object_of_the_correct_class.yml +90 -93
 - data/spec/product_spec.rb +1 -1
 - data/spec/request_spec.rb +4 -4
 - metadata +35 -62
 - data/spec/fixtures/vcr/Reviewed_Request/_where/filters_collections_using_other_supported_options.yml +0 -66
 
    
        data/spec/fixtures/vcr/Reviewed_Collection/page_attributes_pagination_/returns_the_offset.yml
    CHANGED
    
    | 
         @@ -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:  
     | 
| 
       22 
     | 
    
         
            -
                    T0s=
         
     | 
| 
      
 21 
     | 
    
         
            +
                  message: OK
         
     | 
| 
       23 
22 
     | 
    
         
             
                headers:
         
     | 
| 
       24 
     | 
    
         
            -
                   
     | 
| 
       25 
     | 
    
         
            -
                  -  
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
                   
     | 
| 
       28 
     | 
    
         
            -
             
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
                   
     | 
| 
       33 
     | 
    
         
            -
                  - 
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                   
     | 
| 
       36 
     | 
    
         
            -
                  -  
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
       38 
     | 
    
         
            -
                   
     | 
| 
       39 
     | 
    
         
            -
                   
     | 
| 
       40 
     | 
    
         
            -
             
     | 
| 
       41 
     | 
    
         
            -
                   
     | 
| 
       42 
     | 
    
         
            -
                  -  
     | 
| 
       43 
     | 
    
         
            -
             
     | 
| 
       44 
     | 
    
         
            -
                   
     | 
| 
       45 
     | 
    
         
            -
                   
     | 
| 
       46 
     | 
    
         
            -
             
     | 
| 
       47 
     | 
    
         
            -
                   
     | 
| 
       48 
     | 
    
         
            -
                  -  
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
                   
     | 
| 
       51 
     | 
    
         
            -
                  - 
     | 
| 
       52 
     | 
    
         
            -
             
     | 
| 
       53 
     | 
    
         
            -
                   
     | 
| 
       54 
     | 
    
         
            -
                  -  
     | 
| 
       55 
     | 
    
         
            -
             
     | 
| 
       56 
     | 
    
         
            -
                   
     | 
| 
       57 
     | 
    
         
            -
                   
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
                  !binary "VmFyeQ==":
         
     | 
| 
       60 
     | 
    
         
            -
                  - !binary |-
         
     | 
| 
       61 
     | 
    
         
            -
                    QWNjZXB0LUVuY29kaW5n
         
     | 
| 
       62 
     | 
    
         
            -
                  !binary "WC1SYWNrLUNhY2hl":
         
     | 
| 
       63 
     | 
    
         
            -
                  - !binary |-
         
     | 
| 
       64 
     | 
    
         
            -
                    bWlzcw==
         
     | 
| 
       65 
     | 
    
         
            -
                  !binary "WC1SZXF1ZXN0LUlk":
         
     | 
| 
       66 
     | 
    
         
            -
                  - !binary |-
         
     | 
| 
       67 
     | 
    
         
            -
                    MjRmMTkxZWU1OWE4MDZiNDI2MzI4MTAwNDQ2NzIzOGY=
         
     | 
| 
       68 
     | 
    
         
            -
                  !binary "WC1SdW50aW1l":
         
     | 
| 
       69 
     | 
    
         
            -
                  - !binary |-
         
     | 
| 
       70 
     | 
    
         
            -
                    My4yNTQ3OTU=
         
     | 
| 
       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:56 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 
     | 
    
         
            +
                  - 1651454e6878ab4019cb70a479a2df3b
         
     | 
| 
      
 50 
     | 
    
         
            +
                  X-Runtime:
         
     | 
| 
      
 51 
     | 
    
         
            +
                  - '2.189815'
         
     | 
| 
      
 52 
     | 
    
         
            +
                  X-Ua-Compatible:
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - IE=Edge,chrome=1
         
     | 
| 
      
 54 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 55 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 56 
     | 
    
         
            +
                  Connection:
         
     | 
| 
      
 57 
     | 
    
         
            +
                  - keep-alive
         
     | 
| 
       80 
58 
     | 
    
         
             
                body:
         
     | 
| 
       81 
     | 
    
         
            -
                  encoding:  
     | 
| 
       82 
     | 
    
         
            -
                  string:  
     | 
| 
       83 
     | 
    
         
            -
                     
     | 
| 
       84 
     | 
    
         
            -
                     
     | 
| 
       85 
     | 
    
         
            -
                     
     | 
| 
       86 
     | 
    
         
            -
                     
     | 
| 
       87 
     | 
    
         
            -
                     
     | 
| 
       88 
     | 
    
         
            -
                     
     | 
| 
       89 
     | 
    
         
            -
                     
     | 
| 
       90 
     | 
    
         
            -
                     
     | 
| 
       91 
     | 
    
         
            -
                     
     | 
| 
       92 
     | 
    
         
            -
                     
     | 
| 
       93 
     | 
    
         
            -
                     
     | 
| 
       94 
     | 
    
         
            -
                     
     | 
| 
       95 
     | 
    
         
            -
                     
     | 
| 
       96 
     | 
    
         
            -
                     
     | 
| 
       97 
     | 
    
         
            -
                     
     | 
| 
       98 
     | 
    
         
            -
                     
     | 
| 
       99 
     | 
    
         
            -
                     
     | 
| 
       100 
     | 
    
         
            -
                     
     | 
| 
       101 
     | 
    
         
            -
                     
     | 
| 
       102 
     | 
    
         
            -
                     
     | 
| 
       103 
     | 
    
         
            -
                     
     | 
| 
       104 
     | 
    
         
            -
                     
     | 
| 
       105 
     | 
    
         
            -
                     
     | 
| 
       106 
     | 
    
         
            -
                     
     | 
| 
       107 
     | 
    
         
            -
                     
     | 
| 
       108 
     | 
    
         
            -
                     
     | 
| 
       109 
     | 
    
         
            -
                     
     | 
| 
       110 
     | 
    
         
            -
                     
     | 
| 
       111 
     | 
    
         
            -
                     
     | 
| 
       112 
     | 
    
         
            -
                     
     | 
| 
       113 
     | 
    
         
            -
                     
     | 
| 
       114 
     | 
    
         
            -
                     
     | 
| 
       115 
     | 
    
         
            -
                     
     | 
| 
       116 
     | 
    
         
            -
                     
     | 
| 
       117 
     | 
    
         
            -
                     
     | 
| 
       118 
     | 
    
         
            -
                     
     | 
| 
       119 
     | 
    
         
            -
                     
     | 
| 
       120 
     | 
    
         
            -
                     
     | 
| 
       121 
     | 
    
         
            -
                     
     | 
| 
       122 
     | 
    
         
            -
                     
     | 
| 
       123 
     | 
    
         
            -
                    mFEGdIHCZAAcyCIDzED9ZYAfkEEGGICCZIAHkFkGdIHCZAAcyCIDzED9ZYAf
         
     | 
| 
       124 
     | 
    
         
            -
                    kEEGmIH6ywA/IIMM6AAFygAw0HWOkWTAQLTnMkBwNMmAfjLgbO45tAw4KXyS
         
     | 
| 
       125 
     | 
    
         
            -
                    Ad4ygN1MBjCDDEguZIDph8lTGUB1DBwkA/4R2x8S2MZDPCRAyEuRAfVjAnJQ
         
     | 
| 
       126 
     | 
    
         
            -
                    GdDUH1AGNDU6yYAXKwOKutlJIeVhzMzdMoACZAC1yoDqBqq/U9nYMoAqJEqq
         
     | 
| 
       127 
     | 
    
         
            -
                    Sk5SLnXv0INUTBhDqRIFjRFPOVVZIaRZBnTBA2UAHMcsAwxAQTIAzmOUASac
         
     | 
| 
       128 
     | 
    
         
            -
                    IBngwWOUAQagMBkABzLLABtQbxngCdSRAQagMBng08NMMsAAFCYD4EBmGWAB
         
     | 
| 
       129 
     | 
    
         
            -
                    6i8D/IC6MsAEFCQDPICMMsAAFCYD4EBmGWAB6i8D/IC6MsAC1F8G+AF1ZUAX
         
     | 
| 
       130 
     | 
    
         
            -
                    KFAGgIGuc4wkAwaivZQB8SQDPGWAae45mAzoFj7JAG8ZwG8mAzhABphikQsZ
         
     | 
| 
       131 
     | 
    
         
            -
                    IFwygC8IO4lF/r78tF7N3qzXD5vll9lbPQNBzzZgVR2M8vpgtGkO3mDNgOoD
         
     | 
| 
       132 
     | 
    
         
            -
                    Z4ISUd+jBeccUZywKuauDsUqVSeHGNV/zG9qEAjngps1AqWSMJFcLDzYaIOE
         
     | 
| 
       133 
     | 
    
         
            -
                    nmkDmlYPljjlQkZO5MJlY1jVgrl5hnYLrg9nDI5x8l7XJ0sWxB4cX5zT3JA6
         
     | 
| 
       134 
     | 
    
         
            -
                    lJIzXV0z/Zd4dribZv82O9xNs3+kew2/m/379vCXaLdR+W72Ybt+2vzHt+8+
         
     | 
| 
       135 
     | 
    
         
            -
                    7q40QtDV7QVftSUF4pieGGashyxstSV69En08LQg0m5Lzs85HaGiplNEh05R
         
     | 
| 
       136 
     | 
    
         
            -
                    zzr42Lokjnmsx2t9X7I0kwUqCcEZyajIGC2ZUHmqJ00Sx60ucZIH+hI4T+tL
         
     | 
| 
       137 
     | 
    
         
            -
                    3ERBwgQO1AgTAE+QMfEAaoyJmyhMmcCJWmUCJOrtTDyJMAEQhUkTn35WSxM3
         
     | 
| 
       138 
     | 
    
         
            -
                    UZg1gRO11gRG1F+b+BEJGFGQN/EgaryJmyhMnMCJWnECI+pvTvyIKKj3h6kT
         
     | 
| 
       139 
     | 
    
         
            -
                    P6JKnTiJAt0JmMgBMpI8GQr3zJ5gLmI+6RMPfWKbjA6iT8yFT/rEW5+Im+kT
         
     | 
| 
       140 
     | 
    
         
            -
                    YdAn6YU+KZz6BNuiVZs+eZOu1isdpf6itjpE3c/e/xM/65O8OhhtqoM7fTDa
         
     | 
| 
       141 
     | 
    
         
            -
                    f8E31SeKnOmTAue3dSSYCP5fCOErmkRSNKQmoac5GBeVbtUk5maYNMmkScbS
         
     | 
| 
       142 
     | 
    
         
            -
                    JExcfHnYt6GoFYgejGzbwHTOOR2JomOniHSnqKcXYmxNgtMYC5arRA/QSmYy
         
     | 
| 
       143 
     | 
    
         
            -
                    w6JQgqRJqWiCaCIIy/T/qtUkTvJATQLnaTWJmyhIk8CBGk0C4AnSJB5AjSZx
         
     | 
| 
       144 
     | 
    
         
            -
                    E4VpEjhRq0mARL01iScRJgCiME3i089qTeImCtMkcKJWk8CI+msSPyIBIwrS
         
     | 
| 
       145 
     | 
    
         
            -
                    JB5EjSZxE4VpEjhRq0lgRP01iR8RBfX+ME3iR1RpEidRoCYBEzlARtIkQ+Ge
         
     | 
| 
       146 
     | 
    
         
            -
                    aRLJ5bQthaclMc5Fh7IkhsInS+JtSeTNLIk0WJLswpKUTkti3SLPZkne6lsk
         
     | 
| 
       147 
     | 
    
         
            -
                    /TL7n2qYmf0vPckw2RyOROvqSPQLvW16SZyd+ZEslsf0kiw9Ty/J0Y3VSUKk
         
     | 
| 
       148 
     | 
    
         
            -
                    zZswhElyuX6lnzdR594kLU+8yWkrWJ2JoV0mYTIJk9HySvL6LXEZ48P3CHfm
         
     | 
| 
       149 
     | 
    
         
            -
                    lVBb5lvnnLNBKTp0h0h3h3qWIce2JWmBSVbkeZGnelAqWUp5oj+6Zld5mbAk
         
     | 
| 
       150 
     | 
    
         
            -
                    xzQumTzu2nkdO1CVwGFaVeLACfIkcJrGk7hggiSJB00jSRw4YYYEjtMaEghO
         
     | 
| 
       151 
     | 
    
         
            -
                    bz3iiYOJCyfMjfj0qtqNOHDCxAgcpxUjAJz+VsQPRwBwgpSIB06jRBw4YT4E
         
     | 
| 
       152 
     | 
    
         
            -
                    jtP6EABOfxnih0PdHT3MhPjhVCbkOk6gBgHjXKMYyYEMwnqxGQea1t/0TRMx
         
     | 
| 
       153 
     | 
    
         
            -
                    zS0HSxPpFj4JEKcAIReaor+ScpfsFCAxcgoQigEChF9JE/mOiRMJcpmgkNZH
         
     | 
| 
       154 
     | 
    
         
            -
                    byZCGGNnIkTXwo1th5TxlUQRwoSQiNw+UaSpdnCmSNMQk/mYzMdY5oM3GzvH
         
     | 
| 
       155 
     | 
    
         
            -
                    Ga+/QJQzVeTa+iPn51hSRapuUU8x4rHtB6+mQWUWxyXKCC6LVFGGdHeWua47
         
     | 
| 
       156 
     | 
    
         
            -
                    xdMcFWUcS2TLFemiBxoQOJAtWcSAFGRB4ESWbBETUJAJ8SCypIsYkMJsCBzJ
         
     | 
| 
       157 
     | 
    
         
            -
                    li9iQ+ptRDyRDAkjBqQwK+LT28wZIwakMDMCR7KljFiQ+tsRPyRTzogJKciQ
         
     | 
| 
       158 
     | 
    
         
            -
                    eCBZkkYMSGGWBI5kyxqxIPU3JX5IprQRC1J/W+KHZMob6SIFGhMwkotkJGsy
         
     | 
| 
       159 
     | 
    
         
            -
                    GO/FEzY6QJ/UiZ86MU5Oh1InhsIndeKtTvrvLOsuuatO8gt1Ynr8/0KdOPcx
         
     | 
| 
       160 
     | 
    
         
            -
                    vVAnf336ean77eNs9lfdQm+XX2bfxeREnpTN8ajUh6sn69L68A3syR+wZCll
         
     | 
| 
       161 
     | 
    
         
            -
                    MuYkuXiIxrJkqRRn4SbOxIkFaWrN6j5s9TgtVfrSlyoVKckOKzrZVUHvpUqr
         
     | 
| 
       162 
     | 
    
         
            -
                    3hc1HS+qbiH9hUpimYztCVSZU1YkLCtFgWiexFmmayBlqSpJkmeMU5qhJMOt
         
     | 
| 
       163 
     | 
    
         
            -
                    J3BwB0oCOE0rCVw8QYYAjtMYAidNkB7wwGn0gIsnzA3AeVo3AOLpLQY8eTBx
         
     | 
| 
       164 
     | 
    
         
            -
                    8oRZAZ++VVsBF0+YEoDztEoAwtPfB/jxCAhPkAzw4GlkgIsnzATAeVoTAOHp
         
     | 
| 
       165 
     | 
    
         
            -
                    rwH8eCigv4c5AD+eygE4eAIFAJjnKsZI0f8wsGehP5V0ivx7Lk16NtccemnS
         
     | 
| 
       166 
     | 
    
         
            -
                    k8KnyN878u+/c4y7ZHfkb/rd+jzyZ5C1NbjtqZEfrU+NPN7qqZE/ItynGMcY
         
     | 
| 
       167 
     | 
    
         
            -
                    Y1C4D3jK40ePpzweb/KUxxTuB4T70xDoNwT230nbXbJ7CKTuIdBXfp6vzvyO
         
     | 
| 
       168 
     | 
    
         
            -
                    2xdn3vHbrs3MeHyaM0aqVLpbL8DME9soWa0shAZdWci0AHNT38D1l5sWmJLF
         
     | 
| 
       169 
     | 
    
         
            -
                    vtEB/iUmi5Una/pXP5mZnt09TwSzzsI65xiXX666RP2b6ugKmOR5hkhBlURS
         
     | 
| 
       170 
     | 
    
         
            -
                    xAljccGV/viq1H9kKUtUFuci5ubVl7vggQ4YjmNefNkAFCSB4TzGtZdNOEEW
         
     | 
| 
       171 
     | 
    
         
            -
                    2IPHuPSyAShMA8OBzCsv24B6e2BPoM7CywagMBHs08NM6y4bgMJMMBzIvOyy
         
     | 
| 
       172 
     | 
    
         
            -
                    Bai/CvYD6q66bAIKcsEeQMZFlw1AYTIYDmRec9kC1N8G+wF1l1y2APXXwX5A
         
     | 
| 
       173 
     | 
    
         
            -
                    3RWXu0CBPhgMdJ1jJCE8EO15MhiTZHqOzjcZzDT5HCwZrFv4pIS9fUj//cPc
         
     | 
| 
       174 
     | 
    
         
            -
                    JXd9SHHhQ5jTh3DIblVna3boJtpVVmP2w9OjjtD/8uOb6P1P9MQMtydED9UJ
         
     | 
| 
       175 
     | 
    
         
            -
                    UfGYR/tf6S3NCMroqRlBqtYdtzMj+kPrz/zuihuJ+YVBDnMj/MSNXNa73S1b
         
     | 
| 
       176 
     | 
    
         
            -
                    W2IyJJMhGcmQsPanRUUTVX2PENfjdHpQcm5Q1Z5zOShFh84RNZ3jMNuQaGxN
         
     | 
| 
       177 
     | 
    
         
            -
                    UpZ5LMs4JplkpchyWaSqyHOSUkoSImLKGcKxOq6+DKIPdCVwpuOyQiCqIGEC
         
     | 
| 
       178 
     | 
    
         
            -
                    h2pXF4IxBVkTD6h2kSEQVZg6gVMd1xqCU/X2J55U1ZJDIKowieLT/5qVh0BU
         
     | 
| 
       179 
     | 
    
         
            -
                    YSYFTnVcgAhM1V+n+FEJOFWQU/GgapcjAlGFiRU41XFVIjBVf7viR0XBI0OY
         
     | 
| 
       180 
     | 
    
         
            -
                    YvGjOqxRBKEK9CxgKgDMSLJlSOTzhYsm4eIrXMxz2YGEi6nwSbg4hQu90CLF
         
     | 
| 
       181 
     | 
    
         
            -
                    YMKlW7JbuJgWST0VLmyB2ADC5YefxHXh8vCr+GYy8mCZeDBjUleclzGpq3JK
         
     | 
| 
       182 
     | 
    
         
            -
                    ypuS8v60Y2L/byl3yd0xUV2MicI9Jtp22jodE42+53RMfCeRY1DcyQES9DBL
         
     | 
| 
       183 
     | 
    
         
            -
                    XiPL8vbpWYYezm+9/Z/+3NXHtopozAiR4vYiuql7v3G1bo1JRX+jA//LU9Gc
         
     | 
| 
       184 
     | 
    
         
            -
                    NHczIjI7/KRpGprO16vnto02OudcUdFV96jjMDy2i5a5wqJavkAlcV4ikeMC
         
     | 
| 
       185 
     | 
    
         
            -
                    yTThsaK8SNJq4x+KS0yvuegufqCMhkNdk9EGrCAbDae6YqNNUEE62oPqio42
         
     | 
| 
       186 
     | 
    
         
            -
                    YIX5aDjWNR9tw+otpD2xLELagBVmpH16od1IG7DClDQc65qStmD1d9J+WDYn
         
     | 
| 
       187 
     | 
    
         
            -
                    bcIKktIeWFektAErzErDsa5ZaQtWfy3th2XT0has/l7aD8vmpbtYgWIajAWh
         
     | 
| 
       188 
     | 
    
         
            -
                    GclMD8p8pqZ1/xGTmvbLBTTObYfKBTQUPqlpbw3TPzvTXbJbw0inhsG2tBub
         
     | 
| 
       189 
     | 
    
         
            -
                    hnmT6naeff9l+bB8nH3/z+hdHJ+tqa+PRupwVP8R7eqjgfqFJMnrJHkBWppJ
         
     | 
| 
       190 
     | 
    
         
            -
                    LiUjrJeezk/XhetU4JXV8Y1VOsnpSU7/WUdFhm41KuqS3aNi7BwVCQGMivGV
         
     | 
| 
       191 
     | 
    
         
            -
                    UfEnKe2D4q+Hg6FjInkhYyImPJYSiSHHxLr6wENiXaHTiPiCRsSzJTNjerLG
         
     | 
| 
       192 
     | 
    
         
            -
                    cLXSkP2B6eNymLY1GzrnnPbAqL6FovoWqmMNOrZ+FbnKOJKFvrsLSXQNsLgs
         
     | 
| 
       193 
     | 
    
         
            -
                    y4QkJCNJUaQy5rKgPHveXMNBHmhe4TzPe2u4iIKkKxzouLWGkyfIt3oAHXfW
         
     | 
| 
       194 
     | 
    
         
            -
                    cBGFqVY40fPGGiCi3pbVk+iwr4aLKEyw+vSzdlsNF1GYW4UTPe+qASHqr1X9
         
     | 
| 
       195 
     | 
    
         
            -
                    iASMKMioehAd99RwEYXJVDjR85YaEKL+HtWPiIJ6f5hC9SOqN9RwEAXaUzCR
         
     | 
| 
       196 
     | 
    
         
            -
                    A2QkcToU7nk6Lxd0cqZ+S2oa56JDLalpKHxypt52AN/MDmCDHSgv7EDitgOQ
         
     | 
| 
       197 
     | 
    
         
            -
                    1LVTO/Buvfo6e/NVh8xRtcHl7C/v3kR/S54FwU4fj/Lj8ajY5dHHpLcj0IG0
         
     | 
| 
       198 
     | 
    
         
            -
                    HhAKVcx+Wq8f5+6HqROaq5MkNiYov/HWpJbkNSYxiyls241Ompo8UQmmyrbq
         
     | 
| 
       199 
     | 
    
         
            -
                    BGv1T0bhRRqFAsW4afxCHX6cosL0S8dJxhZOml8xrmR1Hc856bVRffccvoHj
         
     | 
| 
       200 
     | 
    
         
            -
                    0R8qphmiSGa8zJlI8zxjihRYVn2QZoyjtOQ5lnGatybBShxoEOAcrUGwkwSZ
         
     | 
| 
       201 
     | 
    
         
            -
                    AzhIYw6ucAQZAw+QxhjYScJMAZykNQUOkt6GwJMEkyskYWbAp9/UZsBOEmYE
         
     | 
| 
       202 
     | 
    
         
            -
                    4CStEbhO0t8E+JGI6yRBBsCDpDEAdpKwyB9O0kb+10n6R/x+JPRqLw6L9P1I
         
     | 
| 
       203 
     | 
    
         
            -
                    qkjfShIY4YNJLAAjRfahmOdZUJiwKaL3yoIyzwUHyoIyFT5F9N4Rff/nP9wl
         
     | 
| 
       204 
     | 
    
         
            -
                    uyP61BnRU+cDusmC4ZPY4L/XRfpp9n26+/ruY7pVszeCnyyH9qk6Gil9dFcd
         
     | 
| 
       205 
     | 
    
         
            -
                    jfL66LfxaC4lhAtCYlCQLtHF7/2nm2V0qs8aoVsqdIrPX2R8XolQ1ojQUuSV
         
     | 
| 
       206 
     | 
    
         
            -
                    CE2R8xd/hty/+NfnnPbB6HgTRdVNpL9YcYJGXyQ9TvJYckIZVVTFGcsY0XNX
         
     | 
| 
       207 
     | 
    
         
            -
                    IvSLpdB9UZW6FvIEtYG6Gz0wYocDtRE7ACkodIcTNaE7BCgohvcgamJ4AFJY
         
     | 
| 
       208 
     | 
    
         
            -
                    MA9HaoN5KFLvqN4TSUf1AKSw8N6nt9XhPQApLM6HI7VxPhCpf8DvhySASEGR
         
     | 
| 
       209 
     | 
    
         
            -
                    vwdSE/kDkMIUABypVQBApP4uwA+JwgaBMCngh1RJATdSoB0AI7lIRtIEg/Fe
         
     | 
| 
       210 
     | 
    
         
            -
                    LOglpk01fTMATHPTwTIAuoVPvsDbF9Cb+QIK8AWZ0xdYYxVbBsD5jnI/YPIs
         
     | 
| 
       211 
     | 
    
         
            -
                    C863M3s4HPpGTEG1KLpI+j0tZdwarq444M5wdVVOjuDFOgJRt3ielYe1XFLs
         
     | 
| 
       212 
     | 
    
         
            -
                    dgS253I65xi3Ufuhuon1NymVYwuCLCGZ4gwJniCCc0YJEomKi5hSxJn+2k9x
         
     | 
| 
       213 
     | 
    
         
            -
                    UmalZRe1DnegHYDTmDdR6/IEqQE4jnEPNQNNkBfwwDFuodblCZMCcB7zDmoW
         
     | 
| 
       214 
     | 
    
         
            -
                    nt5GwJOns4FalydMB/j0LdP+aV2eMBcA5zFvn2bm6S8C/Hi6u6cZeIIsgAeP
         
     | 
| 
       215 
     | 
    
         
            -
                    cfO0Lk+YAoDzmPdOM/P0j//9eLpbp5l5+gf/fjzdndM6PIGRP5jnKsZIYf8w
         
     | 
| 
       216 
     | 
    
         
            -
                    sBdZ/8m0iLdvzG+aaw4W83cLn2J+75if3SzmZ4fm+P3/BQAAAP//AwBsu719
         
     | 
| 
       217 
     | 
    
         
            -
                    9ygBAA==
         
     | 
| 
      
 59 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 60 
     | 
    
         
            +
                  string: '{"pagination":{"total":17875,"total_pages":894,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
         
     | 
| 
      
 61 
     | 
    
         
            +
                    PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dda67801411f2600001a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda67801411f2600001a"}}},{"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/51f6dda67801411f2600001b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda67801411f2600001b"}}},{"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/51f6dda77801411f2600001c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f2600001c"}}},{"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/51f6dda77801411f2600001d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f2600001d"}}},{"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/51f6dda77801411f2600001e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f2600001e"}}},{"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/51f6dda77801411f2600001f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f2600001f"}}},{"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/51f6dda77801411f26000020","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f26000020"}}},{"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/51f6dda77801411f26000021","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f26000021"}}},{"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/51f6dda77801411f26000022","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f26000022"}}},{"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/51f6dda77801411f26000023","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f26000023"}}},{"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/51f6dda77801411f26000024","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda77801411f26000024"}}},{"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/51f6dda87801411f26000025","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f26000025"}}},{"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/51f6dda87801411f26000026","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f26000026"}}},{"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/51f6dda87801411f26000027","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f26000027"}}},{"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/51f6dda87801411f26000028","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f26000028"}}},{"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/51f6dda87801411f26000029","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f26000029"}}},{"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/51f6dda87801411f2600002a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f2600002a"}}},{"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/51f6dda87801411f2600002b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f2600002b"}}},{"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/51f6dda87801411f2600002c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f2600002c"}}},{"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/51f6dda87801411f2600002d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dda87801411f2600002d"}}}]}'
         
     | 
| 
       218 
101 
     | 
    
         
             
                http_version: 
         
     | 
| 
       219 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 102 
     | 
    
         
            +
              recorded_at: Mon, 29 Jul 2013 21:24:57 GMT
         
     | 
| 
       220 
103 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     | 
| 
         @@ -14,7 +14,7 @@ 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
         
     | 
| 
         @@ -28,17 +28,15 @@ http_interactions: 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  Access-Control-Allow-Methods:
         
     | 
| 
       29 
29 
     | 
    
         
             
                  - OPTIONS, GET, POST, PUT, DELETE
         
     | 
| 
       30 
30 
     | 
    
         
             
                  Access-Control-Allow-Origin:
         
     | 
| 
       31 
     | 
    
         
            -
                  -  
     | 
| 
      
 31 
     | 
    
         
            +
                  - '*'
         
     | 
| 
       32 
32 
     | 
    
         
             
                  Access-Control-Max-Age:
         
     | 
| 
       33 
33 
     | 
    
         
             
                  - '1000'
         
     | 
| 
       34 
34 
     | 
    
         
             
                  Cache-Control:
         
     | 
| 
       35 
35 
     | 
    
         
             
                  - no-cache, no-store
         
     | 
| 
       36 
     | 
    
         
            -
                  Content-Encoding:
         
     | 
| 
       37 
     | 
    
         
            -
                  - gzip
         
     | 
| 
       38 
36 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       39 
37 
     | 
    
         
             
                  - application/json; charset=utf-8
         
     | 
| 
       40 
38 
     | 
    
         
             
                  Date:
         
     | 
| 
       41 
     | 
    
         
            -
                  -  
     | 
| 
      
 39 
     | 
    
         
            +
                  - Mon, 29 Jul 2013 21:24:45 GMT
         
     | 
| 
       42 
40 
     | 
    
         
             
                  Status:
         
     | 
| 
       43 
41 
     | 
    
         
             
                  - 200 OK
         
     | 
| 
       44 
42 
     | 
    
         
             
                  Strict-Transport-Security:
         
     | 
| 
         @@ -48,9 +46,9 @@ http_interactions: 
     | 
|
| 
       48 
46 
     | 
    
         
             
                  X-Rack-Cache:
         
     | 
| 
       49 
47 
     | 
    
         
             
                  - miss
         
     | 
| 
       50 
48 
     | 
    
         
             
                  X-Request-Id:
         
     | 
| 
       51 
     | 
    
         
            -
                  -  
     | 
| 
      
 49 
     | 
    
         
            +
                  - d9380df3776a38ab5f4e86dc6bf642a6
         
     | 
| 
       52 
50 
     | 
    
         
             
                  X-Runtime:
         
     | 
| 
       53 
     | 
    
         
            -
                  - '2. 
     | 
| 
      
 51 
     | 
    
         
            +
                  - '2.337130'
         
     | 
| 
       54 
52 
     | 
    
         
             
                  X-Ua-Compatible:
         
     | 
| 
       55 
53 
     | 
    
         
             
                  - IE=Edge,chrome=1
         
     | 
| 
       56 
54 
     | 
    
         
             
                  Transfer-Encoding:
         
     | 
| 
         @@ -58,143 +56,48 @@ http_interactions: 
     | 
|
| 
       58 
56 
     | 
    
         
             
                  Connection:
         
     | 
| 
       59 
57 
     | 
    
         
             
                  - keep-alive
         
     | 
| 
       60 
58 
     | 
    
         
             
                body:
         
     | 
| 
       61 
     | 
    
         
            -
                  encoding:  
     | 
| 
       62 
     | 
    
         
            -
                  string:  
     | 
| 
       63 
     | 
    
         
            -
                     
     | 
| 
       64 
     | 
    
         
            -
                     
     | 
| 
       65 
     | 
    
         
            -
                     
     | 
| 
       66 
     | 
    
         
            -
                     
     | 
| 
       67 
     | 
    
         
            -
                     
     | 
| 
       68 
     | 
    
         
            -
                     
     | 
| 
       69 
     | 
    
         
            -
                     
     | 
| 
       70 
     | 
    
         
            -
                     
     | 
| 
       71 
     | 
    
         
            -
                     
     | 
| 
       72 
     | 
    
         
            -
                     
     | 
| 
       73 
     | 
    
         
            -
                     
     | 
| 
       74 
     | 
    
         
            -
                     
     | 
| 
       75 
     | 
    
         
            -
                     
     | 
| 
       76 
     | 
    
         
            -
                     
     | 
| 
       77 
     | 
    
         
            -
                     
     | 
| 
       78 
     | 
    
         
            -
                     
     | 
| 
       79 
     | 
    
         
            -
                     
     | 
| 
       80 
     | 
    
         
            -
                     
     | 
| 
       81 
     | 
    
         
            -
                     
     | 
| 
       82 
     | 
    
         
            -
                     
     | 
| 
       83 
     | 
    
         
            -
                     
     | 
| 
       84 
     | 
    
         
            -
                     
     | 
| 
       85 
     | 
    
         
            -
                     
     | 
| 
       86 
     | 
    
         
            -
                     
     | 
| 
       87 
     | 
    
         
            -
                     
     | 
| 
       88 
     | 
    
         
            -
                     
     | 
| 
       89 
     | 
    
         
            -
                     
     | 
| 
       90 
     | 
    
         
            -
                     
     | 
| 
       91 
     | 
    
         
            -
                     
     | 
| 
       92 
     | 
    
         
            -
                     
     | 
| 
       93 
     | 
    
         
            -
                     
     | 
| 
       94 
     | 
    
         
            -
                     
     | 
| 
       95 
     | 
    
         
            -
                     
     | 
| 
       96 
     | 
    
         
            -
                     
     | 
| 
       97 
     | 
    
         
            -
                     
     | 
| 
       98 
     | 
    
         
            -
                     
     | 
| 
       99 
     | 
    
         
            -
                     
     | 
| 
       100 
     | 
    
         
            -
                     
     | 
| 
       101 
     | 
    
         
            -
                     
     | 
| 
       102 
     | 
    
         
            -
                     
     | 
| 
       103 
     | 
    
         
            -
                    hxllQBcoTAbAgSwywAzUXwb4ARlkgAEoSAZ4AJllQBcoTAbAgSwywAzUXwb4
         
     | 
| 
       104 
     | 
    
         
            -
                    ARlkgBmovwzwAzLIgA5QoAwAA13nGEkGDER7LgMER5MM6CcDzuaeQ8uAk5NP
         
     | 
| 
       105 
     | 
    
         
            -
                    MsBXBhB0Kxmgz9yVAcmFDDD9MHkqA6iOgYNkwD9i+0MC23iIhwQIeSkyoH5M
         
     | 
| 
       106 
     | 
    
         
            -
                    QA4qA5r6A8qApkYnGfBiZUBRNzsppDyMmblbBlCADKBWGVDdQPV3KhtbBlCF
         
     | 
| 
       107 
     | 
    
         
            -
                    RElVyUnKpe4depCKCWMoVaKgMeIppyorhDTLgC54oAyA45hlgAEoSAbAeYwy
         
     | 
| 
       108 
     | 
    
         
            -
                    wIQTJAM8eIwywAAUJgPgQGYZYAPqLQM8gToywAAUJgN8ephJBhiAwmQAHMgs
         
     | 
| 
       109 
     | 
    
         
            -
                    AyxA/WWAH1BXBpiAgmSAB5BRBhiAwmQAHMgsAyxA/WWAH1BXBliA+ssAP6Cu
         
     | 
| 
       110 
     | 
    
         
            -
                    DOgCBcoAMNB1jpFkwEC0lzIgnmSApwwwzT0HkwHdk08ywFsG4JvJAAyQAaZY
         
     | 
| 
       111 
     | 
    
         
            -
                    5EIGCJcM4AvCTmKRvy8/rVezN+v1w2b5ZfZWz0DQsw1YVYVRXhdGm6bwBmsG
         
     | 
| 
       112 
     | 
    
         
            -
                    VB84E5SI+h4tOOeI4oRVMXdVFKtUnRQxqv+Y39QgEM4FN2sESiVhIrlYeLDR
         
     | 
| 
       113 
     | 
    
         
            -
                    Bgk90wY0JXOAXMjIiVy4bAyrWjA3z9BuwfXhjMExTt7r+mTJgtiD44tjmhtS
         
     | 
| 
       114 
     | 
    
         
            -
                    h1Jypqtrpv8Szw530+zfZoe7afaPdK/hd7N/3x7+Eu02Kt/NPmzXT5v/+Pbd
         
     | 
| 
       115 
     | 
    
         
            -
                    x92VRgi6uv3EV21JgTimJ4YZ6yELW22JHn0SPTwtiLTbkvNjTkeoqOkU0aFT
         
     | 
| 
       116 
     | 
    
         
            -
                    1LMOPrYuiWMe6/Fa35cszWSBSkJwRjIqMkZLJlSe6kmTxHGrS5zkgb4EztP6
         
     | 
| 
       117 
     | 
    
         
            -
                    EjdRkDCBAzXCBMATZEw8gBpj4iYKUyZwolaZAIl6OxNPIkwARGHSxKef1dLE
         
     | 
| 
       118 
     | 
    
         
            -
                    TRRmTeBErTWBEfXXJn5EAkYU5E08iBpv4iYKEydwolacwIj6mxM/Igrq/WHq
         
     | 
| 
       119 
     | 
    
         
            -
                    xI+oUidOokB3AiZygIwkT4bCPbMnmIuYT/rEQ5/YJqOD6BPzySd94q1P+ocq
         
     | 
| 
       120 
     | 
    
         
            -
                    7jN39Ul6oU8Kpz7BtmjVpk/epKv1Skepv6itDlH3s/f/xM/6JK8Ko01VuNOF
         
     | 
| 
       121 
     | 
    
         
            -
                    0f4Lvqk+UeRMnxQ4v60jwUTw/0IIX9EkkqIhNQk9zcG4qHSrJjE3w6RJJk0y
         
     | 
| 
       122 
     | 
    
         
            -
                    liZh4uLLw74NRa1A9GBk2wamc8zpSBQdO0WkO0U9vRBjaxKcxliwXCV6gFYy
         
     | 
| 
       123 
     | 
    
         
            -
                    kxkWhRIkTUpFE0QTQVim/1etJnGSB2oSOE+rSdxEQZoEDtRoEgBPkCbxAGo0
         
     | 
| 
       124 
     | 
    
         
            -
                    iZsoTJPAiVpNAiTqrUk8iTABEIVpEp9+VmsSN1GYJoETtZoERtRfk/gRCRhR
         
     | 
| 
       125 
     | 
    
         
            -
                    kCbxIGo0iZsoTJPAiVpNAiPqr0n8iCio94dpEj+iSpM4iQI1CZjIATKSJhkK
         
     | 
| 
       126 
     | 
    
         
            -
                    90yTSC6nbSk8LYlxLjqUJTGcfLIk3paE3sySUIMlyS4sSem0JNYt8myW5K2+
         
     | 
| 
       127 
     | 
    
         
            -
                    RdIvs/+phpnZ/9KTDJPNoSRaVyXRL/S26SVxduZHslge00uy9Dy9JEc3VicJ
         
     | 
| 
       128 
     | 
    
         
            -
                    kTZvwhAmyeX6lX7eRJ17k7Q88SanrWB1JoZ2mYTJJExGyyvJ67fEZYwP3yPc
         
     | 
| 
       129 
     | 
    
         
            -
                    mVdCbZlvnWPOBqXo0B0i3R3qWYYc25akBSZZkedFnupBqWQp5Yn+6Jpd5WXC
         
     | 
| 
       130 
     | 
    
         
            -
                    khzTuGTyuGvndexAVQKHaVWJAyfIk8BpGk/iggmSJB40jSRx4IQZEjhOa0gg
         
     | 
| 
       131 
     | 
    
         
            -
                    OL31iCcOJi6cMDfi06tqN+LACRMjcJxWjABw+lsRPxwBwAlSIh44jRJx4IT5
         
     | 
| 
       132 
     | 
    
         
            -
                    EDhO60MAOP1liB8OdXf0MBPih1OZkOs4gRoEjHONYiQHMgjrxWYcaFp/0zdN
         
     | 
| 
       133 
     | 
    
         
            -
                    xDS3HCxNpHvySYB4CxB2MwHC3AIkRk4BQjFAgPAraSLfMXEiQS4TFNK69GYi
         
     | 
| 
       134 
     | 
    
         
            -
                    hDF2JkJ0LdzYdkgZX0kUIUwIicjtE0WaagdnijQNMZmPyXyMZT54s7FznPH6
         
     | 
| 
       135 
     | 
    
         
            -
                    C0Q5U0WurT9yfowlVaTqFvUUIx7bfvBqGlRmcVyijOCySBVlSHdnmeu6UzzN
         
     | 
| 
       136 
     | 
    
         
            -
                    UVHGsUS2XJEueqABgQPZkkUMSEEWBE5kyRYxAQWZEA8iS7qIASnMhsCRbPki
         
     | 
| 
       137 
     | 
    
         
            -
                    NqTeRsQTyZAwYkAKsyI+vc2cMWJACjMjcCRbyogFqb8d8UMy5YyYkIIMiQeS
         
     | 
| 
       138 
     | 
    
         
            -
                    JWnEgBRmSeBItqwRC1J/U+KHZEobsSD1tyV+SKa8kS5SoDEBI7lIRrImg/Fe
         
     | 
| 
       139 
     | 
    
         
            -
                    PGGjA/RJnfipE+PkdCh1Yjj5pE6c6oRdCI7+Mst95q46yS/Uienx/wt14tzH
         
     | 
| 
       140 
     | 
    
         
            -
                    9EKd/PXp56Xut4+z2V91C71dfpl9F5MTeVI25VGpi6sn69K6+Ab25A9YspQy
         
     | 
| 
       141 
     | 
    
         
            -
                    GXOSXDxEY1myVIqzcBNn4sSCNLVmdR+2epyWKn3pS5WKlGSHFZ3sqqD3UqVV
         
     | 
| 
       142 
     | 
    
         
            -
                    74uajhdVt5D+QiWxTMb2BKrMKSsSlpWiQDRP4izTNZCyVJUkyTPGKc1QkuHW
         
     | 
| 
       143 
     | 
    
         
            -
                    Ezi4AyUBnKaVBC6eIEMAx2kMgZMmSA944DR6wMUT5gbgPK0bAPH0FgOePJg4
         
     | 
| 
       144 
     | 
    
         
            -
                    ecKsgE/fqq2AiydMCcB5WiUA4envA/x4BIQnSAZ48DQywMUTZgLgPK0JgPD0
         
     | 
| 
       145 
     | 
    
         
            -
                    1wB+PBTQ38McgB9P5QAcPIECAMxzFWOk6H8Y2LPQn0o6Rf49lyY9m2sOvTTp
         
     | 
| 
       146 
     | 
    
         
            -
                    ycmnyN878hc3i/wFIPI3/W59HvkzyNoa3PbUyI/Wp0Yeb/XUyB8R7lOMY4wx
         
     | 
| 
       147 
     | 
    
         
            -
                    KNwHPOXxo8dTHo83ecpjCvcDwv1pCPQbAuXNhkAJGAKpewj0lZ/nqzO/4/bF
         
     | 
| 
       148 
     | 
    
         
            -
                    mXf8tmszMx6f5owRROObL8DME9soWa0shAZdWci0AHNT38D1l5sWmJLFvtEB
         
     | 
| 
       149 
     | 
    
         
            -
                    /iUmi5Una/pXP5mZnt09TwSzzsI6xxiXX666RP2b6ugKmOR5hkhBlURSxAlj
         
     | 
| 
       150 
     | 
    
         
            -
                    ccGV/viq1H9kKUtUFuci5ubVl7vggQ4YjmNefNkAFCSB4TzGtZdNOEEW2IPH
         
     | 
| 
       151 
     | 
    
         
            -
                    uPSyAShMA8OBzCsv24B6e2BPoM7CywagMBHs08NM6y4bgMJMMBzIvOyyBai/
         
     | 
| 
       152 
     | 
    
         
            -
                    CvYD6q66bAIKcsEeQMZFlw1AYTIYDmRec9kC1N8G+wF1l1y2APXXwX5A3RWX
         
     | 
| 
       153 
     | 
    
         
            -
                    u0CBPhgMdJ1jJCE8EO15MhiTZHqOzjcZzDT5HCwZrHvySQl7+5D+Szu5z9z1
         
     | 
| 
       154 
     | 
    
         
            -
                    IcWFD2FOH8Ihu1Wdrdmhm2hXWY3ZD0+POkL/y49vovc/0RMz3B4QPVQHRMVj
         
     | 
| 
       155 
     | 
    
         
            -
                    Hu1/pbc0Iyijp2YEqVp33M6M6A+tP/O7K24k5hcGOcyN8BM3clnvdrdsbYnJ
         
     | 
| 
       156 
     | 
    
         
            -
                    kEyGZCRDwtqfFhVNVPU9QlyP0+lByblBVXvM5aAUHTpH1HSOw2xDorE1SVnm
         
     | 
| 
       157 
     | 
    
         
            -
                    sSzjmGSSlSLLZZGqIs9JSilJiIgpZwjH6rj6Mog+0JXAmY7LCoGogoQJHKpd
         
     | 
| 
       158 
     | 
    
         
            -
                    XQjGFGRNPKDaRYZAVGHqBE51XGsITtXbn3hSVUsOgajCJIpP/2tWHgJRhZkU
         
     | 
| 
       159 
     | 
    
         
            -
                    ONVxASIwVX+d4kcl4FRBTsWDql2OCEQVJlbgVMdVicBU/e2KHxUFjwxhisWP
         
     | 
| 
       160 
     | 
    
         
            -
                    6rBGEYQq0LOAqQAwI8mWIZHPFy6ahIuvcDHPZQcSLqaTT8LFW7gkNxMuCUC4
         
     | 
| 
       161 
     | 
    
         
            -
                    mBZJPRUubIHYAMLlh5/EdeHy8Kv4ZjLyYJl4MGNSV5yXMamrckrKm5Ly/rRj
         
     | 
| 
       162 
     | 
    
         
            -
                    YnqzMTE1jInqYkwU7jHRttPW6Zho9D2nY+I7iRyD4k4OkKCHWfIaWZa3T88y
         
     | 
| 
       163 
     | 
    
         
            -
                    9HB+6+3/9OeuPrZVRGNGiBS3F9FN3fuNq3VrTCr6Gx34X56K5qS5mxGR2eEn
         
     | 
| 
       164 
     | 
    
         
            -
                    TdPQdL5ePbdttNE55oqKrrpHHYfhsV20zBUW1fIFKonzEokcF0imCY8V5UWS
         
     | 
| 
       165 
     | 
    
         
            -
                    Vhv/UFxies1Fd/EDZTQc6pqMNmAF2Wg41RUbbYIK0tEeVFd0tAErzEfDsa75
         
     | 
| 
       166 
     | 
    
         
            -
                    aBtWbyHtiWUR0gasMCPt0wvtRtqAFaak4VjXlLQFq7+T9sOyOWkTVpCU9sC6
         
     | 
| 
       167 
     | 
    
         
            -
                    IqUNWGFWGo51zUpbsPpraT8sm5a2YPX30n5YNi/dxQoU02AsCM1IZnpQ5jM1
         
     | 
| 
       168 
     | 
    
         
            -
                    rfuPmNS0Xy6gcW47VC6g4eSTmvbWMNnNNEwG0DDSqWGwLe3GpmHepLqdZ99/
         
     | 
| 
       169 
     | 
    
         
            -
                    WT4sH2ff/zN6F8dna+rr0kgdSvUf0a4uDdQvJEleJ8kL0NJMcinZYaMEfz2d
         
     | 
| 
       170 
     | 
    
         
            -
                    n64L16nAK6vjG6t0ktOTnP7TjIr8YuzKBxsVu2d2j4qxc1QkBDAqxldGxZ+k
         
     | 
| 
       171 
     | 
    
         
            -
                    tA+Kvx4KQ8dE8kLGREx4LCUSQ46JdfWBh8S6QqcR8QWNiGdLZsb0ZI3haqUh
         
     | 
| 
       172 
     | 
    
         
            -
                    +wPTx+UwbWs2dI457YFRfQtF9S1Uxxp0bP0qcpVxJAt9dxeS6BpgcVmWCUlI
         
     | 
| 
       173 
     | 
    
         
            -
                    RpKiSGXMZUF59ry5hoM80LzCeZ731nARBUlXONBxaw0nT5Bv9QA67qzhIgpT
         
     | 
| 
       174 
     | 
    
         
            -
                    rXCi5401QES9Lasn0WFfDRdRmGD16WftthouojC3Cid63lUDQtRfq/oRCRhR
         
     | 
| 
       175 
     | 
    
         
            -
                    kFH1IDruqeEiCpOpcKLnLTUgRP09qh8RBfX+MIXqR1RvqOEgCrSnYCIHyEji
         
     | 
| 
       176 
     | 
    
         
            -
                    dCjc83ReLujkTP2W1DTORYdaUtNw8smZetuB4mZ2oDDYgfLCDiRuOwBJXTu1
         
     | 
| 
       177 
     | 
    
         
            -
                    A+/Wq6+zN191yBxVG1zO/vLuTfS35FkQ7HR5lB/Lo2KXRx+T3o5AB9J6QChU
         
     | 
| 
       178 
     | 
    
         
            -
                    MftpvX6cux+mTmiuTpLYmKD8xluTWpLXmMQsprBtNzppavJEJZgq26oTrNU/
         
     | 
| 
       179 
     | 
    
         
            -
                    GYUXaRQKFOOm8Qt1+HGKCtMvHScZWzhpfsW4ktV1POak10b13XP4Bo5Hf6iY
         
     | 
| 
       180 
     | 
    
         
            -
                    ZogimfEyZyLN84wpUmBZ9UGaMY7SkudYxmnemgQrcaBBgHO0BsFOEmQO4CCN
         
     | 
| 
       181 
     | 
    
         
            -
                    ObjCEWQMPEAaY2AnCTMFcJLWFDhIehsCTxJMrpCEmQGfflObATtJmBGAk7RG
         
     | 
| 
       182 
     | 
    
         
            -
                    4DpJfxPgRyKukwQZAA+SxgDYScIifzhJG/lfJ+kf8fuR0Ku9OCzS9yOpIn0r
         
     | 
| 
       183 
     | 
    
         
            -
                    SWCEDyaxAIwU2YdinmdBYcKmiN4rC8o8FxwoC8p08imi947o+z8y7T6zO6JP
         
     | 
| 
       184 
     | 
    
         
            -
                    nRE9dT6gmywYPokN/ntdpJ9m36e7r+8+pls1eyP4yXJon6rSSOnSXVUa5XXp
         
     | 
| 
       185 
     | 
    
         
            -
                    t/FoLiWEC3JY5A6wNya6+L3/dLOMTvVZI3RLhU7x+YuMzysRyhoRWoq8EqEp
         
     | 
| 
       186 
     | 
    
         
            -
                    cv7iz5D7F//6mNM+GB1voqi6ifQXK07Q6Iukx0keS04oo4qqOGMZI3ruSoR+
         
     | 
| 
       187 
     | 
    
         
            -
                    sRS6L6pS10KeoDZQd6MHRuxwoDZiByAFhe5woiZ0hwAFxfAeRE0MD0AKC+bh
         
     | 
| 
       188 
     | 
    
         
            -
                    SG0wD0XqHdV7IumoHoAUFt779LY6vAcghcX5cKQ2zgci9Q/4/ZAEECko8vdA
         
     | 
| 
       189 
     | 
    
         
            -
                    aiJ/AFKYAoAjtQoAiNTfBfghUdggECYF/JAqKeBGCrQDYCQXyUiaYDDeiwW9
         
     | 
| 
       190 
     | 
    
         
            -
                    xLSppm8GgGluOlgGQPfkky/w9gX9czLcZ3b7gszpC6yxii0D4HxHuR8weZYF
         
     | 
| 
       191 
     | 
    
         
            -
                    59uZPRyKvhFTUC2KLpJ+T0sZt4arKw64M1xdlZMjeLGOQNQtnmflYS2XFLsd
         
     | 
| 
       192 
     | 
    
         
            -
                    ge25nM4xxm3UfqhuYv1NSuXYgiBLSKY4Q4IniOCcUYJEouIiphRxpr/2U5yU
         
     | 
| 
       193 
     | 
    
         
            -
                    WWnZRa3DHWgH4DTmTdS6PEFqAI5j3EPNQBPkBTxwjFuodXnCpACcx7yDmoWn
         
     | 
| 
       194 
     | 
    
         
            -
                    txHw5OlsoNblCdMBPn3LtH9alyfMBcB5zNunmXn6iwA/nu7uaQaeIAvgwWPc
         
     | 
| 
       195 
     | 
    
         
            -
                    PK3LE6YA4DzmvdPMPP3jfz+e7tZpZp7+wb8fT3fntA5PYOQP5rmKMVLYPwzs
         
     | 
| 
       196 
     | 
    
         
            -
                    RdZ/Mi3i7Rvzm+aag8X83ZNPMb9vzE/7Wxj3mavm+P3/BQAAAP//AwC15Bqs
         
     | 
| 
       197 
     | 
    
         
            -
                    9ygBAA==
         
     | 
| 
      
 59 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 60 
     | 
    
         
            +
                  string: '{"pagination":{"total":17875,"total_pages":894,"first_page":true,"last_page":false,"previous_page":null,"next_page":2,"out_of_bounds":false,"offset":0,"current_page":1,"per_page":20,"entries_on_page":20},"data":[{"id":"50fa222096ab5860160c49b5","created_at":"2010-05-20T19:18:49Z","updated_at":"2013-05-21T00:57:30Z","name":"Epson
         
     | 
| 
      
 61 
     | 
    
         
            +
                    PowerLite Pro Cinema 810","slug":"epson-powerlite-pro-cinema-810","_type":"Electronics::Projector","types":[],"msrp":99.99,"article_ids":[],"website_ids":["50e669d7bd028648e0000003"],"publish_on":"2010-12-15T02:17:05+00:00","upc":"","price_grabber_id":"47798688","rubric_id":null,"brand_id":"50f9ed6fbd0286638e0000b9","model":"PowerLite
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Pro Cinema 810","resource_uri":"/products/epson-powerlite-pro-cinema-810","archive_state":"by_date","is_scoring_baseline":false,"archived":true,"rubric":{"name":"","permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"},"resource":{"rel":"/api/v1/rubrics","href":"https://the-guide-staging.herokuapp.com/api/v1/rubrics"}}},"attachments":[{"id":"50fc5452bd0286cc5c001f70","created_at":"2013-01-20T20:32:18Z","updated_at":"2013-01-20T20:32:18Z","name":"Epson-PowerLite-Pro-Cinema-810-102536.jpg","type":"file","tags":["vanity"],"versions":{"s50x50":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s50x50_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s150x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s150x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s200x75":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s200x75_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s250x250":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s250x250_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x150":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x150_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s300x112":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s300x112_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s500x500":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s500x500_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s600x600":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s600x600_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s630x235":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s630x235_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x400":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x400_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x350":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x350_Epson-PowerLite-Pro-Cinema-810-102536.jpg","s940x110":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/s940x110_Epson-PowerLite-Pro-Cinema-810-102536.jpg","original":"http://reviewed-staging.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg"},"caption":null,"alt_text":null,"data":{"url":"http://reviewed-production.s3.amazonaws.com/attachment/b7d4b436fd66ca1a095470606d5179418e71278b/Epson-PowerLite-Pro-Cinema-810-102536.jpg","file_size":2147,"content_type":"image/jpeg"},"position":0,"processing":null,"permissions":{"read":true,"create":false,"update":false,"destroy":false},"api_links":{"collection":{"rel":"/api/v1/attachments","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments"},"resource":{"rel":"/api/v1/attachments/50fc5452bd0286cc5c001f70","href":"https://the-guide-staging.herokuapp.com/api/v1/attachments/50fc5452bd0286cc5c001f70"}}}],"bulk_uploads":[],"permissions":{"read":true,"create":false,"update":false,"destroy":false,"manage_baseline_products":false},"api_links":{"collection":{"rel":"/api/v1/products","href":"https://the-guide-staging.herokuapp.com/api/v1/products"},"resource":{"rel":"/api/v1/products/51f6dd9b40a0ce88bb000029","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9b40a0ce88bb000029"}}},{"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/51f6dd9b40a0ce88bb00002a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9b40a0ce88bb00002a"}}},{"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/51f6dd9b40a0ce88bb00002b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9b40a0ce88bb00002b"}}},{"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/51f6dd9b40a0ce88bb00002c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9b40a0ce88bb00002c"}}},{"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/51f6dd9b40a0ce88bb00002d","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9b40a0ce88bb00002d"}}},{"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/51f6dd9c40a0ce88bb00002e","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb00002e"}}},{"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/51f6dd9c40a0ce88bb00002f","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb00002f"}}},{"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/51f6dd9c40a0ce88bb000030","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000030"}}},{"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/51f6dd9c40a0ce88bb000031","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000031"}}},{"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/51f6dd9c40a0ce88bb000032","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000032"}}},{"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/51f6dd9c40a0ce88bb000033","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000033"}}},{"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/51f6dd9c40a0ce88bb000034","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000034"}}},{"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/51f6dd9c40a0ce88bb000035","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9c40a0ce88bb000035"}}},{"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/51f6dd9d40a0ce88bb000036","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb000036"}}},{"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/51f6dd9d40a0ce88bb000037","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb000037"}}},{"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/51f6dd9d40a0ce88bb000038","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb000038"}}},{"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/51f6dd9d40a0ce88bb000039","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb000039"}}},{"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/51f6dd9d40a0ce88bb00003a","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb00003a"}}},{"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/51f6dd9d40a0ce88bb00003b","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb00003b"}}},{"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/51f6dd9d40a0ce88bb00003c","href":"https://the-guide-staging.herokuapp.com/api/v1/products/51f6dd9d40a0ce88bb00003c"}}}]}'
         
     | 
| 
       198 
101 
     | 
    
         
             
                http_version: 
         
     | 
| 
       199 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 102 
     | 
    
         
            +
              recorded_at: Mon, 29 Jul 2013 21:24:45 GMT
         
     | 
| 
       200 
103 
     | 
    
         
             
            recorded_with: VCR 2.4.0
         
     |