ndb-ruby 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +11 -0
  3. data/.gitignore +9 -0
  4. data/.rubocop.yml +1055 -0
  5. data/.travis.yml +4 -0
  6. data/CODE_OF_CONDUCT.md +13 -0
  7. data/Gemfile +4 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +80 -0
  10. data/Rakefile +4 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +7 -0
  13. data/lib/ndb-ruby.rb +41 -0
  14. data/lib/ndb/food_report.rb +13 -0
  15. data/lib/ndb/list.rb +21 -0
  16. data/lib/ndb/nutrient_report.rb +21 -0
  17. data/lib/ndb/search.rb +24 -0
  18. data/lib/ndb/version.rb +3 -0
  19. data/ndb-ruby.gemspec +32 -0
  20. data/spec/fixtures/vcr_cassettes/food_report_ndbno.yml +766 -0
  21. data/spec/fixtures/vcr_cassettes/food_report_type.yml +1278 -0
  22. data/spec/fixtures/vcr_cassettes/list_max.yml +574 -0
  23. data/spec/fixtures/vcr_cassettes/list_offset.yml +324 -0
  24. data/spec/fixtures/vcr_cassettes/list_sort.yml +324 -0
  25. data/spec/fixtures/vcr_cassettes/list_type.yml +324 -0
  26. data/spec/fixtures/vcr_cassettes/nutrient_report_food_group.yml +829 -0
  27. data/spec/fixtures/vcr_cassettes/nutrient_report_max.yml +1576 -0
  28. data/spec/fixtures/vcr_cassettes/nutrient_report_ndbno.yml +89 -0
  29. data/spec/fixtures/vcr_cassettes/nutrient_report_nutrients.yml +824 -0
  30. data/spec/fixtures/vcr_cassettes/nutrient_report_offset.yml +824 -0
  31. data/spec/fixtures/vcr_cassettes/nutrient_report_subset.yml +826 -0
  32. data/spec/fixtures/vcr_cassettes/search_all_foods.yml +375 -0
  33. data/spec/fixtures/vcr_cassettes/search_food_group.yml +375 -0
  34. data/spec/fixtures/vcr_cassettes/search_max_rows.yml +675 -0
  35. data/spec/fixtures/vcr_cassettes/search_query.yml +375 -0
  36. data/spec/fixtures/vcr_cassettes/search_sort_name.yml +213 -0
  37. data/spec/ndb/food_report_spec.rb +19 -0
  38. data/spec/ndb/list_spec.rb +33 -0
  39. data/spec/ndb/nutrient_report_spec.rb +49 -0
  40. data/spec/ndb/search_spec.rb +59 -0
  41. data/spec/ndb_spec.rb +13 -0
  42. data/spec/spec_helper.rb +21 -0
  43. metadata +211 -0
@@ -0,0 +1,375 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.nal.usda.gov/ndb/search?api_key=DEMO_KEY&fg=&format=JSON&max=50&offset=0&q=&sort=r
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Accept-Ranges:
22
+ - bytes
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type
27
+ Access-Control-Allow-Methods:
28
+ - GET, POST, OPTIONS
29
+ Access-Control-Allow-Origin:
30
+ - "*"
31
+ Age:
32
+ - '0'
33
+ Content-Type:
34
+ - application/json;charset=UTF-8
35
+ Date:
36
+ - Sun, 27 Sep 2015 00:52:09 GMT
37
+ Location:
38
+ - ''
39
+ Server:
40
+ - nginx
41
+ Vary:
42
+ - Accept-Encoding
43
+ Via:
44
+ - 1.1 varnish-v4
45
+ X-Cache:
46
+ - MISS
47
+ X-Ratelimit-Limit:
48
+ - '1000'
49
+ X-Ratelimit-Remaining:
50
+ - '980'
51
+ X-Varnish:
52
+ - '42211375'
53
+ Transfer-Encoding:
54
+ - chunked
55
+ Connection:
56
+ - keep-alive
57
+ body:
58
+ encoding: ASCII-8BIT
59
+ string: |-
60
+ {
61
+ "list": {
62
+ "q": "",
63
+ "sr": "27",
64
+ "start": 0,
65
+ "end": 50,
66
+ "total": 8618,
67
+ "group": "",
68
+ "sort": "r",
69
+ "item": [
70
+ {
71
+ "offset": 0,
72
+ "group": "Dairy and Egg Products",
73
+ "name": "Butter, salted",
74
+ "ndbno": "01001"
75
+ },
76
+ {
77
+ "offset": 1,
78
+ "group": "Dairy and Egg Products",
79
+ "name": "Butter, whipped, with salt",
80
+ "ndbno": "01002"
81
+ },
82
+ {
83
+ "offset": 2,
84
+ "group": "Dairy and Egg Products",
85
+ "name": "Butter oil, anhydrous",
86
+ "ndbno": "01003"
87
+ },
88
+ {
89
+ "offset": 3,
90
+ "group": "Dairy and Egg Products",
91
+ "name": "Cheese, blue",
92
+ "ndbno": "01004"
93
+ },
94
+ {
95
+ "offset": 4,
96
+ "group": "Dairy and Egg Products",
97
+ "name": "Cheese, brick",
98
+ "ndbno": "01005"
99
+ },
100
+ {
101
+ "offset": 5,
102
+ "group": "Dairy and Egg Products",
103
+ "name": "Cheese, brie",
104
+ "ndbno": "01006"
105
+ },
106
+ {
107
+ "offset": 6,
108
+ "group": "Dairy and Egg Products",
109
+ "name": "Cheese, camembert",
110
+ "ndbno": "01007"
111
+ },
112
+ {
113
+ "offset": 7,
114
+ "group": "Dairy and Egg Products",
115
+ "name": "Cheese, caraway",
116
+ "ndbno": "01008"
117
+ },
118
+ {
119
+ "offset": 8,
120
+ "group": "Dairy and Egg Products",
121
+ "name": "Cheese, cheddar",
122
+ "ndbno": "01009"
123
+ },
124
+ {
125
+ "offset": 9,
126
+ "group": "Dairy and Egg Products",
127
+ "name": "Cheese, cheshire",
128
+ "ndbno": "01010"
129
+ },
130
+ {
131
+ "offset": 10,
132
+ "group": "Dairy and Egg Products",
133
+ "name": "Cheese, colby",
134
+ "ndbno": "01011"
135
+ },
136
+ {
137
+ "offset": 11,
138
+ "group": "Dairy and Egg Products",
139
+ "name": "Cheese, cottage, creamed, large or small curd",
140
+ "ndbno": "01012"
141
+ },
142
+ {
143
+ "offset": 12,
144
+ "group": "Dairy and Egg Products",
145
+ "name": "Cheese, cottage, creamed, with fruit",
146
+ "ndbno": "01013"
147
+ },
148
+ {
149
+ "offset": 13,
150
+ "group": "Dairy and Egg Products",
151
+ "name": "Cheese, cottage, nonfat, uncreamed, dry, large or small curd",
152
+ "ndbno": "01014"
153
+ },
154
+ {
155
+ "offset": 14,
156
+ "group": "Dairy and Egg Products",
157
+ "name": "Cheese, cottage, lowfat, 2% milkfat",
158
+ "ndbno": "01015"
159
+ },
160
+ {
161
+ "offset": 15,
162
+ "group": "Dairy and Egg Products",
163
+ "name": "Cheese, cottage, lowfat, 1% milkfat",
164
+ "ndbno": "01016"
165
+ },
166
+ {
167
+ "offset": 16,
168
+ "group": "Dairy and Egg Products",
169
+ "name": "Cheese, cream",
170
+ "ndbno": "01017"
171
+ },
172
+ {
173
+ "offset": 17,
174
+ "group": "Dairy and Egg Products",
175
+ "name": "Cheese, edam",
176
+ "ndbno": "01018"
177
+ },
178
+ {
179
+ "offset": 18,
180
+ "group": "Dairy and Egg Products",
181
+ "name": "Cheese, feta",
182
+ "ndbno": "01019"
183
+ },
184
+ {
185
+ "offset": 19,
186
+ "group": "Dairy and Egg Products",
187
+ "name": "Cheese, fontina",
188
+ "ndbno": "01020"
189
+ },
190
+ {
191
+ "offset": 20,
192
+ "group": "Dairy and Egg Products",
193
+ "name": "Cheese, gjetost",
194
+ "ndbno": "01021"
195
+ },
196
+ {
197
+ "offset": 21,
198
+ "group": "Dairy and Egg Products",
199
+ "name": "Cheese, gouda",
200
+ "ndbno": "01022"
201
+ },
202
+ {
203
+ "offset": 22,
204
+ "group": "Dairy and Egg Products",
205
+ "name": "Cheese, gruyere",
206
+ "ndbno": "01023"
207
+ },
208
+ {
209
+ "offset": 23,
210
+ "group": "Dairy and Egg Products",
211
+ "name": "Cheese, limburger",
212
+ "ndbno": "01024"
213
+ },
214
+ {
215
+ "offset": 24,
216
+ "group": "Dairy and Egg Products",
217
+ "name": "Cheese, monterey",
218
+ "ndbno": "01025"
219
+ },
220
+ {
221
+ "offset": 25,
222
+ "group": "Dairy and Egg Products",
223
+ "name": "Cheese, mozzarella, whole milk",
224
+ "ndbno": "01026"
225
+ },
226
+ {
227
+ "offset": 26,
228
+ "group": "Dairy and Egg Products",
229
+ "name": "Cheese, mozzarella, whole milk, low moisture",
230
+ "ndbno": "01027"
231
+ },
232
+ {
233
+ "offset": 27,
234
+ "group": "Dairy and Egg Products",
235
+ "name": "Cheese, mozzarella, part skim milk",
236
+ "ndbno": "01028"
237
+ },
238
+ {
239
+ "offset": 28,
240
+ "group": "Dairy and Egg Products",
241
+ "name": "Cheese, mozzarella, low moisture, part-skim",
242
+ "ndbno": "01029"
243
+ },
244
+ {
245
+ "offset": 29,
246
+ "group": "Dairy and Egg Products",
247
+ "name": "Cheese, muenster",
248
+ "ndbno": "01030"
249
+ },
250
+ {
251
+ "offset": 30,
252
+ "group": "Dairy and Egg Products",
253
+ "name": "Cheese, neufchatel",
254
+ "ndbno": "01031"
255
+ },
256
+ {
257
+ "offset": 31,
258
+ "group": "Dairy and Egg Products",
259
+ "name": "Cheese, parmesan, grated",
260
+ "ndbno": "01032"
261
+ },
262
+ {
263
+ "offset": 32,
264
+ "group": "Dairy and Egg Products",
265
+ "name": "Cheese, parmesan, hard",
266
+ "ndbno": "01033"
267
+ },
268
+ {
269
+ "offset": 33,
270
+ "group": "Dairy and Egg Products",
271
+ "name": "Cheese, port de salut",
272
+ "ndbno": "01034"
273
+ },
274
+ {
275
+ "offset": 34,
276
+ "group": "Dairy and Egg Products",
277
+ "name": "Cheese, provolone",
278
+ "ndbno": "01035"
279
+ },
280
+ {
281
+ "offset": 35,
282
+ "group": "Dairy and Egg Products",
283
+ "name": "Cheese, ricotta, whole milk",
284
+ "ndbno": "01036"
285
+ },
286
+ {
287
+ "offset": 36,
288
+ "group": "Dairy and Egg Products",
289
+ "name": "Cheese, ricotta, part skim milk",
290
+ "ndbno": "01037"
291
+ },
292
+ {
293
+ "offset": 37,
294
+ "group": "Dairy and Egg Products",
295
+ "name": "Cheese, romano",
296
+ "ndbno": "01038"
297
+ },
298
+ {
299
+ "offset": 38,
300
+ "group": "Dairy and Egg Products",
301
+ "name": "Cheese, roquefort",
302
+ "ndbno": "01039"
303
+ },
304
+ {
305
+ "offset": 39,
306
+ "group": "Dairy and Egg Products",
307
+ "name": "Cheese, swiss",
308
+ "ndbno": "01040"
309
+ },
310
+ {
311
+ "offset": 40,
312
+ "group": "Dairy and Egg Products",
313
+ "name": "Cheese, tilsit",
314
+ "ndbno": "01041"
315
+ },
316
+ {
317
+ "offset": 41,
318
+ "group": "Dairy and Egg Products",
319
+ "name": "Cheese, pasteurized process, American, fortified with vitamin D",
320
+ "ndbno": "01042"
321
+ },
322
+ {
323
+ "offset": 42,
324
+ "group": "Dairy and Egg Products",
325
+ "name": "Cheese, pasteurized process, pimento",
326
+ "ndbno": "01043"
327
+ },
328
+ {
329
+ "offset": 43,
330
+ "group": "Dairy and Egg Products",
331
+ "name": "Cheese, pasteurized process, swiss",
332
+ "ndbno": "01044"
333
+ },
334
+ {
335
+ "offset": 44,
336
+ "group": "Dairy and Egg Products",
337
+ "name": "Cheese food, cold pack, American",
338
+ "ndbno": "01045"
339
+ },
340
+ {
341
+ "offset": 45,
342
+ "group": "Dairy and Egg Products",
343
+ "name": "Cheese food, pasteurized process, American, vitamin D fortified",
344
+ "ndbno": "01046"
345
+ },
346
+ {
347
+ "offset": 46,
348
+ "group": "Dairy and Egg Products",
349
+ "name": "Cheese food, pasteurized process, swiss",
350
+ "ndbno": "01047"
351
+ },
352
+ {
353
+ "offset": 47,
354
+ "group": "Dairy and Egg Products",
355
+ "name": "Cheese spread, pasteurized process, American",
356
+ "ndbno": "01048"
357
+ },
358
+ {
359
+ "offset": 48,
360
+ "group": "Dairy and Egg Products",
361
+ "name": "Cream, fluid, half and half",
362
+ "ndbno": "01049"
363
+ },
364
+ {
365
+ "offset": 49,
366
+ "group": "Dairy and Egg Products",
367
+ "name": "Cream, fluid, light (coffee cream or table cream)",
368
+ "ndbno": "01050"
369
+ }
370
+ ]
371
+ }
372
+ }
373
+ http_version:
374
+ recorded_at: Sun, 27 Sep 2015 00:52:09 GMT
375
+ recorded_with: VCR 2.9.3
@@ -0,0 +1,375 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.nal.usda.gov/ndb/search?api_key=DEMO_KEY&fg=0500&format=JSON&max=50&offset=0&q=&sort=r
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Accept-Ranges:
22
+ - bytes
23
+ Access-Control-Allow-Credentials:
24
+ - 'true'
25
+ Access-Control-Allow-Headers:
26
+ - DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type
27
+ Access-Control-Allow-Methods:
28
+ - GET, POST, OPTIONS
29
+ Access-Control-Allow-Origin:
30
+ - "*"
31
+ Age:
32
+ - '0'
33
+ Content-Type:
34
+ - application/json;charset=UTF-8
35
+ Date:
36
+ - Sun, 27 Sep 2015 00:52:10 GMT
37
+ Location:
38
+ - ''
39
+ Server:
40
+ - nginx
41
+ Vary:
42
+ - Accept-Encoding
43
+ Via:
44
+ - 1.1 varnish-v4
45
+ X-Cache:
46
+ - MISS
47
+ X-Ratelimit-Limit:
48
+ - '1000'
49
+ X-Ratelimit-Remaining:
50
+ - '977'
51
+ X-Varnish:
52
+ - '41867080'
53
+ Transfer-Encoding:
54
+ - chunked
55
+ Connection:
56
+ - keep-alive
57
+ body:
58
+ encoding: ASCII-8BIT
59
+ string: |-
60
+ {
61
+ "list": {
62
+ "q": "",
63
+ "sr": "27",
64
+ "start": 0,
65
+ "end": 50,
66
+ "total": 390,
67
+ "group": "0500",
68
+ "sort": "r",
69
+ "item": [
70
+ {
71
+ "offset": 0,
72
+ "group": "Poultry Products",
73
+ "name": "Chicken, broiler, rotisserie, BBQ, breast meat only",
74
+ "ndbno": "05000"
75
+ },
76
+ {
77
+ "offset": 1,
78
+ "group": "Poultry Products",
79
+ "name": "Chicken, broilers or fryers, meat and skin and giblets and neck, raw",
80
+ "ndbno": "05001"
81
+ },
82
+ {
83
+ "offset": 2,
84
+ "group": "Poultry Products",
85
+ "name": "Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter",
86
+ "ndbno": "05002"
87
+ },
88
+ {
89
+ "offset": 3,
90
+ "group": "Poultry Products",
91
+ "name": "Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour",
92
+ "ndbno": "05003"
93
+ },
94
+ {
95
+ "offset": 4,
96
+ "group": "Poultry Products",
97
+ "name": "Chicken, broilers or fryers, meat and skin and giblets and neck, roasted",
98
+ "ndbno": "05004"
99
+ },
100
+ {
101
+ "offset": 5,
102
+ "group": "Poultry Products",
103
+ "name": "Chicken, broilers or fryers, meat and skin and giblets and neck, stewed",
104
+ "ndbno": "05005"
105
+ },
106
+ {
107
+ "offset": 6,
108
+ "group": "Poultry Products",
109
+ "name": "Chicken, broilers or fryers, meat and skin, raw",
110
+ "ndbno": "05006"
111
+ },
112
+ {
113
+ "offset": 7,
114
+ "group": "Poultry Products",
115
+ "name": "Chicken, broilers or fryers, meat and skin, cooked, fried, batter",
116
+ "ndbno": "05007"
117
+ },
118
+ {
119
+ "offset": 8,
120
+ "group": "Poultry Products",
121
+ "name": "Chicken, broilers or fryers, meat and skin, cooked, fried, flour",
122
+ "ndbno": "05008"
123
+ },
124
+ {
125
+ "offset": 9,
126
+ "group": "Poultry Products",
127
+ "name": "Chicken, broilers or fryers, meat and skin, cooked, roasted",
128
+ "ndbno": "05009"
129
+ },
130
+ {
131
+ "offset": 10,
132
+ "group": "Poultry Products",
133
+ "name": "Chicken, broilers or fryers, meat and skin, cooked, stewed",
134
+ "ndbno": "05010"
135
+ },
136
+ {
137
+ "offset": 11,
138
+ "group": "Poultry Products",
139
+ "name": "Chicken, broilers or fryers, meat only, raw",
140
+ "ndbno": "05011"
141
+ },
142
+ {
143
+ "offset": 12,
144
+ "group": "Poultry Products",
145
+ "name": "Chicken, broilers or fryers, meat only, cooked, fried",
146
+ "ndbno": "05012"
147
+ },
148
+ {
149
+ "offset": 13,
150
+ "group": "Poultry Products",
151
+ "name": "Chicken, broilers or fryers, meat only, roasted",
152
+ "ndbno": "05013"
153
+ },
154
+ {
155
+ "offset": 14,
156
+ "group": "Poultry Products",
157
+ "name": "Chicken, broilers or fryers, meat only, stewed",
158
+ "ndbno": "05014"
159
+ },
160
+ {
161
+ "offset": 15,
162
+ "group": "Poultry Products",
163
+ "name": "Chicken, broilers or fryers, skin only, raw",
164
+ "ndbno": "05015"
165
+ },
166
+ {
167
+ "offset": 16,
168
+ "group": "Poultry Products",
169
+ "name": "Chicken, broilers or fryers, skin only, cooked, fried, batter",
170
+ "ndbno": "05016"
171
+ },
172
+ {
173
+ "offset": 17,
174
+ "group": "Poultry Products",
175
+ "name": "Chicken, broilers or fryers, skin only, cooked, fried, flour",
176
+ "ndbno": "05017"
177
+ },
178
+ {
179
+ "offset": 18,
180
+ "group": "Poultry Products",
181
+ "name": "Chicken, broilers or fryers, skin only, cooked, roasted",
182
+ "ndbno": "05018"
183
+ },
184
+ {
185
+ "offset": 19,
186
+ "group": "Poultry Products",
187
+ "name": "Chicken, broilers or fryers, skin only, cooked, stewed",
188
+ "ndbno": "05019"
189
+ },
190
+ {
191
+ "offset": 20,
192
+ "group": "Poultry Products",
193
+ "name": "Chicken, broilers or fryers, giblets, raw",
194
+ "ndbno": "05020"
195
+ },
196
+ {
197
+ "offset": 21,
198
+ "group": "Poultry Products",
199
+ "name": "Chicken, broilers or fryers, giblets, cooked, fried",
200
+ "ndbno": "05021"
201
+ },
202
+ {
203
+ "offset": 22,
204
+ "group": "Poultry Products",
205
+ "name": "Chicken, broilers or fryers, giblets, cooked, simmered",
206
+ "ndbno": "05022"
207
+ },
208
+ {
209
+ "offset": 23,
210
+ "group": "Poultry Products",
211
+ "name": "Chicken, gizzard, all classes, raw",
212
+ "ndbno": "05023"
213
+ },
214
+ {
215
+ "offset": 24,
216
+ "group": "Poultry Products",
217
+ "name": "Chicken, gizzard, all classes, cooked, simmered",
218
+ "ndbno": "05024"
219
+ },
220
+ {
221
+ "offset": 25,
222
+ "group": "Poultry Products",
223
+ "name": "Chicken, heart, all classes, raw",
224
+ "ndbno": "05025"
225
+ },
226
+ {
227
+ "offset": 26,
228
+ "group": "Poultry Products",
229
+ "name": "Chicken, heart, all classes, cooked, simmered",
230
+ "ndbno": "05026"
231
+ },
232
+ {
233
+ "offset": 27,
234
+ "group": "Poultry Products",
235
+ "name": "Chicken, liver, all classes, raw",
236
+ "ndbno": "05027"
237
+ },
238
+ {
239
+ "offset": 28,
240
+ "group": "Poultry Products",
241
+ "name": "Chicken, liver, all classes, cooked, simmered",
242
+ "ndbno": "05028"
243
+ },
244
+ {
245
+ "offset": 29,
246
+ "group": "Poultry Products",
247
+ "name": "Chicken, broilers or fryers, light meat, meat and skin, raw",
248
+ "ndbno": "05029"
249
+ },
250
+ {
251
+ "offset": 30,
252
+ "group": "Poultry Products",
253
+ "name": "Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter",
254
+ "ndbno": "05030"
255
+ },
256
+ {
257
+ "offset": 31,
258
+ "group": "Poultry Products",
259
+ "name": "Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour",
260
+ "ndbno": "05031"
261
+ },
262
+ {
263
+ "offset": 32,
264
+ "group": "Poultry Products",
265
+ "name": "Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted",
266
+ "ndbno": "05032"
267
+ },
268
+ {
269
+ "offset": 33,
270
+ "group": "Poultry Products",
271
+ "name": "Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed",
272
+ "ndbno": "05033"
273
+ },
274
+ {
275
+ "offset": 34,
276
+ "group": "Poultry Products",
277
+ "name": "Chicken, broilers or fryers, dark meat, meat and skin, raw",
278
+ "ndbno": "05034"
279
+ },
280
+ {
281
+ "offset": 35,
282
+ "group": "Poultry Products",
283
+ "name": "Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter",
284
+ "ndbno": "05035"
285
+ },
286
+ {
287
+ "offset": 36,
288
+ "group": "Poultry Products",
289
+ "name": "Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour",
290
+ "ndbno": "05036"
291
+ },
292
+ {
293
+ "offset": 37,
294
+ "group": "Poultry Products",
295
+ "name": "Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted",
296
+ "ndbno": "05037"
297
+ },
298
+ {
299
+ "offset": 38,
300
+ "group": "Poultry Products",
301
+ "name": "Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed",
302
+ "ndbno": "05038"
303
+ },
304
+ {
305
+ "offset": 39,
306
+ "group": "Poultry Products",
307
+ "name": "Chicken, broilers or fryers, light meat, meat only, raw",
308
+ "ndbno": "05039"
309
+ },
310
+ {
311
+ "offset": 40,
312
+ "group": "Poultry Products",
313
+ "name": "Chicken, broilers or fryers, light meat, meat only, cooked, fried",
314
+ "ndbno": "05040"
315
+ },
316
+ {
317
+ "offset": 41,
318
+ "group": "Poultry Products",
319
+ "name": "Chicken, broilers or fryers, light meat, meat only, cooked, roasted",
320
+ "ndbno": "05041"
321
+ },
322
+ {
323
+ "offset": 42,
324
+ "group": "Poultry Products",
325
+ "name": "Chicken, broilers or fryers, light meat, meat only, cooked, stewed",
326
+ "ndbno": "05042"
327
+ },
328
+ {
329
+ "offset": 43,
330
+ "group": "Poultry Products",
331
+ "name": "Chicken, broilers or fryers, dark meat, meat only, raw",
332
+ "ndbno": "05043"
333
+ },
334
+ {
335
+ "offset": 44,
336
+ "group": "Poultry Products",
337
+ "name": "Chicken, broilers or fryers, dark meat, meat only, cooked, fried",
338
+ "ndbno": "05044"
339
+ },
340
+ {
341
+ "offset": 45,
342
+ "group": "Poultry Products",
343
+ "name": "Chicken, broilers or fryers, dark meat, meat only, cooked, roasted",
344
+ "ndbno": "05045"
345
+ },
346
+ {
347
+ "offset": 46,
348
+ "group": "Poultry Products",
349
+ "name": "Chicken, broilers or fryers, dark meat, meat only, cooked, stewed",
350
+ "ndbno": "05046"
351
+ },
352
+ {
353
+ "offset": 47,
354
+ "group": "Poultry Products",
355
+ "name": "Chicken, broilers or fryers, separable fat, raw",
356
+ "ndbno": "05047"
357
+ },
358
+ {
359
+ "offset": 48,
360
+ "group": "Poultry Products",
361
+ "name": "Chicken, broilers or fryers, back, meat and skin, raw",
362
+ "ndbno": "05048"
363
+ },
364
+ {
365
+ "offset": 49,
366
+ "group": "Poultry Products",
367
+ "name": "Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter",
368
+ "ndbno": "05049"
369
+ }
370
+ ]
371
+ }
372
+ }
373
+ http_version:
374
+ recorded_at: Sun, 27 Sep 2015 00:52:10 GMT
375
+ recorded_with: VCR 2.9.3