From edf679504d61510ec3ae61a590fbd0b22049ac5b Mon Sep 17 00:00:00 2001 From: Kayos Date: Tue, 28 Apr 2026 22:03:17 -0700 Subject: [PATCH] v0.3 step 1: foods schema + USDA SR Legacy density seed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase A foundation. Cobb 2026-04-29: 'go big or go home' on density-table aggregator — this commit lands the schema + seed data so the aggregator engine has something to look up against in step 2. DB: - migration 010: cauldron_foods (canonical_name PK, density_g_per_ml, default_unit_class enum mass/volume/count/mixed, common_size_g, category, usda_fdc_id, source enum) - migration 011: cauldron_food_mapping (per-household Mealie food_id → cauldron canonical food_id, used by aggregator + foods-dedupe later) Seed data: - scripts/build_foods_seed.py — extractor that walks USDA SR Legacy foodPortions, derives density g/ml from cup/tbsp/tsp/fl-oz/ml/etc measurements (handles SR Legacy's quirk of putting unit in 'modifier' with measureUnit.name='undetermined'), filters out babyfood / branded / fast-food / alcoholic-beverage clutter, normalizes names, categorizes via longest-keyword-wins - cauldron/data/foods_seed_usda.json — 2,462 foods with density values derived from USDA. 636KB, ships in the image. - cauldron/data/README.md — regen instructions + known issues / iteration plan (next pass: claude-curated cleanup → ~500-800 high-relevance entries + count-based foods like egg/onion that USDA doesn't cover) Loader (cauldron/foods.py): - load_seed_if_empty(db) called on app startup right after migrate(). Idempotent — won't reload if table is non-empty. - reload_seed(db) for forced reloads (INSERT IGNORE). - search_food(db, name) helper for the aggregator + UI. Categories present in seed: produce-vegetable: 300, spice: 256, dairy: 207, condiment: 197, legume: 189, meat: 166, beverage: 153, baking: 129, produce-fruit: 128, oil-fat: 126, nut-seed: 115, grain: 89, other: 407 The 407 'other' bucket and the verbose USDA names ('mayonnaise, reduced fat, with olive oil') will get cleaned up via clawdforge in step 3. For now the aggregator can already do the math against this seed; the unit-conversion engine is the next commit. --- cauldron/data/README.md | 46 + cauldron/data/foods_seed_usda.json | 19698 +++++++++++++++++++++++++++ cauldron/db.py | 40 + cauldron/foods.py | 99 + cauldron/server.py | 9 + scripts/build_foods_seed.py | 331 + 6 files changed, 20223 insertions(+) create mode 100644 cauldron/data/README.md create mode 100644 cauldron/data/foods_seed_usda.json create mode 100644 cauldron/foods.py create mode 100644 scripts/build_foods_seed.py diff --git a/cauldron/data/README.md b/cauldron/data/README.md new file mode 100644 index 0000000..85d297c --- /dev/null +++ b/cauldron/data/README.md @@ -0,0 +1,46 @@ +# cauldron/data — seed data shipped with the app + +## foods_seed_usda.json + +Canonical foods catalog seeded from USDA SR Legacy (2018-04 release). +Each entry has a derived `density_g_per_ml` from USDA's `foodPortions` +data — the quantity-of-grams reported for one cup / tablespoon / etc. + +The aggregator engine (Phase A step 2) uses these density values to +combine "2 cups rice + 1.25 lb rice" into a single shopping-list line. + +### Regenerate + +If USDA ships a new SR Legacy dataset: + +```sh +# 1. Download the new dataset from https://fdc.nal.usda.gov/download-datasets +# Pick the "SR Legacy / Full Download — JSON" link. +# 2. Unzip somewhere local, e.g. /tmp/usda-sr.json +# 3. Re-run the extractor: +python3 scripts/build_foods_seed.py /tmp/usda-sr.json > cauldron/data/foods_seed_usda.json +# 4. Commit the resulting JSON +``` + +### Loading + +`cauldron/foods.py` runs `load_seed_if_empty(db)` on app boot — only loads +when the `cauldron_foods` table is empty. Safe to redeploy without re-loading. +For a manual reload (e.g. after updating the seed without dropping the +table), call `foods.reload_seed(db)` which uses INSERT IGNORE on the +canonical_name unique key. + +### Known issues / iteration + +The USDA SR Legacy descriptions are verbose and brand-laden ("Apples, +sulfured, stewed, with added sugar"). Our normalization is a heuristic — +expect ~15% of entries to have suboptimal canonical names. The Phase A +step 3 plan is to feed the seed through clawdforge → Sonnet to: + +1. Drop entries that aren't useful cooking foods +2. Normalize names (drop ", raw", merge brand variants) +3. Add count-based foods USDA doesn't cover (e.g. "egg", "onion" in count form) +4. Curate down to ~500-800 high-relevance foods + +Until that step lands, expect to manually search the canonical_name field +to find what you want; the aggregator's fuzzy matching covers most of it. diff --git a/cauldron/data/foods_seed_usda.json b/cauldron/data/foods_seed_usda.json new file mode 100644 index 0000000..3a0ac37 --- /dev/null +++ b/cauldron/data/foods_seed_usda.json @@ -0,0 +1,19698 @@ +[ + { + "canonical_name": "'s , classic chicken noodle soup", + "category": "meat", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 174548, + "usda_description": "CAMPBELL'S CHUNKY, Classic Chicken Noodle Soup" + }, + { + "canonical_name": "'s , old fashioned vegetable beef soup", + "category": "meat", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 172912, + "usda_description": "CAMPBELL'S CHUNKY, Old Fashioned Vegetable Beef Soup" + }, + { + "canonical_name": "'s fat free sour cream", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 172211, + "usda_description": "KRAFT BREAKSTONE'S FREE Fat Free Sour Cream" + }, + { + "canonical_name": "'s reduced fat sour cream", + "category": "dairy", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172210, + "usda_description": "KRAFT BREAKSTONE'S Reduced Fat Sour Cream" + }, + { + "canonical_name": "'s topping", + "category": "other", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 167956, + "usda_description": "Topping, SMUCKER'S MAGIC SHELL" + }, + { + "canonical_name": "'s, , macaroni & cheese, from kid's menu", + "category": "dairy", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 169010, + "usda_description": "APPLEBEE'S, KRAFT, Macaroni & Cheese, from kid's menu" + }, + { + "canonical_name": "'s, chicken noodle soup, condensed", + "category": "meat", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171556, + "usda_description": "CAMPBELL'S, Chicken Noodle Soup, condensed" + }, + { + "canonical_name": "'s, cream of mushroom soup, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 172901, + "usda_description": "CAMPBELL'S, Cream of Mushroom Soup, condensed" + }, + { + "canonical_name": "'s, tomato soup, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174547, + "usda_description": "CAMPBELL'S, Tomato Soup, condensed" + }, + { + "canonical_name": "-a-, chicken flavor, unprepared", + "category": "meat", + "density_g_per_ml": 0.704, + "default_unit_class": "volume", + "usda_fdc_id": 173347, + "usda_description": "RICE-A-RONI, chicken flavor, unprepared" + }, + { + "canonical_name": "abiyuch", + "category": "other", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 167782, + "usda_description": "Abiyuch, raw" + }, + { + "canonical_name": "acerola", + "category": "other", + "density_g_per_ml": 0.414, + "default_unit_class": "volume", + "usda_fdc_id": 171686, + "usda_description": "Acerola, (west indian cherry), raw" + }, + { + "canonical_name": "acerola juice", + "category": "beverage", + "density_g_per_ml": 1.022, + "default_unit_class": "volume", + "usda_fdc_id": 171687, + "usda_description": "Acerola juice, raw" + }, + { + "canonical_name": "acid whey", + "category": "other", + "density_g_per_ml": 0.219, + "default_unit_class": "volume", + "usda_fdc_id": 171281, + "usda_description": "Whey, acid, dried" + }, + { + "canonical_name": "agar seaweed", + "category": "other", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 169280, + "usda_description": "Seaweed, agar, raw" + }, + { + "canonical_name": "all areas grapefruit pink and red", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 174673, + "usda_description": "Grapefruit, raw, pink and red, all areas" + }, + { + "canonical_name": "all areas grapefruit pink and red and white", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 173033, + "usda_description": "Grapefruit, raw, pink and red and white, all areas" + }, + { + "canonical_name": "all areas grapefruit white", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 174676, + "usda_description": "Grapefruit, raw, white, all areas" + }, + { + "canonical_name": "all types peanuts", + "category": "nut-seed", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 172430, + "usda_description": "Peanuts, all types, raw" + }, + { + "canonical_name": "all types with salt peanuts", + "category": "nut-seed", + "density_g_per_ml": 0.514, + "default_unit_class": "volume", + "usda_fdc_id": 174260, + "usda_description": "Peanuts, all types, cooked, boiled, with salt" + }, + { + "canonical_name": "allspice spices", + "category": "other", + "density_g_per_ml": 0.396, + "default_unit_class": "volume", + "usda_fdc_id": 171315, + "usda_description": "Spices, allspice, ground" + }, + { + "canonical_name": "almond oil", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171031, + "usda_description": "Oil, almond" + }, + { + "canonical_name": "almond paste nuts", + "category": "nut-seed", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 170160, + "usda_description": "Nuts, almond paste" + }, + { + "canonical_name": "almonds nuts", + "category": "nut-seed", + "density_g_per_ml": 0.463, + "default_unit_class": "volume", + "usda_fdc_id": 170567, + "usda_description": "Nuts, almonds" + }, + { + "canonical_name": "amaranth leaves", + "category": "other", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 168385, + "usda_description": "Amaranth leaves, raw" + }, + { + "canonical_name": "american type grapes", + "category": "produce-fruit", + "density_g_per_ml": 0.389, + "default_unit_class": "volume", + "usda_fdc_id": 174682, + "usda_description": "Grapes, american type (slip skin), raw" + }, + { + "canonical_name": "anhydrous butter oil", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173412, + "usda_description": "Butter oil, anhydrous" + }, + { + "canonical_name": "anise seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 171316, + "usda_description": "Spices, anise seed" + }, + { + "canonical_name": "apple fruit butters", + "category": "oil-fat", + "density_g_per_ml": 1.171, + "default_unit_class": "mass", + "usda_fdc_id": 168816, + "usda_description": "Fruit butters, apple" + }, + { + "canonical_name": "apple juice, canned or bottled, unsweetened, with added ascorbic acid", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 167771, + "usda_description": "Apple juice, canned or bottled, unsweetened, with added ascorbic acid" + }, + { + "canonical_name": "apple juice, canned or bottled, unsweetened, without added ascorbic acid", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173933, + "usda_description": "Apple juice, canned or bottled, unsweetened, without added ascorbic acid" + }, + { + "canonical_name": "apples with skin", + "category": "produce-fruit", + "density_g_per_ml": 0.495, + "default_unit_class": "volume", + "usda_fdc_id": 171688, + "usda_description": "Apples, raw, with skin (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "apples without skin", + "category": "produce-fruit", + "density_g_per_ml": 0.594, + "default_unit_class": "volume", + "usda_fdc_id": 171689, + "usda_description": "Apples, raw, without skin" + }, + { + "canonical_name": "apples without skin, cooked, microwave", + "category": "produce-fruit", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 173929, + "usda_description": "Apples, raw, without skin, cooked, microwave" + }, + { + "canonical_name": "apples, canned, sweetened, sliced, drained, heated", + "category": "produce-fruit", + "density_g_per_ml": 0.862, + "default_unit_class": "volume", + "usda_fdc_id": 173930, + "usda_description": "Apples, canned, sweetened, sliced, drained, heated" + }, + { + "canonical_name": "apples, frozen, unsweetened, heated", + "category": "produce-fruit", + "density_g_per_ml": 0.871, + "default_unit_class": "volume", + "usda_fdc_id": 173932, + "usda_description": "Apples, frozen, unsweetened, heated (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "apples, frozen, unsweetened, unheated", + "category": "produce-fruit", + "density_g_per_ml": 0.731, + "default_unit_class": "volume", + "usda_fdc_id": 171694, + "usda_description": "Apples, frozen, unsweetened, unheated (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "applesauce, canned, sweetened, with salt", + "category": "condiment", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 167773, + "usda_description": "Applesauce, canned, sweetened, with salt" + }, + { + "canonical_name": "applesauce, canned, sweetened, without salt", + "category": "condiment", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171696, + "usda_description": "Applesauce, canned, sweetened, without salt" + }, + { + "canonical_name": "applesauce, canned, unsweetened, with added ascorbic acid", + "category": "condiment", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 167772, + "usda_description": "Applesauce, canned, unsweetened, with added ascorbic acid" + }, + { + "canonical_name": "applesauce, canned, unsweetened, without added ascorbic acid", + "category": "condiment", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171695, + "usda_description": "Applesauce, canned, unsweetened, without added ascorbic acid (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "apricot jams and preserves", + "category": "condiment", + "density_g_per_ml": 1.353, + "default_unit_class": "mass", + "usda_fdc_id": 170645, + "usda_description": "Jams and preserves, apricot" + }, + { + "canonical_name": "apricot kernel oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171032, + "usda_description": "Oil, apricot kernel" + }, + { + "canonical_name": "apricot nectar, canned, with added ascorbic acid", + "category": "other", + "density_g_per_ml": 1.076, + "default_unit_class": "mass", + "usda_fdc_id": 171704, + "usda_description": "Apricot nectar, canned, with added ascorbic acid" + }, + { + "canonical_name": "apricots", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 171697, + "usda_description": "Apricots, raw" + }, + { + "canonical_name": "apricots, canned, extra heavy syrup pack, without skin, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171701, + "usda_description": "Apricots, canned, extra heavy syrup pack, without skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, extra light syrup pack, with skin, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 173938, + "usda_description": "Apricots, canned, extra light syrup pack, with skin, solids and liquids (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "apricots, canned, heavy syrup pack, with skin, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 171699, + "usda_description": "Apricots, canned, heavy syrup pack, with skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, heavy syrup pack, without skin, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 171700, + "usda_description": "Apricots, canned, heavy syrup pack, without skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.847, + "default_unit_class": "volume", + "usda_fdc_id": 167768, + "usda_description": "Apricots, canned, heavy syrup, drained" + }, + { + "canonical_name": "apricots, canned, juice pack, with skin, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173937, + "usda_description": "Apricots, canned, juice pack, with skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, light syrup pack, with skin, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 173939, + "usda_description": "Apricots, canned, light syrup pack, with skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, water pack, with skin, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 171698, + "usda_description": "Apricots, canned, water pack, with skin, solids and liquids" + }, + { + "canonical_name": "apricots, canned, water pack, without skin, solids and liquids", + "category": "beverage", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 173936, + "usda_description": "Apricots, canned, water pack, without skin, solids and liquids" + }, + { + "canonical_name": "apricots, frozen, sweetened", + "category": "other", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 171703, + "usda_description": "Apricots, frozen, sweetened" + }, + { + "canonical_name": "arrowroot", + "category": "other", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168490, + "usda_description": "Arrowroot, raw" + }, + { + "canonical_name": "arrowroot flour", + "category": "baking", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 170684, + "usda_description": "Arrowroot flour" + }, + { + "canonical_name": "artichokes, , frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 169312, + "usda_description": "Artichokes, (globe or french), frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "artichokes, , frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 168388, + "usda_description": "Artichokes, (globe or french), frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "artichokes, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 169311, + "usda_description": "Artichokes, (globe or french), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "artichokes, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 168386, + "usda_description": "Artichokes, (globe or french), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "asparagus", + "category": "other", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 168389, + "usda_description": "Asparagus, raw" + }, + { + "canonical_name": "asparagus drained", + "category": "other", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168390, + "usda_description": "Asparagus, cooked, boiled, drained" + }, + { + "canonical_name": "asparagus, canned, drained solids", + "category": "other", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 169207, + "usda_description": "Asparagus, canned, drained solids" + }, + { + "canonical_name": "asparagus, canned, no salt added, solids and liquids", + "category": "spice", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 169314, + "usda_description": "Asparagus, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "asparagus, canned, regular pack, solids and liquids", + "category": "other", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 169206, + "usda_description": "Asparagus, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "asparagus, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168494, + "usda_description": "Asparagus, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "asparagus, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169209, + "usda_description": "Asparagus, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "avocado oil", + "category": "produce-fruit", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 173573, + "usda_description": "Oil, avocado" + }, + { + "canonical_name": "avocados all commercial varieties", + "category": "produce-fruit", + "density_g_per_ml": 0.741, + "default_unit_class": "volume", + "usda_fdc_id": 171705, + "usda_description": "Avocados, raw, all commercial varieties" + }, + { + "canonical_name": "avocados california", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 171706, + "usda_description": "Avocados, raw, California" + }, + { + "canonical_name": "avocados florida", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 171707, + "usda_description": "Avocados, raw, Florida" + }, + { + "canonical_name": "babassu oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171428, + "usda_description": "Oil, babassu" + }, + { + "canonical_name": "bacon and tomato salad dressing", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 167704, + "usda_description": "Salad dressing, bacon and tomato" + }, + { + "canonical_name": "bacon grease animal fat", + "category": "meat", + "density_g_per_ml": 0.872, + "default_unit_class": "volume", + "usda_fdc_id": 172345, + "usda_description": "Animal fat, bacon grease" + }, + { + "canonical_name": "baking chocolate, unsweetened, squares", + "category": "baking", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 167568, + "usda_description": "Baking chocolate, unsweetened, squares" + }, + { + "canonical_name": "balsam-pear , leafy tips drained, with salt", + "category": "spice", + "density_g_per_ml": 0.245, + "default_unit_class": "volume", + "usda_fdc_id": 168495, + "usda_description": "Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "balsam-pear , leafy tips drained, without salt", + "category": "spice", + "density_g_per_ml": 0.245, + "default_unit_class": "volume", + "usda_fdc_id": 168392, + "usda_description": "Balsam-pear (bitter gourd), leafy tips, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "balsam-pear , pods drained, with salt", + "category": "spice", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 168496, + "usda_description": "Balsam-pear (bitter gourd), pods, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "balsam-pear , pods drained, without salt", + "category": "spice", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 168394, + "usda_description": "Balsam-pear (bitter gourd), pods, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "balsamic vinegar", + "category": "condiment", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 172241, + "usda_description": "Vinegar, balsamic" + }, + { + "canonical_name": "bamboo shoots", + "category": "other", + "density_g_per_ml": 0.64, + "default_unit_class": "volume", + "usda_fdc_id": 169210, + "usda_description": "Bamboo shoots, raw" + }, + { + "canonical_name": "bamboo shoots, canned, drained solids", + "category": "other", + "density_g_per_ml": 0.554, + "default_unit_class": "volume", + "usda_fdc_id": 169212, + "usda_description": "Bamboo shoots, canned, drained solids" + }, + { + "canonical_name": "banana pepper", + "category": "spice", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 169394, + "usda_description": "Pepper, banana, raw" + }, + { + "canonical_name": "bananas", + "category": "produce-fruit", + "density_g_per_ml": 0.793, + "default_unit_class": "volume", + "usda_fdc_id": 173944, + "usda_description": "Bananas, raw" + }, + { + "canonical_name": "bananas, dehydrated, or banana powder", + "category": "produce-fruit", + "density_g_per_ml": 0.421, + "default_unit_class": "volume", + "usda_fdc_id": 173945, + "usda_description": "Bananas, dehydrated, or banana powder" + }, + { + "canonical_name": "barley flour or meal", + "category": "grain", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 169739, + "usda_description": "Barley flour or meal" + }, + { + "canonical_name": "barley malt flour", + "category": "grain", + "density_g_per_ml": 0.685, + "default_unit_class": "volume", + "usda_fdc_id": 169740, + "usda_description": "Barley malt flour" + }, + { + "canonical_name": "barley, pearled, cooked", + "category": "grain", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 170285, + "usda_description": "Barley, pearled, cooked" + }, + { + "canonical_name": "basil", + "category": "spice", + "density_g_per_ml": 0.14, + "default_unit_class": "volume", + "usda_fdc_id": 172232, + "usda_description": "Basil, fresh" + }, + { + "canonical_name": "basil spices", + "category": "spice", + "density_g_per_ml": 0.218, + "default_unit_class": "volume", + "usda_fdc_id": 171317, + "usda_description": "Spices, basil, dried" + }, + { + "canonical_name": "bay leaf spices", + "category": "other", + "density_g_per_ml": 0.122, + "default_unit_class": "volume", + "usda_fdc_id": 170917, + "usda_description": "Spices, bay leaf" + }, + { + "canonical_name": "beans, adzuki, mature seed with salt", + "category": "legume", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 173789, + "usda_description": "Beans, adzuki, mature seed, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, adzuki, mature seeds", + "category": "legume", + "density_g_per_ml": 0.833, + "default_unit_class": "volume", + "usda_fdc_id": 173727, + "usda_description": "Beans, adzuki, mature seeds, raw" + }, + { + "canonical_name": "beans, adzuki, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 173728, + "usda_description": "Beans, adzuki, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, adzuki, mature seeds, canned, sweetened", + "category": "legume", + "density_g_per_ml": 1.251, + "default_unit_class": "mass", + "usda_fdc_id": 173729, + "usda_description": "Beans, adzuki, mature seeds, canned, sweetened" + }, + { + "canonical_name": "beans, baked, canned, no salt added", + "category": "legume", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 168128, + "usda_description": "Beans, baked, canned, no salt added" + }, + { + "canonical_name": "beans, baked, canned, plain or vegetarian", + "category": "legume", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 175182, + "usda_description": "Beans, baked, canned, plain or vegetarian" + }, + { + "canonical_name": "beans, baked, canned, with beef", + "category": "legume", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 175183, + "usda_description": "Beans, baked, canned, with beef" + }, + { + "canonical_name": "beans, baked, canned, with franks", + "category": "legume", + "density_g_per_ml": 1.095, + "default_unit_class": "mass", + "usda_fdc_id": 175184, + "usda_description": "Beans, baked, canned, with franks" + }, + { + "canonical_name": "beans, baked, canned, with pork", + "category": "legume", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 175185, + "usda_description": "Beans, baked, canned, with pork" + }, + { + "canonical_name": "beans, baked, canned, with pork and sweet sauce", + "category": "legume", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 173732, + "usda_description": "Beans, baked, canned, with pork and sweet sauce" + }, + { + "canonical_name": "beans, baked, canned, with pork and tomato sauce", + "category": "produce-vegetable", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 173733, + "usda_description": "Beans, baked, canned, with pork and tomato sauce" + }, + { + "canonical_name": "beans, baked, home prepared", + "category": "legume", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 173731, + "usda_description": "Beans, baked, home prepared" + }, + { + "canonical_name": "beans, black turtle, mature seeds", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 175186, + "usda_description": "Beans, black turtle, mature seeds, raw" + }, + { + "canonical_name": "beans, black turtle, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 175239, + "usda_description": "Beans, black turtle, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, black turtle, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 175187, + "usda_description": "Beans, black turtle, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, black turtle, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175188, + "usda_description": "Beans, black turtle, mature seeds, canned" + }, + { + "canonical_name": "beans, black, mature seeds", + "category": "legume", + "density_g_per_ml": 0.819, + "default_unit_class": "volume", + "usda_fdc_id": 173734, + "usda_description": "Beans, black, mature seeds, raw" + }, + { + "canonical_name": "beans, black, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 175237, + "usda_description": "Beans, black, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, black, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 173735, + "usda_description": "Beans, black, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, black, mature seeds, canned, low sodium", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175238, + "usda_description": "Beans, black, mature seeds, canned, low sodium" + }, + { + "canonical_name": "beans, chili, barbecue, ranch style, cooked", + "category": "legume", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 169065, + "usda_description": "Beans, chili, barbecue, ranch style, cooked" + }, + { + "canonical_name": "beans, cranberry , mature seeds", + "category": "legume", + "density_g_per_ml": 0.824, + "default_unit_class": "volume", + "usda_fdc_id": 175189, + "usda_description": "Beans, cranberry (roman), mature seeds, raw" + }, + { + "canonical_name": "beans, cranberry , mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175240, + "usda_description": "Beans, cranberry (roman), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, cranberry , mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173736, + "usda_description": "Beans, cranberry (roman), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, cranberry , mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.099, + "default_unit_class": "mass", + "usda_fdc_id": 173737, + "usda_description": "Beans, cranberry (roman), mature seeds, canned" + }, + { + "canonical_name": "beans, fava, in pod", + "category": "legume", + "density_g_per_ml": 0.533, + "default_unit_class": "volume", + "usda_fdc_id": 168574, + "usda_description": "Beans, fava, in pod, raw" + }, + { + "canonical_name": "beans, french, mature seeds", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 173738, + "usda_description": "Beans, french, mature seeds, raw" + }, + { + "canonical_name": "beans, french, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175241, + "usda_description": "Beans, french, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, french, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173739, + "usda_description": "Beans, french, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, great northern, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173790, + "usda_description": "Beans, great northern, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, great northern, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175191, + "usda_description": "Beans, great northern, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, great northern, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 175192, + "usda_description": "Beans, great northern, mature seeds, canned" + }, + { + "canonical_name": "beans, great northern, mature seeds, canned, low sodium", + "category": "legume", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 173791, + "usda_description": "Beans, great northern, mature seeds, canned, low sodium" + }, + { + "canonical_name": "beans, great northern, mature seeds, raw", + "category": "legume", + "density_g_per_ml": 0.773, + "default_unit_class": "volume", + "usda_fdc_id": 175190, + "usda_description": "Beans, great northern, mature seeds, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "beans, kidney, all types, mature seeds", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 175193, + "usda_description": "Beans, kidney, all types, mature seeds, raw" + }, + { + "canonical_name": "beans, kidney, all types, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173792, + "usda_description": "Beans, kidney, all types, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, kidney, all types, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.746, + "default_unit_class": "volume", + "usda_fdc_id": 173740, + "usda_description": "Beans, kidney, all types, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, kidney, all types, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 173741, + "usda_description": "Beans, kidney, all types, mature seeds, canned" + }, + { + "canonical_name": "beans, kidney, california red, mature seeds", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 173742, + "usda_description": "Beans, kidney, california red, mature seeds, raw" + }, + { + "canonical_name": "beans, kidney, california red, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173793, + "usda_description": "Beans, kidney, california red, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, kidney, california red, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173743, + "usda_description": "Beans, kidney, california red, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, kidney, mature seeds, sprouted", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 169213, + "usda_description": "Beans, kidney, mature seeds, sprouted, raw" + }, + { + "canonical_name": "beans, kidney, red, mature seeds", + "category": "legume", + "density_g_per_ml": 0.801, + "default_unit_class": "volume", + "usda_fdc_id": 173744, + "usda_description": "Beans, kidney, red, mature seeds, raw" + }, + { + "canonical_name": "beans, kidney, red, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175242, + "usda_description": "Beans, kidney, red, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, kidney, red, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.746, + "default_unit_class": "volume", + "usda_fdc_id": 175194, + "usda_description": "Beans, kidney, red, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water", + "category": "legume", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 175243, + "usda_description": "Beans, kidney, red, mature seeds, canned, drained solids, rinsed in tap water" + }, + { + "canonical_name": "beans, kidney, red, mature seeds, canned, solids and liquid, low sodium", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 175245, + "usda_description": "Beans, kidney, red, mature seeds, canned, solids and liquid, low sodium" + }, + { + "canonical_name": "beans, kidney, red, mature seeds, canned, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 175195, + "usda_description": "Beans, kidney, red, mature seeds, canned, solids and liquids" + }, + { + "canonical_name": "beans, kidney, royal red, mature seeds", + "category": "legume", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 175196, + "usda_description": "Beans, kidney, royal red, mature seeds, raw" + }, + { + "canonical_name": "beans, kidney, royal red, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175197, + "usda_description": "Beans, kidney, royal red, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, kidney, royal red, mature seeds, cooked, boiled with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175244, + "usda_description": "Beans, kidney, royal red, mature seeds, cooked, boiled with salt" + }, + { + "canonical_name": "beans, liquid from stewed kidney beans", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169885, + "usda_description": "Beans, liquid from stewed kidney beans" + }, + { + "canonical_name": "beans, mung, mature seeds, sprouted, canned, drained solids", + "category": "legume", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 170079, + "usda_description": "Beans, mung, mature seeds, sprouted, canned, drained solids" + }, + { + "canonical_name": "beans, navy, mature seeds", + "category": "legume", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 173745, + "usda_description": "Beans, navy, mature seeds, raw" + }, + { + "canonical_name": "beans, navy, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 173794, + "usda_description": "Beans, navy, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, navy, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 173746, + "usda_description": "Beans, navy, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, navy, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 173747, + "usda_description": "Beans, navy, mature seeds, canned" + }, + { + "canonical_name": "beans, navy, mature seeds, sprouted", + "category": "legume", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169139, + "usda_description": "Beans, navy, mature seeds, sprouted, raw" + }, + { + "canonical_name": "beans, pink, mature seeds", + "category": "legume", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 173748, + "usda_description": "Beans, pink, mature seeds, raw" + }, + { + "canonical_name": "beans, pink, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.714, + "default_unit_class": "volume", + "usda_fdc_id": 173795, + "usda_description": "Beans, pink, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, pink, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.714, + "default_unit_class": "volume", + "usda_fdc_id": 175198, + "usda_description": "Beans, pink, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, pinto, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 173796, + "usda_description": "Beans, pinto, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, pinto, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.72, + "default_unit_class": "volume", + "usda_fdc_id": 175200, + "usda_description": "Beans, pinto, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, pinto, mature seeds, canned, drained solids, rinsed in tap water", + "category": "legume", + "density_g_per_ml": 0.714, + "default_unit_class": "volume", + "usda_fdc_id": 173797, + "usda_description": "Beans, pinto, mature seeds, canned, drained solids, rinsed in tap water" + }, + { + "canonical_name": "beans, pinto, mature seeds, canned, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175201, + "usda_description": "Beans, pinto, mature seeds, canned, solids and liquids" + }, + { + "canonical_name": "beans, pinto, mature seeds, canned, solids and liquids, low sodium", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175247, + "usda_description": "Beans, pinto, mature seeds, canned, solids and liquids, low sodium" + }, + { + "canonical_name": "beans, pinto, mature seeds, raw", + "category": "legume", + "density_g_per_ml": 0.814, + "default_unit_class": "volume", + "usda_fdc_id": 175199, + "usda_description": "Beans, pinto, mature seeds, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "beans, shellie, canned, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169960, + "usda_description": "Beans, shellie, canned, solids and liquids" + }, + { + "canonical_name": "beans, small white, mature seeds", + "category": "legume", + "density_g_per_ml": 0.909, + "default_unit_class": "volume", + "usda_fdc_id": 173749, + "usda_description": "Beans, small white, mature seeds, raw" + }, + { + "canonical_name": "beans, small white, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.757, + "default_unit_class": "volume", + "usda_fdc_id": 175246, + "usda_description": "Beans, small white, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, small white, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.757, + "default_unit_class": "volume", + "usda_fdc_id": 173750, + "usda_description": "Beans, small white, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, snap, canned, all styles, seasoned, solids and liquids", + "category": "legume", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 169144, + "usda_description": "Beans, snap, canned, all styles, seasoned, solids and liquids" + }, + { + "canonical_name": "beans, snap, green", + "category": "legume", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 169961, + "usda_description": "Beans, snap, green, raw" + }, + { + "canonical_name": "beans, snap, green drained, with salt", + "category": "legume", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169321, + "usda_description": "Beans, snap, green, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "beans, snap, green drained, without salt", + "category": "legume", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169141, + "usda_description": "Beans, snap, green, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "beans, snap, green, canned, no salt added, drained solids", + "category": "legume", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 168505, + "usda_description": "Beans, snap, green, canned, no salt added, drained solids" + }, + { + "canonical_name": "beans, snap, green, canned, no salt added, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168502, + "usda_description": "Beans, snap, green, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "beans, snap, green, canned, regular pack, drained solids", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169143, + "usda_description": "Beans, snap, green, canned, regular pack, drained solids" + }, + { + "canonical_name": "beans, snap, green, canned, regular pack, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169142, + "usda_description": "Beans, snap, green, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "beans, snap, green, frozen drained without salt", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169963, + "usda_description": "Beans, snap, green, frozen, cooked, boiled, drained without salt" + }, + { + "canonical_name": "beans, snap, green, frozen drained, with salt", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169325, + "usda_description": "Beans, snap, green, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "beans, snap, green, frozen, all styles, microwaved", + "category": "legume", + "density_g_per_ml": 0.469, + "default_unit_class": "volume", + "usda_fdc_id": 169964, + "usda_description": "Beans, snap, green, frozen, all styles, microwaved" + }, + { + "canonical_name": "beans, snap, green, frozen, all styles, unprepared", + "category": "legume", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 169962, + "usda_description": "Beans, snap, green, frozen, all styles, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "beans, snap, green, microwaved", + "category": "legume", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 169965, + "usda_description": "Beans, snap, green, microwaved" + }, + { + "canonical_name": "beans, snap, yellow", + "category": "legume", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 169320, + "usda_description": "Beans, snap, yellow, raw" + }, + { + "canonical_name": "beans, snap, yellow drained, with salt", + "category": "legume", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169323, + "usda_description": "Beans, snap, yellow, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "beans, snap, yellow drained, without salt", + "category": "legume", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169322, + "usda_description": "Beans, snap, yellow, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "beans, snap, yellow, canned, no salt added, drained solids", + "category": "legume", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 169375, + "usda_description": "Beans, snap, yellow, canned, no salt added, drained solids" + }, + { + "canonical_name": "beans, snap, yellow, canned, no salt added, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168504, + "usda_description": "Beans, snap, yellow, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "beans, snap, yellow, canned, regular pack, drained solids", + "category": "legume", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 169374, + "usda_description": "Beans, snap, yellow, canned, regular pack, drained solids" + }, + { + "canonical_name": "beans, snap, yellow, canned, regular pack, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168503, + "usda_description": "Beans, snap, yellow, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "beans, snap, yellow, frozen drained, with salt", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169327, + "usda_description": "Beans, snap, yellow, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "beans, snap, yellow, frozen drained, without salt", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169326, + "usda_description": "Beans, snap, yellow, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "beans, snap, yellow, frozen, all styles, unprepared", + "category": "legume", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 169324, + "usda_description": "Beans, snap, yellow, frozen, all styles, unprepared" + }, + { + "canonical_name": "beans, white, mature seeds", + "category": "legume", + "density_g_per_ml": 0.853, + "default_unit_class": "volume", + "usda_fdc_id": 175202, + "usda_description": "Beans, white, mature seeds, raw" + }, + { + "canonical_name": "beans, white, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.757, + "default_unit_class": "volume", + "usda_fdc_id": 175249, + "usda_description": "Beans, white, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, white, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.757, + "default_unit_class": "volume", + "usda_fdc_id": 175203, + "usda_description": "Beans, white, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beans, white, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 175204, + "usda_description": "Beans, white, mature seeds, canned" + }, + { + "canonical_name": "beans, yellow, mature seeds", + "category": "legume", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 173751, + "usda_description": "Beans, yellow, mature seeds, raw" + }, + { + "canonical_name": "beans, yellow, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 175248, + "usda_description": "Beans, yellow, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "beans, yellow, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173752, + "usda_description": "Beans, yellow, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "beef tallow fat", + "category": "meat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171400, + "usda_description": "Fat, beef tallow" + }, + { + "canonical_name": "beef, bologna, reduced sodium", + "category": "meat", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 168118, + "usda_description": "Beef, bologna, reduced sodium" + }, + { + "canonical_name": "beef, corned beef hash, with potato, canned", + "category": "produce-vegetable", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 173332, + "usda_description": "Beef, corned beef hash, with potato, canned" + }, + { + "canonical_name": "beet greens", + "category": "other", + "density_g_per_ml": 0.161, + "default_unit_class": "volume", + "usda_fdc_id": 170375, + "usda_description": "Beet greens, raw" + }, + { + "canonical_name": "beets", + "category": "other", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 169145, + "usda_description": "Beets, raw" + }, + { + "canonical_name": "beets drained", + "category": "other", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169146, + "usda_description": "Beets, cooked, boiled, drained" + }, + { + "canonical_name": "beets, canned, drained solids", + "category": "other", + "density_g_per_ml": 0.724, + "default_unit_class": "volume", + "usda_fdc_id": 169966, + "usda_description": "Beets, canned, drained solids" + }, + { + "canonical_name": "beets, canned, no salt added, solids and liquids", + "category": "spice", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 168507, + "usda_description": "Beets, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "beets, canned, regular pack, solids and liquids", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 169147, + "usda_description": "Beets, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "beets, cooked, boiled. drained, with salt", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168506, + "usda_description": "Beets, cooked, boiled. drained, with salt" + }, + { + "canonical_name": "beets, harvard, canned, solids and liquids", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 170479, + "usda_description": "Beets, harvard, canned, solids and liquids" + }, + { + "canonical_name": "beets, pickled, canned, solids and liquids", + "category": "other", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 170480, + "usda_description": "Beets, pickled, canned, solids and liquids" + }, + { + "canonical_name": "beverages, , chocolate malt powder", + "category": "baking", + "density_g_per_ml": 0.33, + "default_unit_class": "volume", + "usda_fdc_id": 173222, + "usda_description": "Beverages, OVALTINE, chocolate malt powder" + }, + { + "canonical_name": "beverages, , cran cherry", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174147, + "usda_description": "Beverages, OCEAN SPRAY, Cran Cherry" + }, + { + "canonical_name": "beverages, , cran grape", + "category": "produce-fruit", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174132, + "usda_description": "Beverages, OCEAN SPRAY, Cran Grape" + }, + { + "canonical_name": "beverages, , cran lemonade", + "category": "produce-fruit", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 171900, + "usda_description": "Beverages, OCEAN SPRAY, Cran Lemonade" + }, + { + "canonical_name": "beverages, , cran pomegranate", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171909, + "usda_description": "Beverages, OCEAN SPRAY, Cran Pomegranate" + }, + { + "canonical_name": "beverages, , cran raspberry juice drink", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171899, + "usda_description": "Beverages, OCEAN SPRAY, Cran Raspberry Juice Drink" + }, + { + "canonical_name": "beverages, , cranberry-apple juice drink, bottled", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 171895, + "usda_description": "Beverages, OCEAN SPRAY, Cranberry-Apple Juice Drink, bottled" + }, + { + "canonical_name": "beverages, , diet cran cherry", + "category": "produce-fruit", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 171901, + "usda_description": "Beverages, OCEAN SPRAY, Diet Cran Cherry" + }, + { + "canonical_name": "beverages, , diet cranberry juice", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 171896, + "usda_description": "Beverages, OCEAN SPRAY, Diet Cranberry Juice" + }, + { + "canonical_name": "beverages, , hard cider", + "category": "other", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 174146, + "usda_description": "Beverages, AMBER, hard cider" + }, + { + "canonical_name": "beverages, , lemonada, limeade", + "category": "produce-fruit", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173189, + "usda_description": "Beverages, MINUTE MAID, Lemonada, Limeade" + }, + { + "canonical_name": "beverages, , light cranberry", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174148, + "usda_description": "Beverages, OCEAN SPRAY, Light Cranberry" + }, + { + "canonical_name": "beverages, , light cranberry and raspberry flavored juice", + "category": "produce-fruit", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 174136, + "usda_description": "Beverages, OCEAN SPRAY, Light Cranberry and Raspberry Flavored Juice" + }, + { + "canonical_name": "beverages, , light cranberry, concord grape", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174150, + "usda_description": "Beverages, OCEAN SPRAY, Light Cranberry, Concord Grape" + }, + { + "canonical_name": "beverages, , ruby red cranberry", + "category": "other", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 174856, + "usda_description": "Beverages, OCEAN SPRAY, Ruby Red cranberry" + }, + { + "canonical_name": "beverages, , water, bottled, non-carbonated, with fluoride", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 173658, + "usda_description": "Beverages, DANNON, water, bottled, non-carbonated, with Fluoride" + }, + { + "canonical_name": "beverages, , white cranberry peach", + "category": "produce-fruit", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174149, + "usda_description": "Beverages, OCEAN SPRAY, White Cranberry Peach" + }, + { + "canonical_name": "beverages, , white cranberry strawberry flavored juice drink", + "category": "produce-fruit", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174137, + "usda_description": "Beverages, OCEAN SPRAY, White Cranberry Strawberry Flavored Juice Drink" + }, + { + "canonical_name": "beverages, , zero, mixed berry", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174113, + "usda_description": "Beverages, POWERADE, Zero, Mixed Berry" + }, + { + "canonical_name": "beverages, almond milk, unsweetened, shelf stable", + "category": "nut-seed", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 174832, + "usda_description": "Beverages, almond milk, unsweetened, shelf stable" + }, + { + "canonical_name": "beverages, carbonated, , lemon-lime, without caffeine", + "category": "produce-fruit", + "density_g_per_ml": 1.066, + "default_unit_class": "mass", + "usda_fdc_id": 173206, + "usda_description": "Beverages, carbonated, SPRITE, lemon-lime, without caffeine" + }, + { + "canonical_name": "beverages, carbonated, club soda", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 174842, + "usda_description": "Beverages, carbonated, club soda" + }, + { + "canonical_name": "beverages, carbonated, cola, regular", + "category": "other", + "density_g_per_ml": 1.038, + "default_unit_class": "volume", + "usda_fdc_id": 174852, + "usda_description": "Beverages, carbonated, cola, regular" + }, + { + "canonical_name": "beverages, carbonated, cola, without caffeine", + "category": "other", + "density_g_per_ml": 1.038, + "default_unit_class": "volume", + "usda_fdc_id": 174851, + "usda_description": "Beverages, carbonated, cola, without caffeine" + }, + { + "canonical_name": "beverages, carbonated, ginger ale", + "category": "spice", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174846, + "usda_description": "Beverages, carbonated, ginger ale" + }, + { + "canonical_name": "beverages, carbonated, grape soda", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173203, + "usda_description": "Beverages, carbonated, grape soda" + }, + { + "canonical_name": "beverages, carbonated, lemon-lime soda, no caffeine", + "category": "produce-fruit", + "density_g_per_ml": 1.041, + "default_unit_class": "volume", + "usda_fdc_id": 173205, + "usda_description": "Beverages, carbonated, lemon-lime soda, no caffeine" + }, + { + "canonical_name": "beverages, carbonated, limeade, high caffeine", + "category": "produce-fruit", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171875, + "usda_description": "Beverages, carbonated, limeade, high caffeine" + }, + { + "canonical_name": "beverages, carbonated, low calorie, other than cola or pepper, without caffeine", + "category": "spice", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 173204, + "usda_description": "Beverages, carbonated, low calorie, other than cola or pepper, without caffeine" + }, + { + "canonical_name": "beverages, carbonated, orange", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174854, + "usda_description": "Beverages, carbonated, orange" + }, + { + "canonical_name": "beverages, carbonated, pepper-type, contains caffeine", + "category": "spice", + "density_g_per_ml": 1.038, + "default_unit_class": "volume", + "usda_fdc_id": 173209, + "usda_description": "Beverages, carbonated, pepper-type, contains caffeine" + }, + { + "canonical_name": "beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners", + "category": "baking", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 174853, + "usda_description": "Beverages, carbonated, reduced sugar, cola, contains caffeine and sweeteners" + }, + { + "canonical_name": "beverages, carbonated, root beer", + "category": "beverage", + "density_g_per_ml": 1.041, + "default_unit_class": "volume", + "usda_fdc_id": 171871, + "usda_description": "Beverages, carbonated, root beer" + }, + { + "canonical_name": "beverages, carbonated, tonic water", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171869, + "usda_description": "Beverages, carbonated, tonic water" + }, + { + "canonical_name": "beverages, carob-flavor beverage mix, powder", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 174114, + "usda_description": "Beverages, Carob-flavor beverage mix, powder" + }, + { + "canonical_name": "beverages, carob-flavor beverage mix, powder, prepared with whole milk", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 174115, + "usda_description": "Beverages, Carob-flavor beverage mix, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, chocolate powder, no sugar added", + "category": "baking", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 174824, + "usda_description": "Beverages, chocolate powder, no sugar added" + }, + { + "canonical_name": "beverages, chocolate syrup", + "category": "baking", + "density_g_per_ml": 1.268, + "default_unit_class": "mass", + "usda_fdc_id": 174117, + "usda_description": "Beverages, chocolate syrup" + }, + { + "canonical_name": "beverages, chocolate syrup, prepared with whole milk", + "category": "baking", + "density_g_per_ml": 1.192, + "default_unit_class": "mass", + "usda_fdc_id": 174118, + "usda_description": "Beverages, chocolate syrup, prepared with whole milk" + }, + { + "canonical_name": "beverages, chocolate-flavor beverage mix, powder, prepared with whole milk", + "category": "baking", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 171879, + "usda_description": "Beverages, chocolate-flavor beverage mix, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, chocolate-flavored drink, whey and milk based", + "category": "baking", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 167711, + "usda_description": "Beverages, Chocolate-flavored drink, whey and milk based" + }, + { + "canonical_name": "beverages, citrus fruit juice drink, frozen concentrate", + "category": "beverage", + "density_g_per_ml": 1.19, + "default_unit_class": "mass", + "usda_fdc_id": 171912, + "usda_description": "Beverages, citrus fruit juice drink, frozen concentrate" + }, + { + "canonical_name": "beverages, citrus fruit juice drink, frozen concentrate, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171913, + "usda_description": "Beverages, citrus fruit juice drink, frozen concentrate, prepared with water" + }, + { + "canonical_name": "beverages, clam and tomato juice, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.021, + "default_unit_class": "volume", + "usda_fdc_id": 171882, + "usda_description": "Beverages, Clam and tomato juice, canned" + }, + { + "canonical_name": "beverages, cocktail mix, non-alcoholic, concentrated, frozen", + "category": "beverage", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 167739, + "usda_description": "Beverages, Cocktail mix, non-alcoholic, concentrated, frozen" + }, + { + "canonical_name": "beverages, cocoa mix, powder, prepared with water", + "category": "baking", + "density_g_per_ml": 1.16, + "default_unit_class": "mass", + "usda_fdc_id": 174123, + "usda_description": "Beverages, Cocoa mix, powder, prepared with water" + }, + { + "canonical_name": "beverages, cocoa mix, with aspartame, powder, prepared with water", + "category": "baking", + "density_g_per_ml": 1.085, + "default_unit_class": "mass", + "usda_fdc_id": 175092, + "usda_description": "Beverages, cocoa mix, with aspartame, powder, prepared with water" + }, + { + "canonical_name": "beverages, coffee substitute, cereal grain beverage, powder", + "category": "beverage", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 174138, + "usda_description": "Beverages, coffee substitute, cereal grain beverage, powder" + }, + { + "canonical_name": "beverages, coffee substitute, cereal grain beverage, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.018, + "default_unit_class": "volume", + "usda_fdc_id": 174139, + "usda_description": "Beverages, coffee substitute, cereal grain beverage, prepared with water" + }, + { + "canonical_name": "beverages, coffee, brewed, breakfast blend", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171881, + "usda_description": "Beverages, coffee, brewed, breakfast blend" + }, + { + "canonical_name": "beverages, coffee, brewed, prepared with tap water", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 171890, + "usda_description": "Beverages, coffee, brewed, prepared with tap water" + }, + { + "canonical_name": "beverages, coffee, brewed, prepared with tap water, decaffeinated", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 171889, + "usda_description": "Beverages, coffee, brewed, prepared with tap water, decaffeinated" + }, + { + "canonical_name": "beverages, cranberry juice cocktail", + "category": "beverage", + "density_g_per_ml": 1.145, + "default_unit_class": "mass", + "usda_fdc_id": 173214, + "usda_description": "Beverages, Cranberry juice cocktail" + }, + { + "canonical_name": "beverages, cranberry-apple juice drink, bottled", + "category": "beverage", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 174140, + "usda_description": "Beverages, cranberry-apple juice drink, bottled" + }, + { + "canonical_name": "beverages, cranberry-apple juice drink, low calorie, with vitamin c added", + "category": "beverage", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168123, + "usda_description": "Beverages, cranberry-apple juice drink, low calorie, with vitamin C added" + }, + { + "canonical_name": "beverages, cranberry-apricot juice drink, bottled", + "category": "beverage", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 174142, + "usda_description": "Beverages, cranberry-apricot juice drink, bottled" + }, + { + "canonical_name": "beverages, cranberry-grape juice drink, bottled", + "category": "beverage", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 171902, + "usda_description": "Beverages, cranberry-grape juice drink, bottled" + }, + { + "canonical_name": "beverages, eggnog-flavor mix, powder, prepared with whole milk", + "category": "dairy", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 171905, + "usda_description": "Beverages, Eggnog-flavor mix, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, energy drink", + "category": "other", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171937, + "usda_description": "Beverages, Energy drink, ROCKSTAR" + }, + { + "canonical_name": "beverages, energy drink with carbonated water and high fructose corn syrup", + "category": "beverage", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174821, + "usda_description": "Beverages, Energy Drink with carbonated water and high fructose corn syrup" + }, + { + "canonical_name": "beverages, energy drink, , citrus flavor", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171943, + "usda_description": "Beverages, Energy drink, VAULT, citrus flavor" + }, + { + "canonical_name": "beverages, energy drink, , sugar free", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171936, + "usda_description": "Beverages, Energy drink, AMP, sugar free" + }, + { + "canonical_name": "beverages, energy drink, citrus", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174108, + "usda_description": "Beverages, Energy drink, Citrus" + }, + { + "canonical_name": "beverages, energy drink, low carb", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173162, + "usda_description": "Beverages, MONSTER energy drink, low carb" + }, + { + "canonical_name": "beverages, energy drink, sugar free", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174822, + "usda_description": "Beverages, Energy Drink, sugar free" + }, + { + "canonical_name": "beverages, energy drink, zero, sugar-free, citrus flavor", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174177, + "usda_description": "Beverages, Energy drink, VAULT Zero, sugar-free, citrus flavor" + }, + { + "canonical_name": "beverages, fruit juice drink, greater than 3% juice, high vitamin c", + "category": "beverage", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 171947, + "usda_description": "Beverages, fruit juice drink, greater than 3% juice, high vitamin C" + }, + { + "canonical_name": "beverages, fruit juice drink, reduced sugar, with vitamin e added", + "category": "baking", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 174176, + "usda_description": "Beverages, fruit juice drink, reduced sugar, with vitamin E added" + }, + { + "canonical_name": "beverages, fruit punch drink, frozen concentrate", + "category": "other", + "density_g_per_ml": 1.177, + "default_unit_class": "mass", + "usda_fdc_id": 174152, + "usda_description": "Beverages, Fruit punch drink, frozen concentrate" + }, + { + "canonical_name": "beverages, fruit punch drink, frozen concentrate, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174153, + "usda_description": "Beverages, Fruit punch drink, frozen concentrate, prepared with water" + }, + { + "canonical_name": "beverages, fruit punch drink, with added nutrients, canned", + "category": "nut-seed", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174151, + "usda_description": "Beverages, Fruit punch drink, with added nutrients, canned" + }, + { + "canonical_name": "beverages, fruit punch drink, without added nutrients, canned", + "category": "nut-seed", + "density_g_per_ml": 1.05, + "default_unit_class": "mass", + "usda_fdc_id": 171914, + "usda_description": "Beverages, fruit punch drink, without added nutrients, canned" + }, + { + "canonical_name": "beverages, fruit punch juice drink, frozen concentrate", + "category": "beverage", + "density_g_per_ml": 1.19, + "default_unit_class": "mass", + "usda_fdc_id": 175094, + "usda_description": "Beverages, fruit punch juice drink, frozen concentrate" + }, + { + "canonical_name": "beverages, fruit punch juice drink, frozen concentrate, prepared with water", + "category": "beverage", + "density_g_per_ml": 0.99, + "default_unit_class": "volume", + "usda_fdc_id": 175095, + "usda_description": "Beverages, fruit punch juice drink, frozen concentrate, prepared with water" + }, + { + "canonical_name": "beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame", + "category": "other", + "density_g_per_ml": 1.623, + "default_unit_class": "mass", + "usda_fdc_id": 167681, + "usda_description": "Beverages, fruit-flavored drink, dry powdered mix, low calorie, with aspartame" + }, + { + "canonical_name": "beverages, gmbh & co. kg,gerolsteiner naturally sparkling mineral water", + "category": "beverage", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174827, + "usda_description": "Beverages, GEROLSTEINER BRUNNEN GmbH & Co. KG,Gerolsteiner naturally sparkling mineral water," + }, + { + "canonical_name": "beverages, grape drink, canned", + "category": "produce-fruit", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 171916, + "usda_description": "Beverages, grape drink, canned" + }, + { + "canonical_name": "beverages, grape juice drink, canned", + "category": "beverage", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 173213, + "usda_description": "Beverages, grape juice drink, canned" + }, + { + "canonical_name": "beverages, kiwi strawberry juice drink", + "category": "produce-fruit", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 174111, + "usda_description": "Beverages, Kiwi Strawberry Juice Drink" + }, + { + "canonical_name": "beverages, lemonade, frozen concentrate, pink, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.045, + "default_unit_class": "volume", + "usda_fdc_id": 173667, + "usda_description": "Beverages, lemonade, frozen concentrate, pink, prepared with water" + }, + { + "canonical_name": "beverages, lemonade, powder", + "category": "produce-fruit", + "density_g_per_ml": 0.921, + "default_unit_class": "volume", + "usda_fdc_id": 174858, + "usda_description": "Beverages, Lemonade, powder" + }, + { + "canonical_name": "beverages, lemonade-flavor drink, powder, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.077, + "default_unit_class": "mass", + "usda_fdc_id": 174861, + "usda_description": "Beverages, lemonade-flavor drink, powder, prepared with water" + }, + { + "canonical_name": "beverages, malted drink mix, chocolate, powder, prepared with whole milk", + "category": "baking", + "density_g_per_ml": 1.12, + "default_unit_class": "mass", + "usda_fdc_id": 174867, + "usda_description": "Beverages, Malted drink mix, chocolate, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, malted drink mix, natural, powder, prepared with whole milk", + "category": "dairy", + "density_g_per_ml": 1.12, + "default_unit_class": "mass", + "usda_fdc_id": 173221, + "usda_description": "Beverages, Malted drink mix, natural, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, mixed vegetable and fruit juice drink, with added nutrients", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 173197, + "usda_description": "Beverages, Mixed vegetable and fruit juice drink, with added nutrients" + }, + { + "canonical_name": "beverages, nutritional shake mix, high protein, powder", + "category": "nut-seed", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 174181, + "usda_description": "Beverages, nutritional shake mix, high protein, powder" + }, + { + "canonical_name": "beverages, orange and apricot juice drink, canned", + "category": "produce-fruit", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 173223, + "usda_description": "Beverages, orange and apricot juice drink, canned" + }, + { + "canonical_name": "beverages, orange drink, breakfast type, with juice and pulp, frozen concentrate", + "category": "produce-fruit", + "density_g_per_ml": 1.227, + "default_unit_class": "mass", + "usda_fdc_id": 175100, + "usda_description": "Beverages, Orange drink, breakfast type, with juice and pulp, frozen concentrate" + }, + { + "canonical_name": "beverages, orange drink, canned, with added vitamin c", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174868, + "usda_description": "Beverages, orange drink, canned, with added vitamin C" + }, + { + "canonical_name": "beverages, orange juice drink", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169044, + "usda_description": "Beverages, Orange juice drink" + }, + { + "canonical_name": "beverages, orange juice, light, no pulp", + "category": "produce-fruit", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173178, + "usda_description": "Beverages, Orange juice, light, No pulp" + }, + { + "canonical_name": "beverages, orange-flavor drink, breakfast type, powder, prepared with water", + "category": "produce-fruit", + "density_g_per_ml": 1.145, + "default_unit_class": "mass", + "usda_fdc_id": 173236, + "usda_description": "Beverages, orange-flavor drink, breakfast type, powder, prepared with water" + }, + { + "canonical_name": "beverages, orange-flavor drink, breakfast type, with pulp, frozen concentrate.", + "category": "produce-fruit", + "density_g_per_ml": 1.194, + "default_unit_class": "mass", + "usda_fdc_id": 173651, + "usda_description": "Beverages, Orange-flavor drink, breakfast type, with pulp, frozen concentrate." + }, + { + "canonical_name": "beverages, pineapple and grapefruit juice drink, canned", + "category": "produce-fruit", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 173224, + "usda_description": "Beverages, pineapple and grapefruit juice drink, canned" + }, + { + "canonical_name": "beverages, pineapple and orange juice drink, canned", + "category": "produce-fruit", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 173225, + "usda_description": "Beverages, pineapple and orange juice drink, canned" + }, + { + "canonical_name": "beverages, powerade zero ion4, calorie-free, assorted flavors", + "category": "other", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 171923, + "usda_description": "Beverages, Powerade Zero Ion4, calorie-free, assorted flavors" + }, + { + "canonical_name": "beverages, propel zero, fruit-flavored, non-carbonated", + "category": "other", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 175109, + "usda_description": "Beverages, Propel Zero, fruit-flavored, non-carbonated" + }, + { + "canonical_name": "beverages, protein powder whey based", + "category": "other", + "density_g_per_ml": 0.41, + "default_unit_class": "volume", + "usda_fdc_id": 173180, + "usda_description": "Beverages, Protein powder whey based" + }, + { + "canonical_name": "beverages, rice milk, unsweetened", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171942, + "usda_description": "Beverages, rice milk, unsweetened" + }, + { + "canonical_name": "beverages, rich chocolate, powder", + "category": "baking", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 173182, + "usda_description": "Beverages, rich chocolate, powder" + }, + { + "canonical_name": "beverages, strawberry-flavor beverage mix, powder, prepared with whole milk", + "category": "produce-fruit", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 174870, + "usda_description": "Beverages, Strawberry-flavor beverage mix, powder, prepared with whole milk" + }, + { + "canonical_name": "beverages, tea, black, brewed, prepared with distilled water", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 174155, + "usda_description": "Beverages, tea, black, brewed, prepared with distilled water" + }, + { + "canonical_name": "beverages, tea, black, brewed, prepared with tap water", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 173227, + "usda_description": "Beverages, tea, black, brewed, prepared with tap water" + }, + { + "canonical_name": "beverages, tea, black, brewed, prepared with tap water, decaffeinated", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 174871, + "usda_description": "Beverages, tea, black, brewed, prepared with tap water, decaffeinated" + }, + { + "canonical_name": "beverages, tea, green, brewed, decaffeinated", + "category": "beverage", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 171910, + "usda_description": "Beverages, tea, green, brewed, decaffeinated" + }, + { + "canonical_name": "beverages, tea, green, brewed, regular", + "category": "beverage", + "density_g_per_ml": 1.018, + "default_unit_class": "volume", + "usda_fdc_id": 171917, + "usda_description": "Beverages, tea, green, brewed, regular" + }, + { + "canonical_name": "beverages, tea, herb, brewed, chamomile", + "category": "meat", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 174156, + "usda_description": "Beverages, tea, herb, brewed, chamomile" + }, + { + "canonical_name": "beverages, tea, herb, other than chamomile, brewed", + "category": "meat", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 173232, + "usda_description": "Beverages, tea, herb, other than chamomile, brewed" + }, + { + "canonical_name": "beverages, tea, hibiscus, brewed", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 171946, + "usda_description": "Beverages, tea, hibiscus, brewed" + }, + { + "canonical_name": "beverages, the - company, , water, bottled, non-carbonated", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 175104, + "usda_description": "Beverages, The COCA-COLA company, DASANI, water, bottled, non-carbonated" + }, + { + "canonical_name": "beverages, the - company, hi-c flashin' fruit punch", + "category": "other", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 173179, + "usda_description": "Beverages, The COCA-COLA company, Hi-C Flashin' Fruit Punch" + }, + { + "canonical_name": "beverages, the - company, minute maid, lemonade", + "category": "produce-fruit", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171884, + "usda_description": "Beverages, The COCA-COLA company, Minute Maid, Lemonade" + }, + { + "canonical_name": "beverages, v8 juice drinks, diet berry blend", + "category": "beverage", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 174162, + "usda_description": "Beverages, V8 SPLASH Juice Drinks, Diet Berry Blend" + }, + { + "canonical_name": "beverages, water, bottled", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 173233, + "usda_description": "Beverages, water, bottled, PERRIER" + }, + { + "canonical_name": "beverages, water, bottled, non-carbonated", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 171922, + "usda_description": "Beverages, water, bottled, non-carbonated, EVIAN" + }, + { + "canonical_name": "beverages, water, tap, drinking", + "category": "beverage", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 173647, + "usda_description": "Beverages, water, tap, drinking" + }, + { + "canonical_name": "beverages, water, tap, municipal", + "category": "beverage", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 175103, + "usda_description": "Beverages, water, tap, municipal" + }, + { + "canonical_name": "beverages, water, tap, well", + "category": "beverage", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 175096, + "usda_description": "Beverages, water, tap, well" + }, + { + "canonical_name": "beverages, whiskey sour mix, bottled", + "category": "other", + "density_g_per_ml": 1.096, + "default_unit_class": "mass", + "usda_fdc_id": 174811, + "usda_description": "Beverages, Whiskey sour mix, bottled" + }, + { + "canonical_name": "beverages, wine, non-alcoholic", + "category": "beverage", + "density_g_per_ml": 0.981, + "default_unit_class": "volume", + "usda_fdc_id": 174157, + "usda_description": "Beverages, Wine, non-alcoholic" + }, + { + "canonical_name": "beverages, yellow green colored citrus soft drink with caffeine", + "category": "other", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 174828, + "usda_description": "Beverages, yellow green colored citrus soft drink with caffeine" + }, + { + "canonical_name": "blackberries", + "category": "other", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 173946, + "usda_description": "Blackberries, raw" + }, + { + "canonical_name": "blackberries, canned, heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171709, + "usda_description": "Blackberries, canned, heavy syrup, solids and liquids" + }, + { + "canonical_name": "blackberries, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.638, + "default_unit_class": "volume", + "usda_fdc_id": 171710, + "usda_description": "Blackberries, frozen, unsweetened" + }, + { + "canonical_name": "blackberries, wild, raw", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168982, + "usda_description": "Blackberries, wild, raw (Alaska Native)" + }, + { + "canonical_name": "blanched stinging nettles", + "category": "other", + "density_g_per_ml": 0.376, + "default_unit_class": "volume", + "usda_fdc_id": 169819, + "usda_description": "Stinging Nettles, blanched (Northern Plains Indians)" + }, + { + "canonical_name": "blue cheese", + "category": "dairy", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 172175, + "usda_description": "Cheese, blue" + }, + { + "canonical_name": "blueberries", + "category": "other", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 171711, + "usda_description": "Blueberries, raw" + }, + { + "canonical_name": "blueberries sweetened", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 168158, + "usda_description": "Blueberries, dried, sweetened" + }, + { + "canonical_name": "blueberries, canned, heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 173948, + "usda_description": "Blueberries, canned, heavy syrup, solids and liquids" + }, + { + "canonical_name": "blueberries, canned, light syrup, drained", + "category": "condiment", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 168179, + "usda_description": "Blueberries, canned, light syrup, drained" + }, + { + "canonical_name": "blueberries, frozen, sweetened", + "category": "other", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 173951, + "usda_description": "Blueberries, frozen, sweetened" + }, + { + "canonical_name": "blueberries, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 173950, + "usda_description": "Blueberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "blueberries, wild, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 1.348, + "default_unit_class": "mass", + "usda_fdc_id": 168180, + "usda_description": "Blueberries, wild, canned, heavy syrup, drained" + }, + { + "canonical_name": "blueberries, wild, frozen", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173949, + "usda_description": "Blueberries, wild, frozen (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "bologna, beef and pork, low fat", + "category": "meat", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 167685, + "usda_description": "Bologna, beef and pork, low fat" + }, + { + "canonical_name": "borage", + "category": "other", + "density_g_per_ml": 0.376, + "default_unit_class": "volume", + "usda_fdc_id": 170481, + "usda_description": "Borage, raw" + }, + { + "canonical_name": "bottled cranberry juice cocktail", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171903, + "usda_description": "Cranberry juice cocktail, bottled" + }, + { + "canonical_name": "bottled lemon juice from concentrate", + "category": "beverage", + "density_g_per_ml": 1.024, + "default_unit_class": "volume", + "usda_fdc_id": 167801, + "usda_description": "Lemon juice from concentrate, bottled, CONCORD" + }, + { + "canonical_name": "bottled pomegranate juice", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 167787, + "usda_description": "Pomegranate juice, bottled" + }, + { + "canonical_name": "box mix with cheese sauce macaroni and cheese", + "category": "dairy", + "density_g_per_ml": 0.799, + "default_unit_class": "volume", + "usda_fdc_id": 169770, + "usda_description": "Macaroni and cheese, box mix with cheese sauce, prepared" + }, + { + "canonical_name": "boysenberries, canned, heavy syrup", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171712, + "usda_description": "Boysenberries, canned, heavy syrup" + }, + { + "canonical_name": "boysenberries, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 171713, + "usda_description": "Boysenberries, frozen, unsweetened" + }, + { + "canonical_name": "brazilnuts unblanched nuts", + "category": "nut-seed", + "density_g_per_ml": 0.562, + "default_unit_class": "volume", + "usda_fdc_id": 170569, + "usda_description": "Nuts, brazilnuts, dried, unblanched" + }, + { + "canonical_name": "bread, crumbs, dry, grated, plain", + "category": "grain", + "density_g_per_ml": 0.456, + "default_unit_class": "volume", + "usda_fdc_id": 174928, + "usda_description": "Bread, crumbs, dry, grated, plain" + }, + { + "canonical_name": "bread, crumbs, dry, grated, seasoned", + "category": "grain", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 172806, + "usda_description": "Bread, crumbs, dry, grated, seasoned" + }, + { + "canonical_name": "bread, sticks, plain", + "category": "grain", + "density_g_per_ml": 0.194, + "default_unit_class": "volume", + "usda_fdc_id": 174929, + "usda_description": "Bread, sticks, plain" + }, + { + "canonical_name": "bread, white, commercially prepared", + "category": "grain", + "density_g_per_ml": 0.169, + "default_unit_class": "volume", + "usda_fdc_id": 174924, + "usda_description": "Bread, white, commercially prepared (includes soft bread crumbs)" + }, + { + "canonical_name": "bread, white, commercially prepared, low sodium, no salt", + "category": "grain", + "density_g_per_ml": 0.169, + "default_unit_class": "volume", + "usda_fdc_id": 172818, + "usda_description": "Bread, white, commercially prepared, low sodium, no salt" + }, + { + "canonical_name": "bread, white, commercially prepared, toasted", + "category": "grain", + "density_g_per_ml": 0.184, + "default_unit_class": "volume", + "usda_fdc_id": 174925, + "usda_description": "Bread, white, commercially prepared, toasted" + }, + { + "canonical_name": "breadfruit", + "category": "grain", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 171714, + "usda_description": "Breadfruit, raw" + }, + { + "canonical_name": "breadnut tree seeds seeds", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170553, + "usda_description": "Seeds, breadnut tree seeds, dried" + }, + { + "canonical_name": "brick cheese", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 172176, + "usda_description": "Cheese, brick" + }, + { + "canonical_name": "brie cheese", + "category": "dairy", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 172177, + "usda_description": "Cheese, brie" + }, + { + "canonical_name": "broadbeans , mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 173754, + "usda_description": "Broadbeans (fava beans), mature seeds, canned" + }, + { + "canonical_name": "broccoli", + "category": "produce-vegetable", + "density_g_per_ml": 0.378, + "default_unit_class": "volume", + "usda_fdc_id": 170379, + "usda_description": "Broccoli, raw" + }, + { + "canonical_name": "broccoli raab", + "category": "produce-vegetable", + "density_g_per_ml": 0.169, + "default_unit_class": "volume", + "usda_fdc_id": 170381, + "usda_description": "Broccoli raab, raw" + }, + { + "canonical_name": "broccoli, chinese, cooked", + "category": "produce-vegetable", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 169392, + "usda_description": "Broccoli, chinese, cooked" + }, + { + "canonical_name": "broccoli, frozen, chopped drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 168511, + "usda_description": "Broccoli, frozen, chopped, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "broccoli, frozen, chopped drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 169969, + "usda_description": "Broccoli, frozen, chopped, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "broccoli, frozen, chopped, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169968, + "usda_description": "Broccoli, frozen, chopped, unprepared" + }, + { + "canonical_name": "broccoli, frozen, spears drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 168512, + "usda_description": "Broccoli, frozen, spears, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "broccoli, frozen, spears drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 170380, + "usda_description": "Broccoli, frozen, spears, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "brown rice flour", + "category": "baking", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 168898, + "usda_description": "Rice flour, brown" + }, + { + "canonical_name": "brown sugars", + "category": "baking", + "density_g_per_ml": 0.747, + "default_unit_class": "volume", + "usda_fdc_id": 168833, + "usda_description": "Sugars, brown" + }, + { + "canonical_name": "brussels sprouts", + "category": "other", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 170383, + "usda_description": "Brussels sprouts, raw" + }, + { + "canonical_name": "brussels sprouts, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169332, + "usda_description": "Brussels sprouts, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "brussels sprouts, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169973, + "usda_description": "Brussels sprouts, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "buckwheat", + "category": "other", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 170286, + "usda_description": "Buckwheat" + }, + { + "canonical_name": "buckwheat groats, roasted, cooked", + "category": "grain", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 170686, + "usda_description": "Buckwheat groats, roasted, cooked" + }, + { + "canonical_name": "buckwheat groats, roasted, dry", + "category": "grain", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 170685, + "usda_description": "Buckwheat groats, roasted, dry" + }, + { + "canonical_name": "bulb fennel", + "category": "other", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 169385, + "usda_description": "Fennel, bulb, raw" + }, + { + "canonical_name": "burdock root", + "category": "other", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169974, + "usda_description": "Burdock root, raw" + }, + { + "canonical_name": "butter replacement, without fat, powder", + "category": "oil-fat", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 169894, + "usda_description": "Butter replacement, without fat, powder" + }, + { + "canonical_name": "butter, light, stick, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173581, + "usda_description": "Butter, light, stick, with salt" + }, + { + "canonical_name": "butter, light, stick, without salt", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 172344, + "usda_description": "Butter, light, stick, without salt" + }, + { + "canonical_name": "butter, whipped, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.637, + "default_unit_class": "volume", + "usda_fdc_id": 173411, + "usda_description": "Butter, whipped, with salt" + }, + { + "canonical_name": "butterbur", + "category": "oil-fat", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 170385, + "usda_description": "Butterbur, (fuki), raw" + }, + { + "canonical_name": "butterhead lettuce", + "category": "produce-vegetable", + "density_g_per_ml": 0.232, + "default_unit_class": "volume", + "usda_fdc_id": 168429, + "usda_description": "Lettuce, butterhead (includes boston and bibb types), raw" + }, + { + "canonical_name": "buttermilk milk", + "category": "oil-fat", + "density_g_per_ml": 0.485, + "default_unit_class": "volume", + "usda_fdc_id": 171274, + "usda_description": "Milk, buttermilk, dried" + }, + { + "canonical_name": "butternuts nuts", + "category": "oil-fat", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170570, + "usda_description": "Nuts, butternuts, dried" + }, + { + "canonical_name": "butterscotch or caramel toppings", + "category": "oil-fat", + "density_g_per_ml": 1.386, + "default_unit_class": "mass", + "usda_fdc_id": 168841, + "usda_description": "Toppings, butterscotch or caramel" + }, + { + "canonical_name": "cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.336, + "default_unit_class": "volume", + "usda_fdc_id": 169975, + "usda_description": "Cabbage, raw" + }, + { + "canonical_name": "cabbage, chinese drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.611, + "default_unit_class": "volume", + "usda_fdc_id": 168517, + "usda_description": "Cabbage, chinese (pak-choi), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cabbage, chinese drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.611, + "default_unit_class": "volume", + "usda_fdc_id": 169980, + "usda_description": "Cabbage, chinese (pe-tsai), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cabbage, common , freshly harvest", + "category": "produce-vegetable", + "density_g_per_ml": 0.296, + "default_unit_class": "volume", + "usda_fdc_id": 169335, + "usda_description": "Cabbage, common (danish, domestic, and pointed types), freshly harvest, raw" + }, + { + "canonical_name": "cabbage, common , stored", + "category": "produce-vegetable", + "density_g_per_ml": 0.296, + "default_unit_class": "volume", + "usda_fdc_id": 169336, + "usda_description": "Cabbage, common (danish, domestic, and pointed types), stored, raw" + }, + { + "canonical_name": "cabbage, common drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 168514, + "usda_description": "Cabbage, common, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cabbage, mustard, salted", + "category": "condiment", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169891, + "usda_description": "Cabbage, mustard, salted" + }, + { + "canonical_name": "cabbage, napa, cooked", + "category": "produce-vegetable", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 168572, + "usda_description": "Cabbage, napa, cooked" + }, + { + "canonical_name": "cabbage, red drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 168515, + "usda_description": "Cabbage, red, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cabbage, red drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169978, + "usda_description": "Cabbage, red, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cabbage, savoy drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168516, + "usda_description": "Cabbage, savoy, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cabbage, savoy drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170389, + "usda_description": "Cabbage, savoy, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "california and arizona grapefruit pink and red", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 174674, + "usda_description": "Grapefruit, raw, pink and red, California and Arizona" + }, + { + "canonical_name": "california grapefruit white", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 174677, + "usda_description": "Grapefruit, raw, white, California" + }, + { + "canonical_name": "camembert cheese", + "category": "dairy", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 172178, + "usda_description": "Cheese, camembert" + }, + { + "canonical_name": "canned blackberry juice", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 173947, + "usda_description": "Blackberry juice, canned" + }, + { + "canonical_name": "canned butterbur", + "category": "oil-fat", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 170387, + "usda_description": "Butterbur, canned" + }, + { + "canonical_name": "canned capers", + "category": "other", + "density_g_per_ml": 0.582, + "default_unit_class": "volume", + "usda_fdc_id": 172238, + "usda_description": "Capers, canned" + }, + { + "canonical_name": "canned carrot juice", + "category": "produce-vegetable", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 170491, + "usda_description": "Carrot juice, canned" + }, + { + "canonical_name": "canned chili with beans", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 175207, + "usda_description": "Chili with beans, canned" + }, + { + "canonical_name": "canned cranberry-orange relish", + "category": "produce-fruit", + "density_g_per_ml": 1.162, + "default_unit_class": "mass", + "usda_fdc_id": 173962, + "usda_description": "Cranberry-orange relish, canned" + }, + { + "canonical_name": "canned entree beef stew", + "category": "meat", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 173330, + "usda_description": "Beef stew, canned entree" + }, + { + "canonical_name": "canned entree chili con carne with beans", + "category": "legume", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 172097, + "usda_description": "Chili con carne with beans, canned entree" + }, + { + "canonical_name": "canned guanabana nectar", + "category": "other", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 168196, + "usda_description": "Guanabana nectar, canned" + }, + { + "canonical_name": "canned hearts of palm", + "category": "other", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 168569, + "usda_description": "Hearts of palm, canned" + }, + { + "canonical_name": "canned mango nectar", + "category": "produce-fruit", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 167785, + "usda_description": "Mango nectar, canned" + }, + { + "canonical_name": "canned or bottled lemon juice from concentrate", + "category": "beverage", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 167748, + "usda_description": "Lemon juice from concentrate, canned or bottled" + }, + { + "canonical_name": "canned papaya nectar", + "category": "other", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 169107, + "usda_description": "Papaya nectar, canned" + }, + { + "canonical_name": "canned pimento", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168559, + "usda_description": "Pimento, canned" + }, + { + "canonical_name": "canned prune juice", + "category": "beverage", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 167753, + "usda_description": "Prune juice, canned" + }, + { + "canonical_name": "canned pumpkin pie mix", + "category": "produce-vegetable", + "density_g_per_ml": 1.141, + "default_unit_class": "mass", + "usda_fdc_id": 169273, + "usda_description": "Pumpkin pie mix, canned" + }, + { + "canonical_name": "canned tamarind nectar", + "category": "other", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 167786, + "usda_description": "Tamarind nectar, canned" + }, + { + "canonical_name": "canned vegetable juice cocktail", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 170063, + "usda_description": "Vegetable juice cocktail, canned" + }, + { + "canonical_name": "canola oil", + "category": "oil-fat", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 172336, + "usda_description": "Oil, canola" + }, + { + "canonical_name": "cantaloupe melons", + "category": "other", + "density_g_per_ml": 0.695, + "default_unit_class": "volume", + "usda_fdc_id": 169092, + "usda_description": "Melons, cantaloupe, raw" + }, + { + "canonical_name": "carambola", + "category": "other", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 171715, + "usda_description": "Carambola, (starfruit), raw" + }, + { + "canonical_name": "caraway seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 170918, + "usda_description": "Spices, caraway seed" + }, + { + "canonical_name": "cardamom spices", + "category": "other", + "density_g_per_ml": 0.399, + "default_unit_class": "volume", + "usda_fdc_id": 170919, + "usda_description": "Spices, cardamom" + }, + { + "canonical_name": "cardoon", + "category": "other", + "density_g_per_ml": 0.752, + "default_unit_class": "volume", + "usda_fdc_id": 169981, + "usda_description": "Cardoon, raw" + }, + { + "canonical_name": "caribou, hind quarter, meat, cooked", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 169822, + "usda_description": "Caribou, hind quarter, meat, cooked (Alaska Native)" + }, + { + "canonical_name": "carissa", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 173952, + "usda_description": "Carissa, (natal-plum), raw" + }, + { + "canonical_name": "carob flour", + "category": "baking", + "density_g_per_ml": 0.421, + "default_unit_class": "volume", + "usda_fdc_id": 173755, + "usda_description": "Carob flour" + }, + { + "canonical_name": "carrots", + "category": "produce-vegetable", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170393, + "usda_description": "Carrots, raw" + }, + { + "canonical_name": "carrots, canned, no salt added, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.79, + "default_unit_class": "volume", + "usda_fdc_id": 168518, + "usda_description": "Carrots, canned, no salt added, drained solids" + }, + { + "canonical_name": "carrots, canned, no salt added, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 169340, + "usda_description": "Carrots, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "carrots, canned, regular pack, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.79, + "default_unit_class": "volume", + "usda_fdc_id": 170396, + "usda_description": "Carrots, canned, regular pack, drained solids" + }, + { + "canonical_name": "carrots, canned, regular pack, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 170395, + "usda_description": "Carrots, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "carrots, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 168519, + "usda_description": "Carrots, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "carrots, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 169984, + "usda_description": "Carrots, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "carrots, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169983, + "usda_description": "Carrots, frozen, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "casaba melons", + "category": "other", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169093, + "usda_description": "Melons, casaba, raw" + }, + { + "canonical_name": "cassava", + "category": "other", + "density_g_per_ml": 0.871, + "default_unit_class": "volume", + "usda_fdc_id": 169985, + "usda_description": "Cassava, raw" + }, + { + "canonical_name": "catsup", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 168556, + "usda_description": "Catsup" + }, + { + "canonical_name": "cauliflower", + "category": "produce-vegetable", + "density_g_per_ml": 0.452, + "default_unit_class": "volume", + "usda_fdc_id": 169986, + "usda_description": "Cauliflower, raw" + }, + { + "canonical_name": "cauliflower, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168521, + "usda_description": "Cauliflower, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cauliflower, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170399, + "usda_description": "Cauliflower, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cauliflower, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170398, + "usda_description": "Cauliflower, frozen, unprepared" + }, + { + "canonical_name": "cauliflower, green, cooked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 169391, + "usda_description": "Cauliflower, green, cooked, with salt" + }, + { + "canonical_name": "celeriac", + "category": "other", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170400, + "usda_description": "Celeriac, raw" + }, + { + "canonical_name": "celery", + "category": "produce-vegetable", + "density_g_per_ml": 0.467, + "default_unit_class": "volume", + "usda_fdc_id": 169988, + "usda_description": "Celery, raw" + }, + { + "canonical_name": "celery seed spices", + "category": "produce-vegetable", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 170920, + "usda_description": "Spices, celery seed" + }, + { + "canonical_name": "cereals, , 1 minute cook time, cooked with water, microwaved, without salt", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 173012, + "usda_description": "Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, microwaved, without salt" + }, + { + "canonical_name": "cereals, , 1 minute cook time, cooked with water, stove-top, without salt", + "category": "beverage", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 173011, + "usda_description": "Cereals, CREAM OF WHEAT, 1 minute cook time, cooked with water, stove-top, without salt" + }, + { + "canonical_name": "cereals, , 1 minute cook time, dry", + "category": "nut-seed", + "density_g_per_ml": 0.83, + "default_unit_class": "volume", + "usda_fdc_id": 173010, + "usda_description": "Cereals, CREAM OF WHEAT, 1 minute cook time, dry" + }, + { + "canonical_name": "cereals, , 2 1/2 minute cook time, cooked with water, microwaved, without salt", + "category": "beverage", + "density_g_per_ml": 0.976, + "default_unit_class": "volume", + "usda_fdc_id": 173009, + "usda_description": "Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, microwaved, without salt" + }, + { + "canonical_name": "cereals, , 2 1/2 minute cook time, cooked with water, stove-top, without salt", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173008, + "usda_description": "Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, cooked with water, stove-top, without salt" + }, + { + "canonical_name": "cereals, , 2 1/2 minute cook time, dry", + "category": "nut-seed", + "density_g_per_ml": 0.804, + "default_unit_class": "volume", + "usda_fdc_id": 174655, + "usda_description": "Cereals, CREAM OF WHEAT, 2 1/2 minute cook time, dry" + }, + { + "canonical_name": "cereals, , cooked with water, with salt", + "category": "beverage", + "density_g_per_ml": 1.028, + "default_unit_class": "volume", + "usda_fdc_id": 171676, + "usda_description": "Cereals, WHEATENA, cooked with water, with salt" + }, + { + "canonical_name": "cereals, , regular , cooked with water, with salt", + "category": "beverage", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 173915, + "usda_description": "Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, with salt" + }, + { + "canonical_name": "cereals, , regular , cooked with water, without salt", + "category": "beverage", + "density_g_per_ml": 1.071, + "default_unit_class": "mass", + "usda_fdc_id": 171657, + "usda_description": "Cereals, CREAM OF WHEAT, regular (10 minute), cooked with water, without salt" + }, + { + "canonical_name": "cereals, , regular, 10 minute cooking, dry", + "category": "nut-seed", + "density_g_per_ml": 0.731, + "default_unit_class": "volume", + "usda_fdc_id": 173901, + "usda_description": "Cereals, CREAM OF WHEAT, regular, 10 minute cooking, dry" + }, + { + "canonical_name": "cereals, -o-, chocolate, dry", + "category": "baking", + "density_g_per_ml": 0.789, + "default_unit_class": "volume", + "usda_fdc_id": 171674, + "usda_description": "Cereals, MALT-O-MEAL, chocolate, dry" + }, + { + "canonical_name": "cereals, -o-, farina hot wheat cereal, dry", + "category": "other", + "density_g_per_ml": 0.789, + "default_unit_class": "volume", + "usda_fdc_id": 172998, + "usda_description": "Cereals, MALT-O-MEAL, Farina Hot Wheat Cereal, dry" + }, + { + "canonical_name": "cereals, -o-, maple & brown sugar hot wheat cereal, dry", + "category": "baking", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 172999, + "usda_description": "Cereals, MALT-O-MEAL, Maple & Brown Sugar Hot Wheat Cereal, dry" + }, + { + "canonical_name": "cereals, -o-, original, plain, dry", + "category": "other", + "density_g_per_ml": 0.789, + "default_unit_class": "volume", + "usda_fdc_id": 173903, + "usda_description": "Cereals, MALT-O-MEAL, original, plain, dry" + }, + { + "canonical_name": "cereals, corn grits, white, regular and quick, enriched, dry", + "category": "other", + "density_g_per_ml": 0.658, + "default_unit_class": "volume", + "usda_fdc_id": 171654, + "usda_description": "Cereals, corn grits, white, regular and quick, enriched, dry" + }, + { + "canonical_name": "cereals, corn grits, yellow, regular and quick, unenriched, dry", + "category": "other", + "density_g_per_ml": 0.658, + "default_unit_class": "volume", + "usda_fdc_id": 171670, + "usda_description": "Cereals, corn grits, yellow, regular and quick, unenriched, dry" + }, + { + "canonical_name": "cereals, farina, enriched, assorted brands including , quick , dry", + "category": "other", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 171658, + "usda_description": "Cereals, farina, enriched, assorted brands including CREAM OF WHEAT, quick (1-3 minutes), dry" + }, + { + "canonical_name": "cereals, farina, enriched, cooked with water, with salt", + "category": "beverage", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 173917, + "usda_description": "Cereals, farina, enriched, cooked with water, with salt" + }, + { + "canonical_name": "cereals, farina, unenriched, dry", + "category": "other", + "density_g_per_ml": 0.741, + "default_unit_class": "volume", + "usda_fdc_id": 173916, + "usda_description": "Cereals, farina, unenriched, dry" + }, + { + "canonical_name": "cereals, oats, regular and quick, unenriched, cooked with water , without salt", + "category": "beverage", + "density_g_per_ml": 0.988, + "default_unit_class": "volume", + "usda_fdc_id": 173905, + "usda_description": "Cereals, oats, regular and quick, unenriched, cooked with water (includes boiling and microwaving), without salt" + }, + { + "canonical_name": "cereals, whole wheat hot natural cereal, cooked with water, with salt", + "category": "beverage", + "density_g_per_ml": 1.024, + "default_unit_class": "volume", + "usda_fdc_id": 171677, + "usda_description": "Cereals, whole wheat hot natural cereal, cooked with water, with salt" + }, + { + "canonical_name": "cereals, whole wheat hot natural cereal, cooked with water, without salt", + "category": "beverage", + "density_g_per_ml": 1.024, + "default_unit_class": "volume", + "usda_fdc_id": 171668, + "usda_description": "Cereals, whole wheat hot natural cereal, cooked with water, without salt" + }, + { + "canonical_name": "cereals, whole wheat hot natural cereal, dry", + "category": "other", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 171667, + "usda_description": "Cereals, whole wheat hot natural cereal, dry" + }, + { + "canonical_name": "chanterelle mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.228, + "default_unit_class": "volume", + "usda_fdc_id": 168422, + "usda_description": "Mushrooms, Chanterelle, raw" + }, + { + "canonical_name": "chard, swiss drained, with salt", + "category": "spice", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 169343, + "usda_description": "Chard, swiss, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "chard, swiss drained, without salt", + "category": "spice", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 170401, + "usda_description": "Chard, swiss, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "chayote, fruit drained, with salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169344, + "usda_description": "Chayote, fruit, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "chayote, fruit drained, without salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170403, + "usda_description": "Chayote, fruit, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cheddar cheese", + "category": "dairy", + "density_g_per_ml": 0.689, + "default_unit_class": "volume", + "usda_fdc_id": 173414, + "usda_description": "Cheese, cheddar (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "cheese food, pasteurized process, american, without added vitamin d", + "category": "dairy", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 171291, + "usda_description": "Cheese food, pasteurized process, American, without added vitamin D" + }, + { + "canonical_name": "cheese queso fresco", + "category": "dairy", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 172223, + "usda_description": "Cheese, fresh, queso fresco" + }, + { + "canonical_name": "cheese spread, pasteurized process, american", + "category": "dairy", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 171254, + "usda_description": "Cheese spread, pasteurized process, American" + }, + { + "canonical_name": "cheese, american cheddar, imitation", + "category": "dairy", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169901, + "usda_description": "Cheese, american cheddar, imitation" + }, + { + "canonical_name": "cheese, cottage, creamed, large or small curd", + "category": "dairy", + "density_g_per_ml": 0.919, + "default_unit_class": "volume", + "usda_fdc_id": 172179, + "usda_description": "Cheese, cottage, creamed, large or small curd" + }, + { + "canonical_name": "cheese, cottage, creamed, with fruit", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 172180, + "usda_description": "Cheese, cottage, creamed, with fruit" + }, + { + "canonical_name": "cheese, cottage, lowfat, 1% milkfat", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 173417, + "usda_description": "Cheese, cottage, lowfat, 1% milkfat" + }, + { + "canonical_name": "cheese, cottage, lowfat, 1% milkfat, lactose reduced", + "category": "dairy", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 167703, + "usda_description": "Cheese, cottage, lowfat, 1% milkfat, lactose reduced" + }, + { + "canonical_name": "cheese, cottage, lowfat, 1% milkfat, no sodium added", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 168114, + "usda_description": "Cheese, cottage, lowfat, 1% milkfat, no sodium added" + }, + { + "canonical_name": "cheese, cottage, lowfat, 1% milkfat, with vegetables", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 167716, + "usda_description": "Cheese, cottage, lowfat, 1% milkfat, with vegetables" + }, + { + "canonical_name": "cheese, cottage, lowfat, 2% milkfat", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 172182, + "usda_description": "Cheese, cottage, lowfat, 2% milkfat" + }, + { + "canonical_name": "cheese, cottage, nonfat, uncreamed, dry, large or small curd", + "category": "dairy", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 172181, + "usda_description": "Cheese, cottage, nonfat, uncreamed, dry, large or small curd" + }, + { + "canonical_name": "cheese, cottage, with vegetables", + "category": "dairy", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 169078, + "usda_description": "Cheese, cottage, with vegetables" + }, + { + "canonical_name": "cheese, cream, fat free", + "category": "dairy", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 172207, + "usda_description": "Cheese, cream, fat free" + }, + { + "canonical_name": "cheese, cream, low fat", + "category": "dairy", + "density_g_per_ml": 0.902, + "default_unit_class": "volume", + "usda_fdc_id": 169079, + "usda_description": "Cheese, cream, low fat" + }, + { + "canonical_name": "cheese, dry white, queso seco", + "category": "dairy", + "density_g_per_ml": 0.41, + "default_unit_class": "volume", + "usda_fdc_id": 172222, + "usda_description": "Cheese, dry white, queso seco" + }, + { + "canonical_name": "cheese, low fat, cheddar or colby", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 173439, + "usda_description": "Cheese, low fat, cheddar or colby" + }, + { + "canonical_name": "cheese, low-sodium, cheddar or colby", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 173440, + "usda_description": "Cheese, low-sodium, cheddar or colby" + }, + { + "canonical_name": "cheese, mexican, blend, reduced fat", + "category": "dairy", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 172216, + "usda_description": "Cheese, Mexican, blend, reduced fat" + }, + { + "canonical_name": "cheese, mexican, queso anejo", + "category": "dairy", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 172201, + "usda_description": "Cheese, mexican, queso anejo" + }, + { + "canonical_name": "cheese, mexican, queso asadero", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 173437, + "usda_description": "Cheese, mexican, queso asadero" + }, + { + "canonical_name": "cheese, mexican, queso chihuahua", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 173438, + "usda_description": "Cheese, mexican, queso chihuahua" + }, + { + "canonical_name": "cheese, mexican, queso cotija", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170898, + "usda_description": "Cheese, mexican, queso cotija" + }, + { + "canonical_name": "cheese, monterey, low fat", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 168098, + "usda_description": "Cheese, monterey, low fat" + }, + { + "canonical_name": "cheese, mozzarella, low moisture, part-skim", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 171244, + "usda_description": "Cheese, mozzarella, low moisture, part-skim" + }, + { + "canonical_name": "cheese, mozzarella, low moisture, part-skim, shredded", + "category": "dairy", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 170900, + "usda_description": "Cheese, mozzarella, low moisture, part-skim, shredded" + }, + { + "canonical_name": "cheese, mozzarella, low sodium", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 167735, + "usda_description": "Cheese, mozzarella, low sodium" + }, + { + "canonical_name": "cheese, mozzarella, nonfat", + "category": "dairy", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 169051, + "usda_description": "Cheese, mozzarella, nonfat" + }, + { + "canonical_name": "cheese, mozzarella, whole milk", + "category": "dairy", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 170845, + "usda_description": "Cheese, mozzarella, whole milk" + }, + { + "canonical_name": "cheese, muenster, low fat", + "category": "dairy", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 169050, + "usda_description": "Cheese, muenster, low fat" + }, + { + "canonical_name": "cheese, parmesan, dry grated, reduced fat", + "category": "dairy", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 173452, + "usda_description": "Cheese, parmesan, dry grated, reduced fat" + }, + { + "canonical_name": "cheese, parmesan, grated", + "category": "dairy", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 171247, + "usda_description": "Cheese, parmesan, grated" + }, + { + "canonical_name": "cheese, parmesan, low sodium", + "category": "dairy", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 167705, + "usda_description": "Cheese, parmesan, low sodium" + }, + { + "canonical_name": "cheese, parmesan, shredded", + "category": "dairy", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 173431, + "usda_description": "Cheese, parmesan, shredded" + }, + { + "canonical_name": "cheese, pasteurized process, american, low fat", + "category": "dairy", + "density_g_per_ml": 0.535, + "default_unit_class": "volume", + "usda_fdc_id": 169080, + "usda_description": "Cheese, pasteurized process, American, low fat" + }, + { + "canonical_name": "cheese, pasteurized process, american, without added vitamin d", + "category": "dairy", + "density_g_per_ml": 0.7, + "default_unit_class": "volume", + "usda_fdc_id": 171290, + "usda_description": "Cheese, pasteurized process, American, without added vitamin D" + }, + { + "canonical_name": "cheese, pasteurized process, cheddar or american, low sodium", + "category": "dairy", + "density_g_per_ml": 0.535, + "default_unit_class": "volume", + "usda_fdc_id": 168121, + "usda_description": "Cheese, pasteurized process, cheddar or American, low sodium" + }, + { + "canonical_name": "cheese, pasteurized process, pimento", + "category": "dairy", + "density_g_per_ml": 0.7, + "default_unit_class": "volume", + "usda_fdc_id": 170854, + "usda_description": "Cheese, pasteurized process, pimento" + }, + { + "canonical_name": "cheese, pasteurized process, swiss", + "category": "dairy", + "density_g_per_ml": 0.535, + "default_unit_class": "volume", + "usda_fdc_id": 170855, + "usda_description": "Cheese, pasteurized process, swiss" + }, + { + "canonical_name": "cheese, provolone, reduced fat", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 172215, + "usda_description": "Cheese, provolone, reduced fat" + }, + { + "canonical_name": "cheese, ricotta, part skim milk", + "category": "dairy", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 171248, + "usda_description": "Cheese, ricotta, part skim milk" + }, + { + "canonical_name": "cheese, ricotta, whole milk", + "category": "dairy", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 170851, + "usda_description": "Cheese, ricotta, whole milk" + }, + { + "canonical_name": "cheese, swiss, low fat", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168141, + "usda_description": "Cheese, swiss, low fat" + }, + { + "canonical_name": "cheese, swiss, low sodium", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168124, + "usda_description": "Cheese, swiss, low sodium" + }, + { + "canonical_name": "cheese, white, queso blanco", + "category": "dairy", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 172224, + "usda_description": "Cheese, white, queso blanco" + }, + { + "canonical_name": "cherimoya", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 173953, + "usda_description": "Cherimoya, raw" + }, + { + "canonical_name": "cherries, sour, canned, water pack, drained", + "category": "beverage", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 167769, + "usda_description": "Cherries, sour, canned, water pack, drained" + }, + { + "canonical_name": "cherries, sour, red", + "category": "other", + "density_g_per_ml": 0.545, + "default_unit_class": "volume", + "usda_fdc_id": 173954, + "usda_description": "Cherries, sour, red, raw" + }, + { + "canonical_name": "cherries, sour, red, canned, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 171717, + "usda_description": "Cherries, sour, red, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sour, red, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171716, + "usda_description": "Cherries, sour, red, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sour, red, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 173956, + "usda_description": "Cherries, sour, red, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sour, red, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173955, + "usda_description": "Cherries, sour, red, canned, water pack, solids and liquids" + }, + { + "canonical_name": "cherries, sour, red, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 171718, + "usda_description": "Cherries, sour, red, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "cherries, sweet, canned, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 171720, + "usda_description": "Cherries, sweet, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sweet, canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 173958, + "usda_description": "Cherries, sweet, canned, juice pack, solids and liquids" + }, + { + "canonical_name": "cherries, sweet, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 173959, + "usda_description": "Cherries, sweet, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 173960, + "usda_description": "Cherries, sweet, canned, pitted, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "cherries, sweet, canned, pitted, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.757, + "default_unit_class": "volume", + "usda_fdc_id": 167770, + "usda_description": "Cherries, sweet, canned, pitted, heavy syrup, drained" + }, + { + "canonical_name": "cherries, sweet, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173957, + "usda_description": "Cherries, sweet, canned, water pack, solids and liquids" + }, + { + "canonical_name": "chervil spices", + "category": "other", + "density_g_per_ml": 0.125, + "default_unit_class": "volume", + "usda_fdc_id": 171318, + "usda_description": "Spices, chervil, dried" + }, + { + "canonical_name": "chicken fat", + "category": "meat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173564, + "usda_description": "Fat, chicken" + }, + { + "canonical_name": "chicken, broilers or fryers, back, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 171072, + "usda_description": "Chicken, broilers or fryers, back, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, breast, meat and skin, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171075, + "usda_description": "Chicken, broilers or fryers, breast, meat and skin, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, breast, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171076, + "usda_description": "Chicken, broilers or fryers, breast, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, breast, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171477, + "usda_description": "Chicken, broilers or fryers, breast, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, breast, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171478, + "usda_description": "Chicken, broilers or fryers, breast, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, dark meat, meat only, cooked, fried", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171068, + "usda_description": "Chicken, broilers or fryers, dark meat, meat only, cooked, fried" + }, + { + "canonical_name": "chicken, broilers or fryers, dark meat, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171069, + "usda_description": "Chicken, broilers or fryers, dark meat, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, dark meat, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171070, + "usda_description": "Chicken, broilers or fryers, dark meat, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173613, + "usda_description": "Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, drumstick, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 172377, + "usda_description": "Chicken, broilers or fryers, drumstick, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, giblets, cooked, fried", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 171058, + "usda_description": "Chicken, broilers or fryers, giblets, cooked, fried" + }, + { + "canonical_name": "chicken, broilers or fryers, giblets, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 171455, + "usda_description": "Chicken, broilers or fryers, giblets, cooked, simmered" + }, + { + "canonical_name": "chicken, broilers or fryers, leg, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173618, + "usda_description": "Chicken, broilers or fryers, leg, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, leg, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 172381, + "usda_description": "Chicken, broilers or fryers, leg, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, light meat, meat only, cooked, fried", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171465, + "usda_description": "Chicken, broilers or fryers, light meat, meat only, cooked, fried" + }, + { + "canonical_name": "chicken, broilers or fryers, light meat, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171466, + "usda_description": "Chicken, broilers or fryers, light meat, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, light meat, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171467, + "usda_description": "Chicken, broilers or fryers, light meat, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, meat and skin, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171450, + "usda_description": "Chicken, broilers or fryers, meat and skin, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171051, + "usda_description": "Chicken, broilers or fryers, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, meat only, cooked, fried", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171053, + "usda_description": "Chicken, broilers or fryers, meat only, cooked, fried" + }, + { + "canonical_name": "chicken, broilers or fryers, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.59, + "default_unit_class": "volume", + "usda_fdc_id": 171054, + "usda_description": "Chicken, broilers or fryers, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, broilers or fryers, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.59, + "default_unit_class": "volume", + "usda_fdc_id": 171451, + "usda_description": "Chicken, broilers or fryers, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, separable fat", + "category": "meat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171468, + "usda_description": "Chicken, broilers or fryers, separable fat, raw" + }, + { + "canonical_name": "chicken, broilers or fryers, thigh, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172389, + "usda_description": "Chicken, broilers or fryers, thigh, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, wing, meat and skin, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173631, + "usda_description": "Chicken, broilers or fryers, wing, meat and skin, cooked, stewed" + }, + { + "canonical_name": "chicken, broilers or fryers, wing, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172393, + "usda_description": "Chicken, broilers or fryers, wing, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, canned, no broth", + "category": "meat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171110, + "usda_description": "Chicken, canned, no broth" + }, + { + "canonical_name": "chicken, capons, giblets, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 174466, + "usda_description": "Chicken, capons, giblets, cooked, simmered" + }, + { + "canonical_name": "chicken, gizzard, all classes, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 171457, + "usda_description": "Chicken, gizzard, all classes, cooked, simmered" + }, + { + "canonical_name": "chicken, heart, all classes, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 171059, + "usda_description": "Chicken, heart, all classes, cooked, simmered" + }, + { + "canonical_name": "chicken, meatless, breaded, fried", + "category": "meat", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 167719, + "usda_description": "Chicken, meatless, breaded, fried" + }, + { + "canonical_name": "chicken, roasting, dark meat, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173639, + "usda_description": "Chicken, roasting, dark meat, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, roasting, giblets, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 172397, + "usda_description": "Chicken, roasting, giblets, cooked, simmered" + }, + { + "canonical_name": "chicken, roasting, light meat, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173637, + "usda_description": "Chicken, roasting, light meat, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, roasting, meat only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172395, + "usda_description": "Chicken, roasting, meat only, cooked, roasted" + }, + { + "canonical_name": "chicken, stewing, dark meat, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172405, + "usda_description": "Chicken, stewing, dark meat, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, stewing, giblets, cooked, simmered", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 173642, + "usda_description": "Chicken, stewing, giblets, cooked, simmered" + }, + { + "canonical_name": "chicken, stewing, light meat, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173644, + "usda_description": "Chicken, stewing, light meat, meat only, cooked, stewed" + }, + { + "canonical_name": "chicken, stewing, meat and skin, and giblets and neck, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 172399, + "usda_description": "Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed" + }, + { + "canonical_name": "chicken, stewing, meat only, cooked, stewed", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172403, + "usda_description": "Chicken, stewing, meat only, cooked, stewed" + }, + { + "canonical_name": "chickpea flour", + "category": "legume", + "density_g_per_ml": 0.389, + "default_unit_class": "volume", + "usda_fdc_id": 174288, + "usda_description": "Chickpea flour (besan)" + }, + { + "canonical_name": "chickpeas , mature seeds, canned, drained, rinsed in tap water", + "category": "legume", + "density_g_per_ml": 0.642, + "default_unit_class": "volume", + "usda_fdc_id": 173801, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, drained, rinsed in tap water" + }, + { + "canonical_name": "chickpeas , mature seeds, canned, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175206, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids" + }, + { + "canonical_name": "chickpeas , mature seeds, canned, solids and liquids, low sodium", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175250, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, canned, solids and liquids, low sodium" + }, + { + "canonical_name": "chicory greens", + "category": "other", + "density_g_per_ml": 0.123, + "default_unit_class": "volume", + "usda_fdc_id": 169992, + "usda_description": "Chicory greens, raw" + }, + { + "canonical_name": "chicory roots", + "category": "other", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 169993, + "usda_description": "Chicory roots, raw" + }, + { + "canonical_name": "child formula, , , ready-to-feed, with iron and fiber", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173550, + "usda_description": "Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber" + }, + { + "canonical_name": "chili 's", + "category": "other", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 169018, + "usda_description": "APPLEBEE'S, chili" + }, + { + "canonical_name": "chili powder spices", + "category": "other", + "density_g_per_ml": 0.544, + "default_unit_class": "volume", + "usda_fdc_id": 171319, + "usda_description": "Spices, chili powder" + }, + { + "canonical_name": "chili, no beans, canned entree", + "category": "legume", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172098, + "usda_description": "Chili, no beans, canned entree" + }, + { + "canonical_name": "chinese cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.308, + "default_unit_class": "volume", + "usda_fdc_id": 169979, + "usda_description": "Cabbage, chinese (pe-tsai), raw" + }, + { + "canonical_name": "chinese waterchestnuts", + "category": "beverage", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 170066, + "usda_description": "Waterchestnuts, chinese, (matai), raw" + }, + { + "canonical_name": "chives", + "category": "other", + "density_g_per_ml": 0.203, + "default_unit_class": "volume", + "usda_fdc_id": 169994, + "usda_description": "Chives, raw" + }, + { + "canonical_name": "chocolate frozen yogurts", + "category": "baking", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 168104, + "usda_description": "Frozen yogurts, chocolate" + }, + { + "canonical_name": "chocolate ice creams", + "category": "baking", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168809, + "usda_description": "Ice creams, chocolate" + }, + { + "canonical_name": "chocolate syrup", + "category": "baking", + "density_g_per_ml": 1.353, + "default_unit_class": "mass", + "usda_fdc_id": 170681, + "usda_description": "Syrup, NESTLE, chocolate" + }, + { + "canonical_name": "chocolate wafers cookies", + "category": "baking", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 172714, + "usda_description": "Cookies, chocolate wafers" + }, + { + "canonical_name": "chocolate-flavored soda carbonated beverage", + "category": "baking", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171921, + "usda_description": "Carbonated beverage, chocolate-flavored soda" + }, + { + "canonical_name": "chokecherries pitted", + "category": "other", + "density_g_per_ml": 0.651, + "default_unit_class": "volume", + "usda_fdc_id": 168999, + "usda_description": "Chokecherries, raw, pitted (Northern Plains Indians)" + }, + { + "canonical_name": "chrysanthemum leaves", + "category": "other", + "density_g_per_ml": 0.216, + "default_unit_class": "volume", + "usda_fdc_id": 168491, + "usda_description": "Chrysanthemum leaves, raw" + }, + { + "canonical_name": "chrysanthemum, garland drained, with salt", + "category": "spice", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 168522, + "usda_description": "Chrysanthemum, garland, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "chrysanthemum, garland drained, without salt", + "category": "spice", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 170405, + "usda_description": "Chrysanthemum, garland, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cider vinegar", + "category": "condiment", + "density_g_per_ml": 1.011, + "default_unit_class": "volume", + "usda_fdc_id": 173469, + "usda_description": "Vinegar, cider" + }, + { + "canonical_name": "cinnamon spices", + "category": "spice", + "density_g_per_ml": 0.527, + "default_unit_class": "volume", + "usda_fdc_id": 171320, + "usda_description": "Spices, cinnamon, ground" + }, + { + "canonical_name": "cloud ears fungi", + "category": "other", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 168581, + "usda_description": "Fungi, Cloud ears, dried" + }, + { + "canonical_name": "cloves spices", + "category": "other", + "density_g_per_ml": 0.433, + "default_unit_class": "volume", + "usda_fdc_id": 171321, + "usda_description": "Spices, cloves, ground" + }, + { + "canonical_name": "cocoa butter oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171421, + "usda_description": "Oil, cocoa butter" + }, + { + "canonical_name": "cocoa, dry powder, hi-fat or breakfast, processed with alkali", + "category": "baking", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 170657, + "usda_description": "Cocoa, dry powder, hi-fat or breakfast, processed with alkali" + }, + { + "canonical_name": "cocoa, dry powder, unsweetened", + "category": "baking", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 169593, + "usda_description": "Cocoa, dry powder, unsweetened" + }, + { + "canonical_name": "cocoa, dry powder, unsweetened, 's european style cocoa", + "category": "baking", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 168774, + "usda_description": "Cocoa, dry powder, unsweetened, HERSHEY'S European Style Cocoa" + }, + { + "canonical_name": "cocoa, dry powder, unsweetened, processed with alkali", + "category": "baking", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 169594, + "usda_description": "Cocoa, dry powder, unsweetened, processed with alkali" + }, + { + "canonical_name": "coconut meat nuts", + "category": "nut-seed", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 170169, + "usda_description": "Nuts, coconut meat, raw" + }, + { + "canonical_name": "coconut oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171412, + "usda_description": "Oil, coconut" + }, + { + "canonical_name": "coconut water nuts", + "category": "beverage", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170174, + "usda_description": "Nuts, coconut water (liquid from coconuts)" + }, + { + "canonical_name": "cod liver fish oil", + "category": "meat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173577, + "usda_description": "Fish oil, cod liver" + }, + { + "canonical_name": "colby cheese", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 173416, + "usda_description": "Cheese, colby" + }, + { + "canonical_name": "coleslaw salad dressing", + "category": "condiment", + "density_g_per_ml": 1.253, + "default_unit_class": "mass", + "usda_fdc_id": 169056, + "usda_description": "Salad dressing, coleslaw" + }, + { + "canonical_name": "collards", + "category": "oil-fat", + "density_g_per_ml": 0.152, + "default_unit_class": "volume", + "usda_fdc_id": 170406, + "usda_description": "Collards, raw" + }, + { + "canonical_name": "collards, frozen, chopped drained, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168524, + "usda_description": "Collards, frozen, chopped, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "collards, frozen, chopped drained, without salt", + "category": "oil-fat", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169996, + "usda_description": "Collards, frozen, chopped, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "commercial hummus", + "category": "other", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 174289, + "usda_description": "Hummus, commercial" + }, + { + "canonical_name": "common guavas", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 173044, + "usda_description": "Guavas, common, raw" + }, + { + "canonical_name": "cooked amaranth grain", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 170683, + "usda_description": "Amaranth grain, cooked" + }, + { + "canonical_name": "cooked bulgur", + "category": "other", + "density_g_per_ml": 0.669, + "default_unit_class": "volume", + "usda_fdc_id": 170287, + "usda_description": "Bulgur, cooked" + }, + { + "canonical_name": "cooked couscous", + "category": "grain", + "density_g_per_ml": 1.448, + "default_unit_class": "mass", + "usda_fdc_id": 169700, + "usda_description": "Couscous, cooked" + }, + { + "canonical_name": "cooked dove", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169905, + "usda_description": "Dove, cooked (includes squab)" + }, + { + "canonical_name": "cooked guava sauce", + "category": "condiment", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 174686, + "usda_description": "Guava sauce, cooked" + }, + { + "canonical_name": "cooked malabar spinach", + "category": "produce-vegetable", + "density_g_per_ml": 0.186, + "default_unit_class": "volume", + "usda_fdc_id": 169400, + "usda_description": "Malabar spinach, cooked" + }, + { + "canonical_name": "cooked millet", + "category": "other", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 168871, + "usda_description": "Millet, cooked" + }, + { + "canonical_name": "cooked oat bran", + "category": "other", + "density_g_per_ml": 0.926, + "default_unit_class": "volume", + "usda_fdc_id": 168873, + "usda_description": "Oat bran, cooked" + }, + { + "canonical_name": "cooked quinoa", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 168917, + "usda_description": "Quinoa, cooked" + }, + { + "canonical_name": "cooked rice noodles", + "category": "grain", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 168914, + "usda_description": "Rice noodles, cooked" + }, + { + "canonical_name": "cooked spelt", + "category": "other", + "density_g_per_ml": 0.82, + "default_unit_class": "volume", + "usda_fdc_id": 169746, + "usda_description": "Spelt, cooked" + }, + { + "canonical_name": "cooked teff", + "category": "other", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 168918, + "usda_description": "Teff, cooked" + }, + { + "canonical_name": "cooked wild rice", + "category": "grain", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 168897, + "usda_description": "Wild rice, cooked" + }, + { + "canonical_name": "cooked with water cereals", + "category": "beverage", + "density_g_per_ml": 1.026, + "default_unit_class": "volume", + "usda_fdc_id": 171666, + "usda_description": "Cereals, WHEATENA, cooked with water" + }, + { + "canonical_name": "cookies, graham crackers, plain or honey", + "category": "condiment", + "density_g_per_ml": 0.355, + "default_unit_class": "volume", + "usda_fdc_id": 174957, + "usda_description": "Cookies, graham crackers, plain or honey (includes cinnamon)" + }, + { + "canonical_name": "cookies, vanilla wafers, lower fat", + "category": "baking", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 174973, + "usda_description": "Cookies, vanilla wafers, lower fat" + }, + { + "canonical_name": "coriander leaf spices", + "category": "other", + "density_g_per_ml": 0.122, + "default_unit_class": "volume", + "usda_fdc_id": 170921, + "usda_description": "Spices, coriander leaf, dried" + }, + { + "canonical_name": "coriander seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.352, + "default_unit_class": "volume", + "usda_fdc_id": 170922, + "usda_description": "Spices, coriander seed" + }, + { + "canonical_name": "corn and canola oil", + "category": "oil-fat", + "density_g_per_ml": 0.936, + "default_unit_class": "volume", + "usda_fdc_id": 169867, + "usda_description": "Oil, corn and canola" + }, + { + "canonical_name": "corn flour, masa, enriched, white", + "category": "baking", + "density_g_per_ml": 0.482, + "default_unit_class": "volume", + "usda_fdc_id": 169694, + "usda_description": "Corn flour, masa, enriched, white" + }, + { + "canonical_name": "corn flour, masa, unenriched, white", + "category": "baking", + "density_g_per_ml": 0.482, + "default_unit_class": "volume", + "usda_fdc_id": 169696, + "usda_description": "Corn flour, masa, unenriched, white" + }, + { + "canonical_name": "corn flour, whole-grain, blue", + "category": "baking", + "density_g_per_ml": 0.467, + "default_unit_class": "volume", + "usda_fdc_id": 168921, + "usda_description": "Corn flour, whole-grain, blue (harina de maiz morado)" + }, + { + "canonical_name": "corn flour, whole-grain, white", + "category": "baking", + "density_g_per_ml": 0.495, + "default_unit_class": "volume", + "usda_fdc_id": 169748, + "usda_description": "Corn flour, whole-grain, white" + }, + { + "canonical_name": "corn flour, whole-grain, yellow", + "category": "baking", + "density_g_per_ml": 0.495, + "default_unit_class": "volume", + "usda_fdc_id": 170290, + "usda_description": "Corn flour, whole-grain, yellow" + }, + { + "canonical_name": "corn flour, yellow, degermed, unenriched", + "category": "baking", + "density_g_per_ml": 0.533, + "default_unit_class": "volume", + "usda_fdc_id": 169695, + "usda_description": "Corn flour, yellow, degermed, unenriched" + }, + { + "canonical_name": "corn flour, yellow, masa, enriched", + "category": "baking", + "density_g_per_ml": 0.482, + "default_unit_class": "volume", + "usda_fdc_id": 169749, + "usda_description": "Corn flour, yellow, masa, enriched" + }, + { + "canonical_name": "corn with red and green peppers, canned, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 169218, + "usda_description": "Corn with red and green peppers, canned, solids and liquids" + }, + { + "canonical_name": "corn, sweet, white", + "category": "other", + "density_g_per_ml": 0.651, + "default_unit_class": "volume", + "usda_fdc_id": 168538, + "usda_description": "Corn, sweet, white, raw" + }, + { + "canonical_name": "corn, sweet, white drained, with salt", + "category": "spice", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168540, + "usda_description": "Corn, sweet, white, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "corn, sweet, white drained, without salt", + "category": "spice", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168539, + "usda_description": "Corn, sweet, white, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, white, canned, cream style, no salt added", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169363, + "usda_description": "Corn, sweet, white, canned, cream style, no salt added" + }, + { + "canonical_name": "corn, sweet, white, canned, cream style, regular pack", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169362, + "usda_description": "Corn, sweet, white, canned, cream style, regular pack" + }, + { + "canonical_name": "corn, sweet, white, canned, vacuum pack, no salt added", + "category": "spice", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 168543, + "usda_description": "Corn, sweet, white, canned, vacuum pack, no salt added" + }, + { + "canonical_name": "corn, sweet, white, canned, vacuum pack, regular pack", + "category": "other", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 168542, + "usda_description": "Corn, sweet, white, canned, vacuum pack, regular pack" + }, + { + "canonical_name": "corn, sweet, white, canned, whole kernel, drained solids", + "category": "other", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 169361, + "usda_description": "Corn, sweet, white, canned, whole kernel, drained solids" + }, + { + "canonical_name": "corn, sweet, white, canned, whole kernel, no salt added, solids and liquids", + "category": "spice", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169360, + "usda_description": "Corn, sweet, white, canned, whole kernel, no salt added, solids and liquids" + }, + { + "canonical_name": "corn, sweet, white, canned, whole kernel, regular pack, solids and liquids", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 168541, + "usda_description": "Corn, sweet, white, canned, whole kernel, regular pack, solids and liquids" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169364, + "usda_description": "Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, with salt" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168545, + "usda_description": "Corn, sweet, white, frozen, kernels cut off cob, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels cut off cob, unprepared", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168544, + "usda_description": "Corn, sweet, white, frozen, kernels cut off cob, unprepared" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels on cob drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169367, + "usda_description": "Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels on cob drained, without salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169366, + "usda_description": "Corn, sweet, white, frozen, kernels on cob, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, white, frozen, kernels on cob, unprepared", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169365, + "usda_description": "Corn, sweet, white, frozen, kernels on cob, unprepared" + }, + { + "canonical_name": "corn, sweet, yellow", + "category": "other", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 169998, + "usda_description": "Corn, sweet, yellow, raw" + }, + { + "canonical_name": "corn, sweet, yellow drained, with salt", + "category": "spice", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 168525, + "usda_description": "Corn, sweet, yellow, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "corn, sweet, yellow drained, without salt", + "category": "spice", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 169999, + "usda_description": "Corn, sweet, yellow, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 170409, + "usda_description": "Corn, sweet, yellow, canned, brine pack, regular pack, solids and liquids" + }, + { + "canonical_name": "corn, sweet, yellow, canned, cream style, no salt added", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169346, + "usda_description": "Corn, sweet, yellow, canned, cream style, no salt added" + }, + { + "canonical_name": "corn, sweet, yellow, canned, cream style, regular pack", + "category": "dairy", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169215, + "usda_description": "Corn, sweet, yellow, canned, cream style, regular pack" + }, + { + "canonical_name": "corn, sweet, yellow, canned, drained solids, rinsed with tap water", + "category": "beverage", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 168397, + "usda_description": "Corn, sweet, yellow, canned, drained solids, rinsed with tap water" + }, + { + "canonical_name": "corn, sweet, yellow, canned, no salt added, solids and liquids", + "category": "spice", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169345, + "usda_description": "Corn, sweet, yellow, canned, no salt added, solids and liquids (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "corn, sweet, yellow, canned, vacuum pack, no salt added", + "category": "spice", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 169347, + "usda_description": "Corn, sweet, yellow, canned, vacuum pack, no salt added" + }, + { + "canonical_name": "corn, sweet, yellow, canned, vacuum pack, regular pack", + "category": "other", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 169216, + "usda_description": "Corn, sweet, yellow, canned, vacuum pack, regular pack" + }, + { + "canonical_name": "corn, sweet, yellow, canned, whole kernel, drained solids", + "category": "other", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 169214, + "usda_description": "Corn, sweet, yellow, canned, whole kernel, drained solids" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168399, + "usda_description": "Corn, sweet, yellow, frozen, kernels cut off cob, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels cut off cob, unprepared", + "category": "other", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 168398, + "usda_description": "Corn, sweet, yellow, frozen, kernels cut off cob, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels on cob drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169349, + "usda_description": "Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels on cob drained, without salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168401, + "usda_description": "Corn, sweet, yellow, frozen, kernels on cob, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels on cob, unprepared", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168400, + "usda_description": "Corn, sweet, yellow, frozen, kernels on cob, unprepared" + }, + { + "canonical_name": "corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169348, + "usda_description": "Corn, sweet, yellow, frozen, kernels, cut off cob, boiled, drained, with salt" + }, + { + "canonical_name": "corn, yellow, whole kernel, frozen, microwaved", + "category": "other", + "density_g_per_ml": 0.596, + "default_unit_class": "volume", + "usda_fdc_id": 169217, + "usda_description": "Corn, yellow, whole kernel, frozen, microwaved" + }, + { + "canonical_name": "cornmeal, degermed, enriched, white", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168922, + "usda_description": "Cornmeal, degermed, enriched, white" + }, + { + "canonical_name": "cornmeal, degermed, enriched, yellow", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168867, + "usda_description": "Cornmeal, degermed, enriched, yellow" + }, + { + "canonical_name": "cornmeal, degermed, unenriched, white", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 172015, + "usda_description": "Cornmeal, degermed, unenriched, white" + }, + { + "canonical_name": "cornmeal, degermed, unenriched, yellow", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168929, + "usda_description": "Cornmeal, degermed, unenriched, yellow" + }, + { + "canonical_name": "cornmeal, white, self-rising, bolted, plain, enriched", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 168923, + "usda_description": "Cornmeal, white, self-rising, bolted, plain, enriched" + }, + { + "canonical_name": "cornmeal, white, self-rising, bolted, with wheat flour added, enriched", + "category": "baking", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168924, + "usda_description": "Cornmeal, white, self-rising, bolted, with wheat flour added, enriched" + }, + { + "canonical_name": "cornmeal, white, self-rising, degermed, enriched", + "category": "other", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 168925, + "usda_description": "Cornmeal, white, self-rising, degermed, enriched" + }, + { + "canonical_name": "cornmeal, whole-grain, white", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 169750, + "usda_description": "Cornmeal, whole-grain, white" + }, + { + "canonical_name": "cornmeal, whole-grain, yellow", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 169697, + "usda_description": "Cornmeal, whole-grain, yellow" + }, + { + "canonical_name": "cornmeal, yellow, self-rising, bolted, plain, enriched", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 168868, + "usda_description": "Cornmeal, yellow, self-rising, bolted, plain, enriched" + }, + { + "canonical_name": "cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched", + "category": "baking", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168869, + "usda_description": "Cornmeal, yellow, self-rising, bolted, with wheat flour added, enriched" + }, + { + "canonical_name": "cornmeal, yellow, self-rising, degermed, enriched", + "category": "other", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 168870, + "usda_description": "Cornmeal, yellow, self-rising, degermed, enriched" + }, + { + "canonical_name": "cornsalad", + "category": "other", + "density_g_per_ml": 0.237, + "default_unit_class": "volume", + "usda_fdc_id": 169219, + "usda_description": "Cornsalad, raw" + }, + { + "canonical_name": "cornstarch", + "category": "other", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169698, + "usda_description": "Cornstarch" + }, + { + "canonical_name": "cos or romaine lettuce", + "category": "produce-vegetable", + "density_g_per_ml": 0.199, + "default_unit_class": "volume", + "usda_fdc_id": 169247, + "usda_description": "Lettuce, cos or romaine, raw" + }, + { + "canonical_name": "cowpeas , immature seeds drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168526, + "usda_description": "Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cowpeas , immature seeds drained, without salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168402, + "usda_description": "Cowpeas (blackeyes), immature seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cowpeas , immature seeds, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168527, + "usda_description": "Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cowpeas , immature seeds, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168404, + "usda_description": "Cowpeas (blackeyes), immature seeds, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cowpeas , immature seeds, frozen, unprepared", + "category": "nut-seed", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 168403, + "usda_description": "Cowpeas (blackeyes), immature seeds, frozen, unprepared" + }, + { + "canonical_name": "cowpeas, catjang, mature seeds", + "category": "nut-seed", + "density_g_per_ml": 0.706, + "default_unit_class": "volume", + "usda_fdc_id": 175208, + "usda_description": "Cowpeas, catjang, mature seeds, raw" + }, + { + "canonical_name": "cowpeas, catjang, mature seeds with salt", + "category": "spice", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 175251, + "usda_description": "Cowpeas, catjang, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "cowpeas, catjang, mature seeds without salt", + "category": "spice", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 175209, + "usda_description": "Cowpeas, catjang, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "cowpeas, common , mature seeds", + "category": "nut-seed", + "density_g_per_ml": 0.708, + "default_unit_class": "volume", + "usda_fdc_id": 173758, + "usda_description": "Cowpeas, common (blackeyes, crowder, southern), mature seeds, raw" + }, + { + "canonical_name": "cowpeas, common , mature seeds with salt", + "category": "spice", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 175252, + "usda_description": "Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "cowpeas, common , mature seeds without salt", + "category": "spice", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 173759, + "usda_description": "Cowpeas, common (blackeyes, crowder, southern), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "cowpeas, common , mature seeds, canned with pork", + "category": "nut-seed", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173761, + "usda_description": "Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned with pork" + }, + { + "canonical_name": "cowpeas, common , mature seeds, canned, plain", + "category": "nut-seed", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173760, + "usda_description": "Cowpeas, common (blackeyes, crowder, southern), mature seeds, canned, plain" + }, + { + "canonical_name": "cowpeas, leafy tips drained, with salt", + "category": "spice", + "density_g_per_ml": 0.224, + "default_unit_class": "volume", + "usda_fdc_id": 168529, + "usda_description": "Cowpeas, leafy tips, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cowpeas, leafy tips drained, without salt", + "category": "spice", + "density_g_per_ml": 0.224, + "default_unit_class": "volume", + "usda_fdc_id": 168406, + "usda_description": "Cowpeas, leafy tips, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "cowpeas, young pods with seeds drained, with salt", + "category": "spice", + "density_g_per_ml": 0.402, + "default_unit_class": "volume", + "usda_fdc_id": 168528, + "usda_description": "Cowpeas, young pods with seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cowpeas, young pods with seeds drained, without salt", + "category": "spice", + "density_g_per_ml": 0.402, + "default_unit_class": "volume", + "usda_fdc_id": 169221, + "usda_description": "Cowpeas, young pods with seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "crabapples", + "category": "produce-fruit", + "density_g_per_ml": 0.465, + "default_unit_class": "volume", + "usda_fdc_id": 171721, + "usda_description": "Crabapples, raw" + }, + { + "canonical_name": "crackers, cheese, low sodium", + "category": "dairy", + "density_g_per_ml": 0.283, + "default_unit_class": "volume", + "usda_fdc_id": 175060, + "usda_description": "Crackers, cheese, low sodium" + }, + { + "canonical_name": "crackers, cheese, regular", + "category": "dairy", + "density_g_per_ml": 0.283, + "default_unit_class": "volume", + "usda_fdc_id": 174975, + "usda_description": "Crackers, cheese, regular" + }, + { + "canonical_name": "crackers, cheese, sandwich-type with peanut butter filling", + "category": "oil-fat", + "density_g_per_ml": 0.351, + "default_unit_class": "volume", + "usda_fdc_id": 174976, + "usda_description": "Crackers, cheese, sandwich-type with peanut butter filling" + }, + { + "canonical_name": "crackers, crispbread, rye", + "category": "grain", + "density_g_per_ml": 0.232, + "default_unit_class": "volume", + "usda_fdc_id": 172739, + "usda_description": "Crackers, crispbread, rye" + }, + { + "canonical_name": "crackers, melba toast, plain", + "category": "other", + "density_g_per_ml": 0.133, + "default_unit_class": "volume", + "usda_fdc_id": 174977, + "usda_description": "Crackers, melba toast, plain" + }, + { + "canonical_name": "crackers, melba toast, plain, without salt", + "category": "spice", + "density_g_per_ml": 0.187, + "default_unit_class": "volume", + "usda_fdc_id": 172822, + "usda_description": "Crackers, melba toast, plain, without salt" + }, + { + "canonical_name": "crackers, rye, wafers, plain", + "category": "other", + "density_g_per_ml": 0.258, + "default_unit_class": "volume", + "usda_fdc_id": 172744, + "usda_description": "Crackers, rye, wafers, plain" + }, + { + "canonical_name": "crackers, saltines, low salt", + "category": "spice", + "density_g_per_ml": 0.19, + "default_unit_class": "volume", + "usda_fdc_id": 175056, + "usda_description": "Crackers, saltines, low salt (includes oyster, soda, soup)" + }, + { + "canonical_name": "crackers, standard snack-type, regular", + "category": "other", + "density_g_per_ml": 0.22, + "default_unit_class": "volume", + "usda_fdc_id": 174982, + "usda_description": "Crackers, standard snack-type, regular" + }, + { + "canonical_name": "crackers, standard snack-type, regular, low salt", + "category": "spice", + "density_g_per_ml": 0.283, + "default_unit_class": "volume", + "usda_fdc_id": 175058, + "usda_description": "Crackers, standard snack-type, regular, low salt" + }, + { + "canonical_name": "crackers, wheat, low salt", + "category": "spice", + "density_g_per_ml": 0.351, + "default_unit_class": "volume", + "usda_fdc_id": 175059, + "usda_description": "Crackers, wheat, low salt" + }, + { + "canonical_name": "crackers, whole-wheat, low salt", + "category": "spice", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 172823, + "usda_description": "Crackers, whole-wheat, low salt" + }, + { + "canonical_name": "cranberries", + "category": "other", + "density_g_per_ml": 0.444, + "default_unit_class": "volume", + "usda_fdc_id": 171722, + "usda_description": "Cranberries, raw" + }, + { + "canonical_name": "cranberries sweetened", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 171723, + "usda_description": "Cranberries, dried, sweetened (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "cranberry juice blend, 100% juice, bottled, with added vitamin c and calcium", + "category": "beverage", + "density_g_per_ml": 1.008, + "default_unit_class": "volume", + "usda_fdc_id": 168212, + "usda_description": "Cranberry juice blend, 100% juice, bottled, with added vitamin C and calcium" + }, + { + "canonical_name": "cranberry juice cocktail, frozen concentrate, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 173654, + "usda_description": "Cranberry juice cocktail, frozen concentrate, prepared with water" + }, + { + "canonical_name": "cranberry sauce canned", + "category": "condiment", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 167803, + "usda_description": "Cranberry sauce, whole, canned, OCEAN SPRAY" + }, + { + "canonical_name": "cranberry sauce, canned, sweetened", + "category": "condiment", + "density_g_per_ml": 1.171, + "default_unit_class": "mass", + "usda_fdc_id": 173961, + "usda_description": "Cranberry sauce, canned, sweetened" + }, + { + "canonical_name": "cranberry sauce, jellied, canned", + "category": "condiment", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 167804, + "usda_description": "Cranberry sauce, jellied, canned, OCEAN SPRAY" + }, + { + "canonical_name": "cream cheese", + "category": "dairy", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 173418, + "usda_description": "Cheese, cream" + }, + { + "canonical_name": "cream cheese base cheese spread", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169081, + "usda_description": "Cheese spread, cream cheese base" + }, + { + "canonical_name": "cream soda carbonated beverage", + "category": "dairy", + "density_g_per_ml": 1.045, + "default_unit_class": "volume", + "usda_fdc_id": 173199, + "usda_description": "Carbonated beverage, cream soda" + }, + { + "canonical_name": "cream substitute, flavored, liquid", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173453, + "usda_description": "Cream substitute, flavored, liquid" + }, + { + "canonical_name": "cream substitute, flavored, powdered", + "category": "dairy", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 172214, + "usda_description": "Cream substitute, flavored, powdered" + }, + { + "canonical_name": "cream substitute, liquid, light", + "category": "dairy", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 168097, + "usda_description": "Cream substitute, liquid, light" + }, + { + "canonical_name": "cream substitute, liquid, with hydrogenated vegetable oil and soy protein", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171261, + "usda_description": "Cream substitute, liquid, with hydrogenated vegetable oil and soy protein" + }, + { + "canonical_name": "cream substitute, liquid, with lauric acid oil and sodium caseinate", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171262, + "usda_description": "Cream substitute, liquid, with lauric acid oil and sodium caseinate" + }, + { + "canonical_name": "cream substitute, powdered, light", + "category": "dairy", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 167688, + "usda_description": "Cream substitute, powdered, light" + }, + { + "canonical_name": "cream, fluid, half and half", + "category": "dairy", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 171255, + "usda_description": "Cream, fluid, half and half" + }, + { + "canonical_name": "cream, fluid, heavy whipping", + "category": "dairy", + "density_g_per_ml": 0.884, + "default_unit_class": "volume", + "usda_fdc_id": 170859, + "usda_description": "Cream, fluid, heavy whipping" + }, + { + "canonical_name": "cream, fluid, light", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170857, + "usda_description": "Cream, fluid, light (coffee cream or table cream)" + }, + { + "canonical_name": "cream, fluid, light whipping", + "category": "dairy", + "density_g_per_ml": 0.844, + "default_unit_class": "volume", + "usda_fdc_id": 170858, + "usda_description": "Cream, fluid, light whipping" + }, + { + "canonical_name": "cream, half and half, fat free", + "category": "dairy", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 172212, + "usda_description": "Cream, half and half, fat free" + }, + { + "canonical_name": "cream, sour, cultured", + "category": "dairy", + "density_g_per_ml": 0.892, + "default_unit_class": "volume", + "usda_fdc_id": 171257, + "usda_description": "Cream, sour, cultured" + }, + { + "canonical_name": "cream, sour, reduced fat, cultured", + "category": "dairy", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 171256, + "usda_description": "Cream, sour, reduced fat, cultured" + }, + { + "canonical_name": "cream, whipped, cream topping, pressurized", + "category": "dairy", + "density_g_per_ml": 0.228, + "default_unit_class": "volume", + "usda_fdc_id": 170860, + "usda_description": "Cream, whipped, cream topping, pressurized" + }, + { + "canonical_name": "creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 167684, + "usda_description": "Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie" + }, + { + "canonical_name": "creamy peanut butter with omega-3", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 172471, + "usda_description": "Peanut butter with omega-3, creamy" + }, + { + "canonical_name": "cress, garden drained, with salt", + "category": "spice", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169350, + "usda_description": "Cress, garden, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "cress, garden drained, without salt", + "category": "spice", + "density_g_per_ml": 0.573, + "default_unit_class": "volume", + "usda_fdc_id": 168408, + "usda_description": "Cress, garden, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "crude corn bran", + "category": "other", + "density_g_per_ml": 0.321, + "default_unit_class": "volume", + "usda_fdc_id": 170289, + "usda_description": "Corn bran, crude" + }, + { + "canonical_name": "crude rice bran", + "category": "grain", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169713, + "usda_description": "Rice bran, crude" + }, + { + "canonical_name": "crude wheat bran", + "category": "other", + "density_g_per_ml": 0.245, + "default_unit_class": "volume", + "usda_fdc_id": 169722, + "usda_description": "Wheat bran, crude" + }, + { + "canonical_name": "crude wheat germ", + "category": "other", + "density_g_per_ml": 0.486, + "default_unit_class": "volume", + "usda_fdc_id": 168892, + "usda_description": "Wheat germ, crude" + }, + { + "canonical_name": "crustaceans, crab, blue, canned", + "category": "other", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 171966, + "usda_description": "Crustaceans, crab, blue, canned" + }, + { + "canonical_name": "crustaceans, crab, blue, cooked, moist heat", + "category": "other", + "density_g_per_ml": 0.535, + "default_unit_class": "volume", + "usda_fdc_id": 174205, + "usda_description": "Crustaceans, crab, blue, cooked, moist heat" + }, + { + "canonical_name": "crustaceans, lobster, northern, cooked, moist heat", + "category": "other", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 174209, + "usda_description": "Crustaceans, lobster, northern, cooked, moist heat" + }, + { + "canonical_name": "crustaceans, shrimp, mixed species, canned", + "category": "meat", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 171972, + "usda_description": "Crustaceans, shrimp, mixed species, canned" + }, + { + "canonical_name": "cumin seed spices", + "category": "spice", + "density_g_per_ml": 0.416, + "default_unit_class": "volume", + "usda_fdc_id": 170923, + "usda_description": "Spices, cumin seed" + }, + { + "canonical_name": "cupu assu oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173563, + "usda_description": "Oil, cupu assu" + }, + { + "canonical_name": "curd cheese soybean", + "category": "dairy", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 169083, + "usda_description": "Soybean, curd cheese" + }, + { + "canonical_name": "curry powder spices", + "category": "other", + "density_g_per_ml": 0.416, + "default_unit_class": "volume", + "usda_fdc_id": 170924, + "usda_description": "Spices, curry powder" + }, + { + "canonical_name": "dandelion greens", + "category": "other", + "density_g_per_ml": 0.232, + "default_unit_class": "volume", + "usda_fdc_id": 169226, + "usda_description": "Dandelion greens, raw" + }, + { + "canonical_name": "dark rye flour", + "category": "baking", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 168885, + "usda_description": "Rye flour, dark" + }, + { + "canonical_name": "defatted peanut flour", + "category": "nut-seed", + "density_g_per_ml": 0.254, + "default_unit_class": "volume", + "usda_fdc_id": 174267, + "usda_description": "Peanut flour, defatted" + }, + { + "canonical_name": "defatted soy flour", + "category": "baking", + "density_g_per_ml": 0.445, + "default_unit_class": "volume", + "usda_fdc_id": 174275, + "usda_description": "Soy flour, defatted" + }, + { + "canonical_name": "defatted soy meal", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 172445, + "usda_description": "Soy meal, defatted, raw" + }, + { + "canonical_name": "deglet noor dates", + "category": "other", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 171726, + "usda_description": "Dates, deglet noor" + }, + { + "canonical_name": "dehydrated carrot", + "category": "produce-vegetable", + "density_g_per_ml": 0.313, + "default_unit_class": "volume", + "usda_fdc_id": 170500, + "usda_description": "Carrot, dehydrated" + }, + { + "canonical_name": "dehydrated flakes onions", + "category": "produce-vegetable", + "density_g_per_ml": 0.287, + "default_unit_class": "volume", + "usda_fdc_id": 170002, + "usda_description": "Onions, dehydrated flakes" + }, + { + "canonical_name": "dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk", + "category": "dairy", + "density_g_per_ml": 0.304, + "default_unit_class": "volume", + "usda_fdc_id": 170866, + "usda_description": "Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk" + }, + { + "canonical_name": "dessert topping, semi solid, frozen", + "category": "other", + "density_g_per_ml": 0.294, + "default_unit_class": "volume", + "usda_fdc_id": 170868, + "usda_description": "Dessert topping, semi solid, frozen" + }, + { + "canonical_name": "desserts, apple crisp, prepared-from-recipe", + "category": "produce-fruit", + "density_g_per_ml": 1.192, + "default_unit_class": "mass", + "usda_fdc_id": 169601, + "usda_description": "Desserts, apple crisp, prepared-from-recipe" + }, + { + "canonical_name": "desserts, egg custard, baked, prepared-from-recipe", + "category": "dairy", + "density_g_per_ml": 1.192, + "default_unit_class": "mass", + "usda_fdc_id": 169595, + "usda_description": "Desserts, egg custard, baked, prepared-from-recipe" + }, + { + "canonical_name": "desserts, flan, caramel custard, prepared-from-recipe", + "category": "other", + "density_g_per_ml": 1.293, + "default_unit_class": "mass", + "usda_fdc_id": 167574, + "usda_description": "Desserts, flan, caramel custard, prepared-from-recipe" + }, + { + "canonical_name": "desserts, mousse, chocolate, prepared-from-recipe", + "category": "baking", + "density_g_per_ml": 1.708, + "default_unit_class": "mass", + "usda_fdc_id": 168777, + "usda_description": "Desserts, mousse, chocolate, prepared-from-recipe" + }, + { + "canonical_name": "dill seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.436, + "default_unit_class": "volume", + "usda_fdc_id": 170925, + "usda_description": "Spices, dill seed" + }, + { + "canonical_name": "dill weed spices", + "category": "other", + "density_g_per_ml": 0.206, + "default_unit_class": "volume", + "usda_fdc_id": 171322, + "usda_description": "Spices, dill weed, dried" + }, + { + "canonical_name": "dip, 's, bean, original flavor", + "category": "other", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 171834, + "usda_description": "Dip, FRITO'S, bean, original flavor" + }, + { + "canonical_name": "dip, , salsa con queso, medium", + "category": "other", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174069, + "usda_description": "Dip, TOSTITOS, salsa con queso, medium" + }, + { + "canonical_name": "dip, bean, original flavor", + "category": "other", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 171832, + "usda_description": "Dip, bean, original flavor" + }, + { + "canonical_name": "dip, salsa con queso, cheese and salsa- medium", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174068, + "usda_description": "Dip, salsa con queso, cheese and salsa- medium" + }, + { + "canonical_name": "dishcloth gourd", + "category": "other", + "density_g_per_ml": 0.402, + "default_unit_class": "volume", + "usda_fdc_id": 168414, + "usda_description": "Gourd, dishcloth (towelgourd), raw" + }, + { + "canonical_name": "distilled vinegar", + "category": "condiment", + "density_g_per_ml": 1.009, + "default_unit_class": "volume", + "usda_fdc_id": 172237, + "usda_description": "Vinegar, distilled" + }, + { + "canonical_name": "dock", + "category": "other", + "density_g_per_ml": 0.562, + "default_unit_class": "volume", + "usda_fdc_id": 170076, + "usda_description": "Dock, raw" + }, + { + "canonical_name": "dressing, honey mustard, fat-free", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171046, + "usda_description": "Dressing, honey mustard, fat-free" + }, + { + "canonical_name": "drumstick pods", + "category": "other", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 170483, + "usda_description": "Drumstick pods, raw" + }, + { + "canonical_name": "dry bulgur", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170688, + "usda_description": "Bulgur, dry" + }, + { + "canonical_name": "dry cereals", + "category": "other", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 171665, + "usda_description": "Cereals, WHEATENA, dry" + }, + { + "canonical_name": "dry couscous", + "category": "grain", + "density_g_per_ml": 0.731, + "default_unit_class": "volume", + "usda_fdc_id": 169699, + "usda_description": "Couscous, dry" + }, + { + "canonical_name": "dry with added vitamin d milk", + "category": "dairy", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 170876, + "usda_description": "Milk, dry, whole, with added vitamin D" + }, + { + "canonical_name": "duck, domesticated, meat and skin, cooked, roasted", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172409, + "usda_description": "Duck, domesticated, meat and skin, cooked, roasted" + }, + { + "canonical_name": "duck, domesticated, meat only, cooked, roasted", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172411, + "usda_description": "Duck, domesticated, meat only, cooked, roasted" + }, + { + "canonical_name": "dulce de leche", + "category": "other", + "density_g_per_ml": 1.285, + "default_unit_class": "mass", + "usda_fdc_id": 173461, + "usda_description": "Dulce de Leche" + }, + { + "canonical_name": "durum wheat", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 169721, + "usda_description": "Wheat, durum" + }, + { + "canonical_name": "edamame, frozen, unprepared", + "category": "other", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 168410, + "usda_description": "Edamame, frozen, unprepared" + }, + { + "canonical_name": "edible-podded peas", + "category": "other", + "density_g_per_ml": 0.34, + "default_unit_class": "volume", + "usda_fdc_id": 170010, + "usda_description": "Peas, edible-podded, raw" + }, + { + "canonical_name": "egg dried", + "category": "dairy", + "density_g_per_ml": 0.349, + "default_unit_class": "volume", + "usda_fdc_id": 172188, + "usda_description": "Egg, whole, dried" + }, + { + "canonical_name": "egg dried, stabilized, glucose reduced", + "category": "dairy", + "density_g_per_ml": 0.349, + "default_unit_class": "volume", + "usda_fdc_id": 173425, + "usda_description": "Egg, whole, dried, stabilized, glucose reduced" + }, + { + "canonical_name": "egg raw", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 171287, + "usda_description": "Egg, whole, raw, fresh" + }, + { + "canonical_name": "egg substitute, liquid or frozen, fat free", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173462, + "usda_description": "Egg substitute, liquid or frozen, fat free" + }, + { + "canonical_name": "egg, white powder, stabilized, glucose reduced", + "category": "dairy", + "density_g_per_ml": 0.463, + "default_unit_class": "volume", + "usda_fdc_id": 173427, + "usda_description": "Egg, white, dried, powder, stabilized, glucose reduced" + }, + { + "canonical_name": "egg, white stabilized, glucose reduced", + "category": "dairy", + "density_g_per_ml": 0.463, + "default_unit_class": "volume", + "usda_fdc_id": 170895, + "usda_description": "Egg, white, dried, stabilized, glucose reduced" + }, + { + "canonical_name": "eggnog", + "category": "dairy", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 171258, + "usda_description": "Eggnog" + }, + { + "canonical_name": "eggplant", + "category": "dairy", + "density_g_per_ml": 0.347, + "default_unit_class": "volume", + "usda_fdc_id": 169228, + "usda_description": "Eggplant, raw" + }, + { + "canonical_name": "elderberries", + "category": "other", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 171727, + "usda_description": "Elderberries, raw" + }, + { + "canonical_name": "electrolyte solution fluid replacement", + "category": "other", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 169883, + "usda_description": "Fluid replacement, electrolyte solution (include PEDIALYTE)" + }, + { + "canonical_name": "endive", + "category": "other", + "density_g_per_ml": 0.211, + "default_unit_class": "volume", + "usda_fdc_id": 168412, + "usda_description": "Endive, raw" + }, + { + "canonical_name": "enhanced soymilk", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173765, + "usda_description": "Soymilk (All flavors), enhanced" + }, + { + "canonical_name": "enoki mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.273, + "default_unit_class": "volume", + "usda_fdc_id": 169382, + "usda_description": "Mushrooms, enoki, raw" + }, + { + "canonical_name": "enriched semolina", + "category": "other", + "density_g_per_ml": 0.706, + "default_unit_class": "volume", + "usda_fdc_id": 169715, + "usda_description": "Semolina, enriched" + }, + { + "canonical_name": "eppaw", + "category": "other", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 170078, + "usda_description": "Eppaw, raw" + }, + { + "canonical_name": "european black currants", + "category": "other", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 173963, + "usda_description": "Currants, european black, raw" + }, + { + "canonical_name": "fat free ice cream, no sugar added, flavors other than chocolate", + "category": "baking", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 173467, + "usda_description": "Fat free ice cream, no sugar added, flavors other than chocolate" + }, + { + "canonical_name": "fat free parmesan cheese topping", + "category": "dairy", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 172206, + "usda_description": "Parmesan cheese topping, fat free" + }, + { + "canonical_name": "fat free sour cream", + "category": "dairy", + "density_g_per_ml": 0.892, + "default_unit_class": "volume", + "usda_fdc_id": 173444, + "usda_description": "Sour cream, fat free" + }, + { + "canonical_name": "feijoa", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 168176, + "usda_description": "Feijoa, raw" + }, + { + "canonical_name": "fennel seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.399, + "default_unit_class": "volume", + "usda_fdc_id": 171323, + "usda_description": "Spices, fennel seed" + }, + { + "canonical_name": "fenugreek seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.751, + "default_unit_class": "volume", + "usda_fdc_id": 171324, + "usda_description": "Spices, fenugreek seed" + }, + { + "canonical_name": "feta cheese", + "category": "dairy", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 173420, + "usda_description": "Cheese, feta" + }, + { + "canonical_name": "figs stewed", + "category": "other", + "density_g_per_ml": 1.095, + "default_unit_class": "mass", + "usda_fdc_id": 174666, + "usda_description": "Figs, dried, stewed" + }, + { + "canonical_name": "figs uncooked", + "category": "other", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 174665, + "usda_description": "Figs, dried, uncooked" + }, + { + "canonical_name": "figs, canned, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 173025, + "usda_description": "Figs, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "figs, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.095, + "default_unit_class": "mass", + "usda_fdc_id": 173024, + "usda_description": "Figs, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "figs, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 173023, + "usda_description": "Figs, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "figs, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173022, + "usda_description": "Figs, canned, water pack, solids and liquids" + }, + { + "canonical_name": "fish broth", + "category": "meat", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171606, + "usda_description": "Fish broth" + }, + { + "canonical_name": "fish oil, menhaden, fully hydrogenated", + "category": "meat", + "density_g_per_ml": 0.875, + "default_unit_class": "volume", + "usda_fdc_id": 172342, + "usda_description": "Fish oil, menhaden, fully hydrogenated" + }, + { + "canonical_name": "fish, caviar, black and red, granular", + "category": "meat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 174188, + "usda_description": "Fish, caviar, black and red, granular" + }, + { + "canonical_name": "fish, herring, atlantic, pickled", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 175118, + "usda_description": "Fish, herring, Atlantic, pickled" + }, + { + "canonical_name": "fish, mackerel, jack, canned, drained solids", + "category": "meat", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 175121, + "usda_description": "Fish, mackerel, jack, canned, drained solids" + }, + { + "canonical_name": "fish, mackerel, salted", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 168149, + "usda_description": "Fish, mackerel, salted" + }, + { + "canonical_name": "fish, roe, mixed species", + "category": "meat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 175132, + "usda_description": "Fish, roe, mixed species, raw" + }, + { + "canonical_name": "fish, salmon, chinook, smoked", + "category": "meat", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 173687, + "usda_description": "Fish, salmon, chinook, smoked" + }, + { + "canonical_name": "fish, sardine, atlantic, canned in oil, drained solids with bone", + "category": "meat", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 175139, + "usda_description": "Fish, sardine, Atlantic, canned in oil, drained solids with bone" + }, + { + "canonical_name": "fish, sardine, pacific, canned in tomato sauce, drained solids with bone", + "category": "produce-vegetable", + "density_g_per_ml": 0.376, + "default_unit_class": "volume", + "usda_fdc_id": 175140, + "usda_description": "Fish, sardine, Pacific, canned in tomato sauce, drained solids with bone" + }, + { + "canonical_name": "fish, sturgeon, mixed species, cooked, dry heat", + "category": "meat", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 175148, + "usda_description": "Fish, sturgeon, mixed species, cooked, dry heat" + }, + { + "canonical_name": "fish, tuna, light, canned in oil, drained solids", + "category": "meat", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 173708, + "usda_description": "Fish, tuna, light, canned in oil, drained solids" + }, + { + "canonical_name": "fish, tuna, light, canned in water, drained solids", + "category": "beverage", + "density_g_per_ml": 0.651, + "default_unit_class": "volume", + "usda_fdc_id": 173709, + "usda_description": "Fish, tuna, light, canned in water, drained solids (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "fish, whitefish, mixed species, smoked", + "category": "meat", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 173712, + "usda_description": "Fish, whitefish, mixed species, smoked" + }, + { + "canonical_name": "flaxseed seeds", + "category": "nut-seed", + "density_g_per_ml": 0.615, + "default_unit_class": "volume", + "usda_fdc_id": 169414, + "usda_description": "Seeds, flaxseed" + }, + { + "canonical_name": "flesh and skin potatoes", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170026, + "usda_description": "Potatoes, flesh and skin, raw" + }, + { + "canonical_name": "florida grapefruit pink and red", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 174675, + "usda_description": "Grapefruit, raw, pink and red, Florida" + }, + { + "canonical_name": "florida grapefruit white", + "category": "produce-fruit", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 173034, + "usda_description": "Grapefruit, raw, white, Florida" + }, + { + "canonical_name": "flower clusters broccoli", + "category": "produce-vegetable", + "density_g_per_ml": 0.3, + "default_unit_class": "volume", + "usda_fdc_id": 169330, + "usda_description": "Broccoli, flower clusters, raw" + }, + { + "canonical_name": "fontina cheese", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170843, + "usda_description": "Cheese, fontina" + }, + { + "canonical_name": "frankfurter, beef, low fat", + "category": "meat", + "density_g_per_ml": 0.638, + "default_unit_class": "volume", + "usda_fdc_id": 167696, + "usda_description": "Frankfurter, beef, low fat" + }, + { + "canonical_name": "frankfurter, meat and poultry, low fat", + "category": "other", + "density_g_per_ml": 0.604, + "default_unit_class": "volume", + "usda_fdc_id": 169866, + "usda_description": "Frankfurter, meat and poultry, low fat" + }, + { + "canonical_name": "french vanilla creamer", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175232, + "usda_description": "SILK French Vanilla Creamer" + }, + { + "canonical_name": "frijoles rojos volteados", + "category": "beverage", + "density_g_per_ml": 1.0, + "default_unit_class": "volume", + "usda_fdc_id": 172466, + "usda_description": "Frijoles rojos volteados (Refried beans, red, canned)" + }, + { + "canonical_name": "from kid's menu macaroni n' cheese plate", + "category": "dairy", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 167671, + "usda_description": "CRACKER BARREL, macaroni n' cheese plate, from kid's menu" + }, + { + "canonical_name": "frozen concentrate cranberry juice cocktail", + "category": "beverage", + "density_g_per_ml": 1.224, + "default_unit_class": "mass", + "usda_fdc_id": 173653, + "usda_description": "Cranberry juice cocktail, frozen concentrate" + }, + { + "canonical_name": "frozen edamame", + "category": "other", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 168411, + "usda_description": "Edamame, frozen, prepared" + }, + { + "canonical_name": "frozen entree macaroni and cheese", + "category": "dairy", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 173342, + "usda_description": "Macaroni and cheese, frozen entree" + }, + { + "canonical_name": "frozen loganberries", + "category": "other", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 169088, + "usda_description": "Loganberries, frozen" + }, + { + "canonical_name": "frozen melon balls", + "category": "other", + "density_g_per_ml": 0.731, + "default_unit_class": "volume", + "usda_fdc_id": 169912, + "usda_description": "Melon balls, frozen" + }, + { + "canonical_name": "frozen novelties, ice type, lime", + "category": "produce-fruit", + "density_g_per_ml": 0.837, + "default_unit_class": "volume", + "usda_fdc_id": 169638, + "usda_description": "Frozen novelties, ice type, lime" + }, + { + "canonical_name": "frozen novelties, ice type, pineapple-coconut", + "category": "produce-fruit", + "density_g_per_ml": 0.837, + "default_unit_class": "volume", + "usda_fdc_id": 168847, + "usda_description": "Frozen novelties, ice type, pineapple-coconut" + }, + { + "canonical_name": "frozen novelties, juice type, orange", + "category": "produce-fruit", + "density_g_per_ml": 1.008, + "default_unit_class": "volume", + "usda_fdc_id": 168113, + "usda_description": "Frozen novelties, juice type, orange" + }, + { + "canonical_name": "frozen yogurts, chocolate, nonfat milk, sweetened without sugar", + "category": "baking", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 168103, + "usda_description": "Frozen yogurts, chocolate, nonfat milk, sweetened without sugar" + }, + { + "canonical_name": "frozen yogurts, chocolate, soft-serve", + "category": "baking", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 168848, + "usda_description": "Frozen yogurts, chocolate, soft-serve" + }, + { + "canonical_name": "frozen yogurts, flavors other than chocolate", + "category": "baking", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 168105, + "usda_description": "Frozen yogurts, flavors other than chocolate" + }, + { + "canonical_name": "frozen yogurts, vanilla, soft-serve", + "category": "baking", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 168815, + "usda_description": "Frozen yogurts, vanilla, soft-serve" + }, + { + "canonical_name": "fruit chayote", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170402, + "usda_description": "Chayote, fruit, raw" + }, + { + "canonical_name": "fruit cocktail, , canned, extra heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.099, + "default_unit_class": "mass", + "usda_fdc_id": 173029, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra heavy syrup, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, , canned, extra light syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 173026, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, extra light syrup, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, , canned, heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 173028, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, heavy syrup, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, , canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 174668, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, juice pack, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, , canned, light syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 173027, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, light syrup, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, , canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 174667, + "usda_description": "Fruit cocktail, (peach and pineapple and pear and grape and cherry), canned, water pack, solids and liquids" + }, + { + "canonical_name": "fruit cocktail, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.905, + "default_unit_class": "volume", + "usda_fdc_id": 168178, + "usda_description": "Fruit cocktail, canned, heavy syrup, drained" + }, + { + "canonical_name": "fruit juice smoothie", + "category": "beverage", + "density_g_per_ml": 1.024, + "default_unit_class": "volume", + "usda_fdc_id": 167795, + "usda_description": "Fruit juice smoothie, NAKED JUICE, MIGHTY MANGO" + }, + { + "canonical_name": "fruit salad, , canned, extra heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.095, + "default_unit_class": "mass", + "usda_fdc_id": 174672, + "usda_description": "Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, extra heavy syrup, solids and liquids" + }, + { + "canonical_name": "fruit salad, , canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 174670, + "usda_description": "Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, juice pack, solids and liquids" + }, + { + "canonical_name": "fruit salad, , canned, light syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 174671, + "usda_description": "Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, light syrup, solids and liquids" + }, + { + "canonical_name": "fruit salad, , canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174669, + "usda_description": "Fruit salad, (peach and pear and apricot and pineapple and cherry), canned, water pack, solids and liquids" + }, + { + "canonical_name": "fruit salad, , tropical, canned, heavy syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 167764, + "usda_description": "Fruit salad, (pineapple and papaya and banana and guava), tropical, canned, heavy syrup, solids and liquids" + }, + { + "canonical_name": "fruit syrup", + "category": "condiment", + "density_g_per_ml": 1.416, + "default_unit_class": "mass", + "usda_fdc_id": 167953, + "usda_description": "Fruit syrup" + }, + { + "canonical_name": "full-fat soy flour", + "category": "baking", + "density_g_per_ml": 0.353, + "default_unit_class": "volume", + "usda_fdc_id": 174273, + "usda_description": "Soy flour, full-fat, raw" + }, + { + "canonical_name": "garden cress", + "category": "other", + "density_g_per_ml": 0.211, + "default_unit_class": "volume", + "usda_fdc_id": 168407, + "usda_description": "Cress, garden, raw" + }, + { + "canonical_name": "garland chrysanthemum", + "category": "other", + "density_g_per_ml": 0.106, + "default_unit_class": "volume", + "usda_fdc_id": 169995, + "usda_description": "Chrysanthemum, garland, raw" + }, + { + "canonical_name": "garlic", + "category": "produce-vegetable", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169230, + "usda_description": "Garlic, raw" + }, + { + "canonical_name": "garlic powder spices", + "category": "spice", + "density_g_per_ml": 0.642, + "default_unit_class": "volume", + "usda_fdc_id": 171325, + "usda_description": "Spices, garlic powder" + }, + { + "canonical_name": "ginger root", + "category": "spice", + "density_g_per_ml": 0.406, + "default_unit_class": "volume", + "usda_fdc_id": 169231, + "usda_description": "Ginger root, raw" + }, + { + "canonical_name": "ginger root, pickled, canned, with artificial sweetener", + "category": "spice", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 169765, + "usda_description": "Ginger root, pickled, canned, with artificial sweetener" + }, + { + "canonical_name": "ginger spices", + "category": "spice", + "density_g_per_ml": 0.358, + "default_unit_class": "volume", + "usda_fdc_id": 170926, + "usda_description": "Spices, ginger, ground" + }, + { + "canonical_name": "goji berries", + "category": "other", + "density_g_per_ml": 0.379, + "default_unit_class": "volume", + "usda_fdc_id": 173032, + "usda_description": "Goji berries, dried" + }, + { + "canonical_name": "goose fat", + "category": "other", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173572, + "usda_description": "Fat, goose" + }, + { + "canonical_name": "goose, domesticated, meat and skin, cooked, roasted", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 172412, + "usda_description": "Goose, domesticated, meat and skin, cooked, roasted" + }, + { + "canonical_name": "gooseberries", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 173030, + "usda_description": "Gooseberries, raw" + }, + { + "canonical_name": "gooseberries, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 173031, + "usda_description": "Gooseberries, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "gourd, dishcloth drained, with salt", + "category": "spice", + "density_g_per_ml": 0.752, + "default_unit_class": "volume", + "usda_fdc_id": 168530, + "usda_description": "Gourd, dishcloth (towelgourd), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "gourd, dishcloth drained, without salt", + "category": "spice", + "density_g_per_ml": 0.752, + "default_unit_class": "volume", + "usda_fdc_id": 168415, + "usda_description": "Gourd, dishcloth (towelgourd), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "gourd, white-flowered drained, with salt", + "category": "spice", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 169353, + "usda_description": "Gourd, white-flowered (calabash), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "gourd, white-flowered drained, without salt", + "category": "spice", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 169233, + "usda_description": "Gourd, white-flowered (calabash), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "grape juice, canned or bottled, unsweetened, with added ascorbic acid", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 173041, + "usda_description": "Grape juice, canned or bottled, unsweetened, with added ascorbic acid" + }, + { + "canonical_name": "grape juice, canned or bottled, unsweetened, without added ascorbic acid", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 173042, + "usda_description": "Grape juice, canned or bottled, unsweetened, without added ascorbic acid" + }, + { + "canonical_name": "grapefruit juice, pink or red, with added calcium", + "category": "beverage", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 173038, + "usda_description": "Grapefruit juice, pink or red, with added calcium" + }, + { + "canonical_name": "grapefruit juice, white, bottled, unsweetened", + "category": "beverage", + "density_g_per_ml": 1.05, + "default_unit_class": "mass", + "usda_fdc_id": 168189, + "usda_description": "Grapefruit juice, white, bottled, unsweetened, OCEAN SPRAY" + }, + { + "canonical_name": "grapefruit juice, white, canned or bottled, unsweetened", + "category": "beverage", + "density_g_per_ml": 1.063, + "default_unit_class": "mass", + "usda_fdc_id": 174678, + "usda_description": "Grapefruit juice, white, canned or bottled, unsweetened" + }, + { + "canonical_name": "grapefruit juice, white, canned, sweetened", + "category": "beverage", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 174679, + "usda_description": "Grapefruit juice, white, canned, sweetened" + }, + { + "canonical_name": "grapefruit, sections, canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 173036, + "usda_description": "Grapefruit, sections, canned, juice pack, solids and liquids" + }, + { + "canonical_name": "grapefruit, sections, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 173037, + "usda_description": "Grapefruit, sections, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "grapefruit, sections, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173035, + "usda_description": "Grapefruit, sections, canned, water pack, solids and liquids" + }, + { + "canonical_name": "grapes, canned, thompson seedless, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 174685, + "usda_description": "Grapes, canned, thompson seedless, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "grapes, canned, thompson seedless, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174684, + "usda_description": "Grapes, canned, thompson seedless, water pack, solids and liquids" + }, + { + "canonical_name": "grapeseed oil", + "category": "produce-fruit", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171028, + "usda_description": "Oil, grapeseed" + }, + { + "canonical_name": "gravy, 's, chicken", + "category": "meat", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 171600, + "usda_description": "Gravy, CAMPBELL'S, chicken" + }, + { + "canonical_name": "gravy, au jus, canned", + "category": "other", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 171168, + "usda_description": "Gravy, au jus, canned" + }, + { + "canonical_name": "gravy, au jus, dry", + "category": "other", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 171169, + "usda_description": "Gravy, au jus, dry" + }, + { + "canonical_name": "gravy, beef, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 171564, + "usda_description": "Gravy, beef, canned, ready-to-serve" + }, + { + "canonical_name": "gravy, brown, dry", + "category": "other", + "density_g_per_ml": 0.406, + "default_unit_class": "volume", + "usda_fdc_id": 171565, + "usda_description": "Gravy, brown, dry" + }, + { + "canonical_name": "gravy, chicken, canned or bottled, ready-to-serve", + "category": "meat", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 171566, + "usda_description": "Gravy, chicken, canned or bottled, ready-to-serve" + }, + { + "canonical_name": "gravy, chicken, dry", + "category": "meat", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 171567, + "usda_description": "Gravy, chicken, dry" + }, + { + "canonical_name": "gravy, home style, classic chicken", + "category": "meat", + "density_g_per_ml": 0.976, + "default_unit_class": "volume", + "usda_fdc_id": 174072, + "usda_description": "Gravy, HEINZ Home Style, classic chicken" + }, + { + "canonical_name": "gravy, meat or poultry, low sodium", + "category": "other", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 171598, + "usda_description": "Gravy, meat or poultry, low sodium, prepared" + }, + { + "canonical_name": "gravy, mushroom, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 171170, + "usda_description": "Gravy, mushroom, canned" + }, + { + "canonical_name": "gravy, onion, dry, mix", + "category": "produce-vegetable", + "density_g_per_ml": 0.101, + "default_unit_class": "volume", + "usda_fdc_id": 171172, + "usda_description": "Gravy, onion, dry, mix" + }, + { + "canonical_name": "gravy, turkey, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.009, + "default_unit_class": "volume", + "usda_fdc_id": 171568, + "usda_description": "Gravy, turkey, canned, ready-to-serve" + }, + { + "canonical_name": "gravy, unspecified type, dry", + "category": "other", + "density_g_per_ml": 0.106, + "default_unit_class": "volume", + "usda_fdc_id": 171570, + "usda_description": "Gravy, unspecified type, dry" + }, + { + "canonical_name": "green cauliflower", + "category": "produce-vegetable", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 169389, + "usda_description": "Cauliflower, green, raw" + }, + { + "canonical_name": "green kiwifruit", + "category": "other", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168153, + "usda_description": "Kiwifruit, green, raw" + }, + { + "canonical_name": "green leaf lettuce", + "category": "produce-vegetable", + "density_g_per_ml": 0.152, + "default_unit_class": "volume", + "usda_fdc_id": 169249, + "usda_description": "Lettuce, green leaf, raw" + }, + { + "canonical_name": "green peas", + "category": "other", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170419, + "usda_description": "Peas, green, raw" + }, + { + "canonical_name": "green soybeans", + "category": "legume", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169282, + "usda_description": "Soybeans, green, raw" + }, + { + "canonical_name": "green tomatoes", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170456, + "usda_description": "Tomatoes, green, raw" + }, + { + "canonical_name": "grenadine syrups", + "category": "condiment", + "density_g_per_ml": 1.356, + "default_unit_class": "mass", + "usda_fdc_id": 168088, + "usda_description": "Syrups, grenadine" + }, + { + "canonical_name": "groundcherries", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 173043, + "usda_description": "Groundcherries, (cape-gooseberries or poha), raw" + }, + { + "canonical_name": "gruyere cheese", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 171242, + "usda_description": "Cheese, gruyere" + }, + { + "canonical_name": "guava nectar, canned, with added ascorbic acid", + "category": "other", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 167784, + "usda_description": "Guava nectar, canned, with added ascorbic acid" + }, + { + "canonical_name": "guava nectar, with sucralose, canned", + "category": "other", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 168210, + "usda_description": "Guava nectar, with sucralose, canned" + }, + { + "canonical_name": "ham and cheese spread", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171629, + "usda_description": "Ham and cheese spread" + }, + { + "canonical_name": "ham salad spread", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173866, + "usda_description": "Ham salad spread" + }, + { + "canonical_name": "ham, turkey, sliced, extra lean, prepackaged or deli", + "category": "meat", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 168092, + "usda_description": "Ham, turkey, sliced, extra lean, prepackaged or deli" + }, + { + "canonical_name": "hamburger pickle relish", + "category": "meat", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 169386, + "usda_description": "Pickle relish, hamburger" + }, + { + "canonical_name": "hard red spring wheat", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168889, + "usda_description": "Wheat, hard red spring" + }, + { + "canonical_name": "hard red winter wheat", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168890, + "usda_description": "Wheat, hard red winter" + }, + { + "canonical_name": "hard white wheat", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 169719, + "usda_description": "Wheat, hard white" + }, + { + "canonical_name": "hard-boiled egg cooked", + "category": "oil-fat", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 173424, + "usda_description": "Egg, whole, cooked, hard-boiled" + }, + { + "canonical_name": "hawaii mountain yam", + "category": "other", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 168432, + "usda_description": "Mountain yam, hawaii, raw" + }, + { + "canonical_name": "hazelnut creamer", + "category": "nut-seed", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173782, + "usda_description": "SILK Hazelnut Creamer" + }, + { + "canonical_name": "hazelnut oil", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171427, + "usda_description": "Oil, hazelnut" + }, + { + "canonical_name": "hazelnuts or filberts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.458, + "default_unit_class": "volume", + "usda_fdc_id": 170581, + "usda_description": "Nuts, hazelnuts or filberts" + }, + { + "canonical_name": "hearty beef barley soup 's", + "category": "grain", + "density_g_per_ml": 0.871, + "default_unit_class": "volume", + "usda_fdc_id": 174552, + "usda_description": "CAMPBELL'S CHUNKY, Hearty Beef Barley Soup" + }, + { + "canonical_name": "herring fish oil", + "category": "meat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172340, + "usda_description": "Fish oil, herring" + }, + { + "canonical_name": "hickorynuts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170177, + "usda_description": "Nuts, hickorynuts, dried" + }, + { + "canonical_name": "home prepared corn pudding", + "category": "other", + "density_g_per_ml": 1.063, + "default_unit_class": "mass", + "usda_fdc_id": 170492, + "usda_description": "Corn pudding, home prepared" + }, + { + "canonical_name": "home prepared hummus", + "category": "other", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 172454, + "usda_description": "Hummus, home prepared" + }, + { + "canonical_name": "home-prepared potato salad", + "category": "produce-vegetable", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 169269, + "usda_description": "Potato salad, home-prepared" + }, + { + "canonical_name": "hominy, canned, white", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169701, + "usda_description": "Hominy, canned, white" + }, + { + "canonical_name": "hominy, canned, yellow", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169752, + "usda_description": "Hominy, canned, yellow" + }, + { + "canonical_name": "honey", + "category": "condiment", + "density_g_per_ml": 1.427, + "default_unit_class": "mass", + "usda_fdc_id": 169640, + "usda_description": "Honey" + }, + { + "canonical_name": "honeydew melons", + "category": "condiment", + "density_g_per_ml": 0.733, + "default_unit_class": "volume", + "usda_fdc_id": 169911, + "usda_description": "Melons, honeydew, raw" + }, + { + "canonical_name": "horned melon", + "category": "other", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 167791, + "usda_description": "Horned melon (Kiwano)" + }, + { + "canonical_name": "horseradish", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173472, + "usda_description": "Horseradish, prepared" + }, + { + "canonical_name": "hot dog pickle relish", + "category": "other", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 168560, + "usda_description": "Pickle relish, hot dog" + }, + { + "canonical_name": "hulled barley", + "category": "grain", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 170283, + "usda_description": "Barley, hulled" + }, + { + "canonical_name": "hyacinth-beans, immature seeds drained, with salt", + "category": "legume", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 168533, + "usda_description": "Hyacinth-beans, immature seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "hyacinth-beans, immature seeds drained, without salt", + "category": "legume", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 169235, + "usda_description": "Hyacinth-beans, immature seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "ice cream, soft serve, chocolate", + "category": "baking", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 173465, + "usda_description": "Ice cream, soft serve, chocolate" + }, + { + "canonical_name": "ice creams, chocolate, rich", + "category": "baking", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 168136, + "usda_description": "Ice creams, chocolate, rich" + }, + { + "canonical_name": "ice creams, french vanilla, soft-serve", + "category": "baking", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 167981, + "usda_description": "Ice creams, french vanilla, soft-serve" + }, + { + "canonical_name": "ice creams, regular, low carbohydrate, vanilla", + "category": "baking", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170671, + "usda_description": "Ice creams, regular, low carbohydrate, vanilla" + }, + { + "canonical_name": "ice creams, vanilla, fat free", + "category": "baking", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170659, + "usda_description": "Ice creams, vanilla, fat free" + }, + { + "canonical_name": "ice creams, vanilla, rich", + "category": "baking", + "density_g_per_ml": 0.905, + "default_unit_class": "volume", + "usda_fdc_id": 167573, + "usda_description": "Ice creams, vanilla, rich" + }, + { + "canonical_name": "iceberg lettuce", + "category": "produce-vegetable", + "density_g_per_ml": 0.273, + "default_unit_class": "volume", + "usda_fdc_id": 169248, + "usda_description": "Lettuce, iceberg (includes crisphead types), raw" + }, + { + "canonical_name": "imitation cheese, american or cheddar, low cholesterol", + "category": "dairy", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 168089, + "usda_description": "Imitation cheese, american or cheddar, low cholesterol" + }, + { + "canonical_name": "immature seeds broadbeans", + "category": "legume", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 170377, + "usda_description": "Broadbeans, immature seeds, raw" + }, + { + "canonical_name": "immature seeds cowpeas", + "category": "nut-seed", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 169220, + "usda_description": "Cowpeas (blackeyes), immature seeds, raw" + }, + { + "canonical_name": "immature seeds hyacinth-beans", + "category": "legume", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 169234, + "usda_description": "Hyacinth-beans, immature seeds, raw" + }, + { + "canonical_name": "immature seeds lima beans", + "category": "legume", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 168396, + "usda_description": "Lima beans, immature seeds, raw" + }, + { + "canonical_name": "immature seeds pigeonpeas", + "category": "nut-seed", + "density_g_per_ml": 0.651, + "default_unit_class": "volume", + "usda_fdc_id": 170025, + "usda_description": "Pigeonpeas, immature seeds, raw" + }, + { + "canonical_name": "immature seeds winged beans", + "category": "legume", + "density_g_per_ml": 0.186, + "default_unit_class": "volume", + "usda_fdc_id": 170476, + "usda_description": "Winged beans, immature seeds, raw" + }, + { + "canonical_name": "irishmoss seaweed", + "category": "other", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 168456, + "usda_description": "Seaweed, irishmoss, raw" + }, + { + "canonical_name": "jackfruit", + "category": "other", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 174687, + "usda_description": "Jackfruit, raw" + }, + { + "canonical_name": "jackfruit, canned, syrup pack", + "category": "condiment", + "density_g_per_ml": 0.752, + "default_unit_class": "volume", + "usda_fdc_id": 168190, + "usda_description": "Jackfruit, canned, syrup pack" + }, + { + "canonical_name": "jalapeno peppers", + "category": "spice", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 168576, + "usda_description": "Peppers, jalapeno, raw" + }, + { + "canonical_name": "jams and preserves", + "category": "condiment", + "density_g_per_ml": 1.353, + "default_unit_class": "mass", + "usda_fdc_id": 169641, + "usda_description": "Jams and preserves" + }, + { + "canonical_name": "jams and preserves, no sugar , any flavor", + "category": "baking", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169058, + "usda_description": "Jams and preserves, no sugar (with sodium saccharin), any flavor" + }, + { + "canonical_name": "jams, preserves, marmalade, reduced sugar", + "category": "baking", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 167706, + "usda_description": "Jams, preserves, marmalade, reduced sugar" + }, + { + "canonical_name": "jams, preserves, marmalades, sweetened with fruit juice", + "category": "beverage", + "density_g_per_ml": 1.285, + "default_unit_class": "mass", + "usda_fdc_id": 170280, + "usda_description": "Jams, preserves, marmalades, sweetened with fruit juice" + }, + { + "canonical_name": "japanese style pickled cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169890, + "usda_description": "Cabbage, japanese style, fresh, pickled" + }, + { + "canonical_name": "java-plum", + "category": "other", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168150, + "usda_description": "Java-plum, (jambolan), raw" + }, + { + "canonical_name": "jellies, no sugar , any flavors", + "category": "baking", + "density_g_per_ml": 1.276, + "default_unit_class": "mass", + "usda_fdc_id": 169879, + "usda_description": "Jellies, no sugar (with sodium saccharin), any flavors" + }, + { + "canonical_name": "jellies, reduced sugar, home preserved", + "category": "baking", + "density_g_per_ml": 1.276, + "default_unit_class": "mass", + "usda_fdc_id": 168145, + "usda_description": "Jellies, reduced sugar, home preserved" + }, + { + "canonical_name": "jellyfish salted", + "category": "condiment", + "density_g_per_ml": 0.245, + "default_unit_class": "volume", + "usda_fdc_id": 168129, + "usda_description": "Jellyfish, dried, salted" + }, + { + "canonical_name": "jerusalem-artichokes", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169236, + "usda_description": "Jerusalem-artichokes, raw" + }, + { + "canonical_name": "jew's ear", + "category": "other", + "density_g_per_ml": 0.418, + "default_unit_class": "volume", + "usda_fdc_id": 169237, + "usda_description": "Jew's ear, (pepeao), raw" + }, + { + "canonical_name": "juice, apple and grape blend, with added ascorbic acid", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 168197, + "usda_description": "Juice, apple and grape blend, with added ascorbic acid" + }, + { + "canonical_name": "juice, apple, grape and pear blend, with added ascorbic acid and calcium", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 168198, + "usda_description": "Juice, apple, grape and pear blend, with added ascorbic acid and calcium" + }, + { + "canonical_name": "jute, potherb drained, with salt", + "category": "spice", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 169354, + "usda_description": "Jute, potherb, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "jute, potherb drained, without salt", + "category": "spice", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 168420, + "usda_description": "Jute, potherb, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "kale, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169356, + "usda_description": "Kale, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "kale, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169240, + "usda_description": "Kale, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "kale, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.858, + "default_unit_class": "volume", + "usda_fdc_id": 169239, + "usda_description": "Kale, frozen, unprepared" + }, + { + "canonical_name": "kanpyo", + "category": "other", + "density_g_per_ml": 0.228, + "default_unit_class": "volume", + "usda_fdc_id": 169241, + "usda_description": "Kanpyo, (dried gourd strips)" + }, + { + "canonical_name": "kefir, lowfat, plain", + "category": "other", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 170904, + "usda_description": "Kefir, lowfat, plain, LIFEWAY" + }, + { + "canonical_name": "kefir, lowfat, strawberry", + "category": "produce-fruit", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 171301, + "usda_description": "Kefir, lowfat, strawberry, LIFEWAY" + }, + { + "canonical_name": "kelp seaweed", + "category": "other", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 168457, + "usda_description": "Seaweed, kelp, raw" + }, + { + "canonical_name": "kimchi cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170392, + "usda_description": "Cabbage, kimchi" + }, + { + "canonical_name": "kohlrabi", + "category": "other", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168424, + "usda_description": "Kohlrabi, raw" + }, + { + "canonical_name": "lard", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171401, + "usda_description": "Lard" + }, + { + "canonical_name": "lard and vegetable oil shortening industrial", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173566, + "usda_description": "Shortening industrial, lard and vegetable oil" + }, + { + "canonical_name": "lasagna, cheese, frozen", + "category": "dairy", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 173333, + "usda_description": "Lasagna, cheese, frozen, prepared" + }, + { + "canonical_name": "lasagna, cheese, frozen, unprepared", + "category": "dairy", + "density_g_per_ml": 1.002, + "default_unit_class": "volume", + "usda_fdc_id": 168960, + "usda_description": "Lasagna, cheese, frozen, unprepared" + }, + { + "canonical_name": "lasagna, vegetable, frozen, baked", + "category": "other", + "density_g_per_ml": 0.955, + "default_unit_class": "volume", + "usda_fdc_id": 172106, + "usda_description": "Lasagna, Vegetable, frozen, baked" + }, + { + "canonical_name": "laver seaweed", + "category": "other", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 168458, + "usda_description": "Seaweed, laver, raw" + }, + { + "canonical_name": "leafy tips balsam-pear", + "category": "produce-fruit", + "density_g_per_ml": 0.203, + "default_unit_class": "volume", + "usda_fdc_id": 168391, + "usda_description": "Balsam-pear (bitter gourd), leafy tips, raw" + }, + { + "canonical_name": "leafy tips cowpeas", + "category": "other", + "density_g_per_ml": 0.152, + "default_unit_class": "volume", + "usda_fdc_id": 169224, + "usda_description": "Cowpeas, leafy tips, raw" + }, + { + "canonical_name": "leeks", + "category": "other", + "density_g_per_ml": 0.376, + "default_unit_class": "volume", + "usda_fdc_id": 169246, + "usda_description": "Leeks, (bulb and lower leaf-portion), raw" + }, + { + "canonical_name": "leeks, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 168535, + "usda_description": "Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "leeks, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 168426, + "usda_description": "Leeks, (bulb and lower leaf-portion), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "lemon grass", + "category": "produce-fruit", + "density_g_per_ml": 0.304, + "default_unit_class": "volume", + "usda_fdc_id": 168573, + "usda_description": "Lemon grass (citronella), raw" + }, + { + "canonical_name": "lemon juice", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 167747, + "usda_description": "Lemon juice, raw" + }, + { + "canonical_name": "lemon peel", + "category": "produce-fruit", + "density_g_per_ml": 0.406, + "default_unit_class": "volume", + "usda_fdc_id": 167749, + "usda_description": "Lemon peel, raw" + }, + { + "canonical_name": "lemonade, frozen concentrate, pink", + "category": "produce-fruit", + "density_g_per_ml": 1.231, + "default_unit_class": "mass", + "usda_fdc_id": 173666, + "usda_description": "Lemonade, frozen concentrate, pink" + }, + { + "canonical_name": "lemonade, frozen concentrate, white", + "category": "produce-fruit", + "density_g_per_ml": 1.234, + "default_unit_class": "mass", + "usda_fdc_id": 173216, + "usda_description": "Lemonade, frozen concentrate, white" + }, + { + "canonical_name": "lemonade, frozen concentrate, white, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 173217, + "usda_description": "Lemonade, frozen concentrate, white, prepared with water" + }, + { + "canonical_name": "lemonade, powder, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.116, + "default_unit_class": "mass", + "usda_fdc_id": 174859, + "usda_description": "Lemonade, powder, prepared with water" + }, + { + "canonical_name": "lemons without peel", + "category": "produce-fruit", + "density_g_per_ml": 0.896, + "default_unit_class": "volume", + "usda_fdc_id": 167746, + "usda_description": "Lemons, raw, without peel" + }, + { + "canonical_name": "lentils", + "category": "legume", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 172420, + "usda_description": "Lentils, raw" + }, + { + "canonical_name": "light buttery spread margarine-like spread", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 172372, + "usda_description": "Margarine-like spread, SMART BALANCE Light Buttery Spread" + }, + { + "canonical_name": "light ice cream, soft serve, blended with cookie pieces", + "category": "dairy", + "density_g_per_ml": 0.95, + "default_unit_class": "volume", + "usda_fdc_id": 172085, + "usda_description": "Light Ice Cream, soft serve, blended with cookie pieces" + }, + { + "canonical_name": "light ice cream, soft serve, blended with milk chocolate candies", + "category": "baking", + "density_g_per_ml": 0.981, + "default_unit_class": "volume", + "usda_fdc_id": 173324, + "usda_description": "Light Ice Cream, soft serve, blended with milk chocolate candies" + }, + { + "canonical_name": "light rye flour", + "category": "baking", + "density_g_per_ml": 0.431, + "default_unit_class": "volume", + "usda_fdc_id": 168887, + "usda_description": "Rye flour, light" + }, + { + "canonical_name": "light sour cream", + "category": "dairy", + "density_g_per_ml": 0.892, + "default_unit_class": "volume", + "usda_fdc_id": 173443, + "usda_description": "Sour cream, light" + }, + { + "canonical_name": "light spread margarine-like spread", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171035, + "usda_description": "Margarine-like spread, BENECOL Light Spread" + }, + { + "canonical_name": "lima beans, immature seeds drained, with salt", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169316, + "usda_description": "Lima beans, immature seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "lima beans, immature seeds drained, without salt", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169135, + "usda_description": "Lima beans, immature seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "lima beans, immature seeds, canned, no salt added, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 169317, + "usda_description": "Lima beans, immature seeds, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "lima beans, immature seeds, canned, regular pack, solids and liquids", + "category": "legume", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 169136, + "usda_description": "Lima beans, immature seeds, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, baby drained, with salt", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169318, + "usda_description": "Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, baby drained, without salt", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169956, + "usda_description": "Lima beans, immature seeds, frozen, baby, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, baby, unprepared", + "category": "legume", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 169955, + "usda_description": "Lima beans, immature seeds, frozen, baby, unprepared" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, fordhook drained, with salt", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168498, + "usda_description": "Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, fordhook drained, without salt", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169954, + "usda_description": "Lima beans, immature seeds, frozen, fordhook, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "lima beans, immature seeds, frozen, fordhook, unprepared", + "category": "legume", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169953, + "usda_description": "Lima beans, immature seeds, frozen, fordhook, unprepared" + }, + { + "canonical_name": "lima beans, large, mature seeds", + "category": "legume", + "density_g_per_ml": 0.752, + "default_unit_class": "volume", + "usda_fdc_id": 174252, + "usda_description": "Lima beans, large, mature seeds, raw" + }, + { + "canonical_name": "lima beans, large, mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.795, + "default_unit_class": "volume", + "usda_fdc_id": 173802, + "usda_description": "Lima beans, large, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "lima beans, large, mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.793, + "default_unit_class": "volume", + "usda_fdc_id": 174253, + "usda_description": "Lima beans, large, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "lima beans, large, mature seeds, canned", + "category": "legume", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 174254, + "usda_description": "Lima beans, large, mature seeds, canned" + }, + { + "canonical_name": "lima beans, thin seeded , mature seeds", + "category": "legume", + "density_g_per_ml": 0.854, + "default_unit_class": "volume", + "usda_fdc_id": 174255, + "usda_description": "Lima beans, thin seeded (baby), mature seeds, raw" + }, + { + "canonical_name": "lima beans, thin seeded , mature seeds with salt", + "category": "legume", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 173803, + "usda_description": "Lima beans, thin seeded (baby), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "lima beans, thin seeded , mature seeds without salt", + "category": "legume", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 172422, + "usda_description": "Lima beans, thin seeded (baby), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "limburger cheese", + "category": "dairy", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 171243, + "usda_description": "Cheese, limburger" + }, + { + "canonical_name": "lime juice", + "category": "beverage", + "density_g_per_ml": 1.032, + "default_unit_class": "volume", + "usda_fdc_id": 168156, + "usda_description": "Lime juice, raw" + }, + { + "canonical_name": "lime juice, canned or bottled, unsweetened", + "category": "beverage", + "density_g_per_ml": 1.041, + "default_unit_class": "volume", + "usda_fdc_id": 168157, + "usda_description": "Lime juice, canned or bottled, unsweetened" + }, + { + "canonical_name": "limeade, frozen concentrate, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174862, + "usda_description": "Limeade, frozen concentrate, prepared with water" + }, + { + "canonical_name": "liquid pectin", + "category": "other", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 167682, + "usda_description": "Pectin, liquid" + }, + { + "canonical_name": "litchis", + "category": "other", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 169086, + "usda_description": "Litchis, raw" + }, + { + "canonical_name": "liverwurst spread", + "category": "other", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 174596, + "usda_description": "Liverwurst spread" + }, + { + "canonical_name": "loquats", + "category": "other", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 169908, + "usda_description": "Loquats, raw" + }, + { + "canonical_name": "lotus seeds seeds", + "category": "nut-seed", + "density_g_per_ml": 0.135, + "default_unit_class": "volume", + "usda_fdc_id": 170149, + "usda_description": "Seeds, lotus seeds, dried" + }, + { + "canonical_name": "low fat peanut flour", + "category": "nut-seed", + "density_g_per_ml": 0.254, + "default_unit_class": "volume", + "usda_fdc_id": 172435, + "usda_description": "Peanut flour, low fat" + }, + { + "canonical_name": "low sodium catsup", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169381, + "usda_description": "Catsup, low sodium" + }, + { + "canonical_name": "low sodium frankfurter", + "category": "other", + "density_g_per_ml": 0.638, + "default_unit_class": "volume", + "usda_fdc_id": 168131, + "usda_description": "Frankfurter, low sodium" + }, + { + "canonical_name": "low sodium soy sauce made from soy and wheat", + "category": "condiment", + "density_g_per_ml": 0.984, + "default_unit_class": "volume", + "usda_fdc_id": 172473, + "usda_description": "Soy sauce made from soy and wheat (shoyu), low sodium" + }, + { + "canonical_name": "low sodium tomato and vegetable juice", + "category": "produce-vegetable", + "density_g_per_ml": 1.022, + "default_unit_class": "volume", + "usda_fdc_id": 167708, + "usda_description": "Tomato and vegetable juice, low sodium" + }, + { + "canonical_name": "low-fat soy flour", + "category": "baking", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 172444, + "usda_description": "Soy flour, low-fat" + }, + { + "canonical_name": "macadamia nuts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170178, + "usda_description": "Nuts, macadamia nuts, raw" + }, + { + "canonical_name": "macaroni n' cheese", + "category": "dairy", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 169849, + "usda_description": "CRACKER BARREL, macaroni n' cheese" + }, + { + "canonical_name": "macaroni, vegetable, enriched, cooked", + "category": "other", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 168904, + "usda_description": "Macaroni, vegetable, enriched, cooked" + }, + { + "canonical_name": "macaroni, vegetable, enriched, dry", + "category": "other", + "density_g_per_ml": 0.355, + "default_unit_class": "volume", + "usda_fdc_id": 168903, + "usda_description": "Macaroni, vegetable, enriched, dry" + }, + { + "canonical_name": "mace spices", + "category": "other", + "density_g_per_ml": 0.352, + "default_unit_class": "volume", + "usda_fdc_id": 170927, + "usda_description": "Spices, mace, ground" + }, + { + "canonical_name": "made from soy vermicelli", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169884, + "usda_description": "Vermicelli, made from soy" + }, + { + "canonical_name": "made with tofu mayonnaise", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 167695, + "usda_description": "Mayonnaise, made with tofu" + }, + { + "canonical_name": "maitake mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.296, + "default_unit_class": "volume", + "usda_fdc_id": 169403, + "usda_description": "Mushrooms, maitake, raw" + }, + { + "canonical_name": "malt beverage, includes non-alcoholic beer", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 174863, + "usda_description": "Malt beverage, includes non-alcoholic beer" + }, + { + "canonical_name": "malt syrups", + "category": "condiment", + "density_g_per_ml": 1.412, + "default_unit_class": "mass", + "usda_fdc_id": 169660, + "usda_description": "Syrups, malt" + }, + { + "canonical_name": "mamey sapote", + "category": "other", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 167760, + "usda_description": "Sapote, mamey, raw" + }, + { + "canonical_name": "mangos", + "category": "produce-fruit", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169910, + "usda_description": "Mangos, raw" + }, + { + "canonical_name": "mangosteen, canned, syrup pack", + "category": "condiment", + "density_g_per_ml": 0.871, + "default_unit_class": "volume", + "usda_fdc_id": 169090, + "usda_description": "Mangosteen, canned, syrup pack" + }, + { + "canonical_name": "maple sugars", + "category": "baking", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 169658, + "usda_description": "Sugars, maple" + }, + { + "canonical_name": "maple syrups", + "category": "condiment", + "density_g_per_ml": 1.342, + "default_unit_class": "mass", + "usda_fdc_id": 169661, + "usda_description": "Syrups, maple" + }, + { + "canonical_name": "margarine, 80% fat, tub, soft spread", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171432, + "usda_description": "Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)" + }, + { + "canonical_name": "margarine, industrial, non-dairy, cottonseed, soy oil , for flaky pastries", + "category": "nut-seed", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173605, + "usda_description": "Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries" + }, + { + "canonical_name": "margarine, margarine-like vegetable oil spread, 67-70% fat, tub", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171431, + "usda_description": "Margarine, margarine-like vegetable oil spread, 67-70% fat, tub" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, stick, with salt", + "category": "spice", + "density_g_per_ml": 0.953, + "default_unit_class": "volume", + "usda_fdc_id": 172346, + "usda_description": "Margarine, regular, 80% fat, composite, stick, with salt" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, stick, with salt, with added vitamin d", + "category": "spice", + "density_g_per_ml": 0.906, + "default_unit_class": "volume", + "usda_fdc_id": 171435, + "usda_description": "Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, stick, without salt", + "category": "spice", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 173585, + "usda_description": "Margarine, regular, 80% fat, composite, stick, without salt" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, tub, with salt", + "category": "spice", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 172347, + "usda_description": "Margarine, regular, 80% fat, composite, tub, with salt" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, tub, with salt, with added vitamin d", + "category": "spice", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171436, + "usda_description": "Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D" + }, + { + "canonical_name": "margarine, regular, 80% fat, composite, tub, without salt", + "category": "spice", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 172349, + "usda_description": "Margarine, regular, 80% fat, composite, tub, without salt" + }, + { + "canonical_name": "margarine, regular, hard, soybean", + "category": "other", + "density_g_per_ml": 0.954, + "default_unit_class": "volume", + "usda_fdc_id": 171018, + "usda_description": "Margarine, regular, hard, soybean (hydrogenated)" + }, + { + "canonical_name": "margarine,spread, 35-39% fat, tub", + "category": "other", + "density_g_per_ml": 0.977, + "default_unit_class": "volume", + "usda_fdc_id": 171415, + "usda_description": "Margarine,spread, 35-39% fat, tub" + }, + { + "canonical_name": "margarine-like spread with yogurt, 70% fat, stick, with salt", + "category": "dairy", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 172352, + "usda_description": "Margarine-like spread with yogurt, 70% fat, stick, with salt" + }, + { + "canonical_name": "margarine-like spread with yogurt, approximately 40% fat, tub, with salt", + "category": "dairy", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173586, + "usda_description": "Margarine-like spread with yogurt, approximately 40% fat, tub, with salt" + }, + { + "canonical_name": "margarine-like spread, regular buttery spread with flax oil", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 172371, + "usda_description": "Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil" + }, + { + "canonical_name": "margarine-like spread, super light without saturated fat", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173608, + "usda_description": "Margarine-like spread, SMART BEAT Super Light without saturated fat" + }, + { + "canonical_name": "margarine-like, butter-margarine blend, 80% fat, stick, without salt", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169052, + "usda_description": "Margarine-like, butter-margarine blend, 80% fat, stick, without salt" + }, + { + "canonical_name": "margarine-like, margarine-butter blend, soybean oil and butter", + "category": "oil-fat", + "density_g_per_ml": 0.956, + "default_unit_class": "volume", + "usda_fdc_id": 172339, + "usda_description": "Margarine-like, margarine-butter blend, soybean oil and butter" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 20% fat, with salt", + "category": "spice", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172354, + "usda_description": "Margarine-like, vegetable oil spread, 20% fat, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 20% fat, without salt", + "category": "spice", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172355, + "usda_description": "Margarine-like, vegetable oil spread, 20% fat, without salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 60% fat, stick, with salt", + "category": "spice", + "density_g_per_ml": 0.97, + "default_unit_class": "volume", + "usda_fdc_id": 172348, + "usda_description": "Margarine-like, vegetable oil spread, 60% fat, stick, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt", + "category": "spice", + "density_g_per_ml": 0.97, + "default_unit_class": "volume", + "usda_fdc_id": 173583, + "usda_description": "Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt", + "category": "spice", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 172350, + "usda_description": "Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, 60% fat, tub, with salt", + "category": "spice", + "density_g_per_ml": 0.963, + "default_unit_class": "volume", + "usda_fdc_id": 173582, + "usda_description": "Margarine-like, vegetable oil spread, 60% fat, tub, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, fat free, liquid, with salt", + "category": "spice", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172351, + "usda_description": "Margarine-like, vegetable oil spread, fat free, liquid, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, fat-free, tub", + "category": "oil-fat", + "density_g_per_ml": 0.986, + "default_unit_class": "volume", + "usda_fdc_id": 172353, + "usda_description": "Margarine-like, vegetable oil spread, fat-free, tub" + }, + { + "canonical_name": "margarine-like, vegetable oil spread, stick or tub, sweetened", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169860, + "usda_description": "Margarine-like, vegetable oil spread, stick or tub, sweetened" + }, + { + "canonical_name": "margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169053, + "usda_description": "Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt" + }, + { + "canonical_name": "margarine-like, vegetable oil-butter spread, tub, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173580, + "usda_description": "Margarine-like, vegetable oil-butter spread, tub, with salt" + }, + { + "canonical_name": "marjoram spices", + "category": "other", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 170928, + "usda_description": "Spices, marjoram, dried" + }, + { + "canonical_name": "mature seeds broadbeans", + "category": "legume", + "density_g_per_ml": 0.635, + "default_unit_class": "volume", + "usda_fdc_id": 175205, + "usda_description": "Broadbeans (fava beans), mature seeds, raw" + }, + { + "canonical_name": "mature seeds chickpeas", + "category": "legume", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 173756, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, raw" + }, + { + "canonical_name": "mature seeds hyacinth beans", + "category": "legume", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 175210, + "usda_description": "Hyacinth beans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds lupins", + "category": "nut-seed", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 172423, + "usda_description": "Lupins, mature seeds, raw" + }, + { + "canonical_name": "mature seeds mothbeans", + "category": "legume", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 172425, + "usda_description": "Mothbeans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds mung beans", + "category": "legume", + "density_g_per_ml": 0.877, + "default_unit_class": "volume", + "usda_fdc_id": 174256, + "usda_description": "Mung beans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds mungo beans", + "category": "legume", + "density_g_per_ml": 0.875, + "default_unit_class": "volume", + "usda_fdc_id": 174259, + "usda_description": "Mungo beans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds pigeon peas", + "category": "nut-seed", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172436, + "usda_description": "Pigeon peas (red gram), mature seeds, raw" + }, + { + "canonical_name": "mature seeds soybeans", + "category": "legume", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 174270, + "usda_description": "Soybeans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds winged beans", + "category": "legume", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 174283, + "usda_description": "Winged beans, mature seeds, raw" + }, + { + "canonical_name": "mature seeds with salt broadbeans", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 173798, + "usda_description": "Broadbeans (fava beans), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt chickpeas", + "category": "legume", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 173799, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt hyacinth beans", + "category": "legume", + "density_g_per_ml": 0.82, + "default_unit_class": "volume", + "usda_fdc_id": 175253, + "usda_description": "Hyacinth beans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt lentils", + "category": "legume", + "density_g_per_ml": 0.837, + "default_unit_class": "volume", + "usda_fdc_id": 175254, + "usda_description": "Lentils, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt lupins", + "category": "spice", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 173804, + "usda_description": "Lupins, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt mothbeans", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 173805, + "usda_description": "Mothbeans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt mung beans", + "category": "legume", + "density_g_per_ml": 0.854, + "default_unit_class": "volume", + "usda_fdc_id": 175255, + "usda_description": "Mung beans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt mungo beans", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 175256, + "usda_description": "Mungo beans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt pigeon peas", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 172472, + "usda_description": "Pigeon peas (red gram), mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt soybeans", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 174299, + "usda_description": "Soybeans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt winged beans", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 172477, + "usda_description": "Winged beans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds with salt yardlong beans", + "category": "legume", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 174306, + "usda_description": "Yardlong beans, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "mature seeds without salt broadbeans", + "category": "legume", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 173753, + "usda_description": "Broadbeans (fava beans), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt chickpeas", + "category": "legume", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 173757, + "usda_description": "Chickpeas (garbanzo beans, bengal gram), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt hyacinth beans", + "category": "legume", + "density_g_per_ml": 0.82, + "default_unit_class": "volume", + "usda_fdc_id": 175211, + "usda_description": "Hyacinth beans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt lentils", + "category": "legume", + "density_g_per_ml": 0.834, + "default_unit_class": "volume", + "usda_fdc_id": 172421, + "usda_description": "Lentils, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt lupins", + "category": "spice", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 172424, + "usda_description": "Lupins, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt mothbeans", + "category": "legume", + "density_g_per_ml": 0.748, + "default_unit_class": "volume", + "usda_fdc_id": 172426, + "usda_description": "Mothbeans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt mung beans", + "category": "legume", + "density_g_per_ml": 0.854, + "default_unit_class": "volume", + "usda_fdc_id": 174257, + "usda_description": "Mung beans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt mungo beans", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 172427, + "usda_description": "Mungo beans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt pigeon peas", + "category": "spice", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 172437, + "usda_description": "Pigeon peas (red gram), mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt winged beans", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 172453, + "usda_description": "Winged beans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds without salt yardlong beans", + "category": "legume", + "density_g_per_ml": 0.723, + "default_unit_class": "volume", + "usda_fdc_id": 174282, + "usda_description": "Yardlong beans, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "mature seeds yardlong beans", + "category": "legume", + "density_g_per_ml": 0.706, + "default_unit_class": "volume", + "usda_fdc_id": 174281, + "usda_description": "Yardlong beans, mature seeds, raw" + }, + { + "canonical_name": "mayo light mayonnaise salad dressing", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171002, + "usda_description": "Salad dressing, KRAFT Mayo Light Mayonnaise" + }, + { + "canonical_name": "mayonnaise, low sodium, low calorie or diet", + "category": "condiment", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 168115, + "usda_description": "Mayonnaise, low sodium, low calorie or diet" + }, + { + "canonical_name": "mayonnaise, reduced fat, with olive oil", + "category": "condiment", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 171443, + "usda_description": "Mayonnaise, reduced fat, with olive oil" + }, + { + "canonical_name": "mayonnaise, reduced-calorie or diet, cholesterol-free", + "category": "condiment", + "density_g_per_ml": 0.982, + "default_unit_class": "volume", + "usda_fdc_id": 168094, + "usda_description": "Mayonnaise, reduced-calorie or diet, cholesterol-free" + }, + { + "canonical_name": "meal cracker", + "category": "other", + "density_g_per_ml": 0.486, + "default_unit_class": "volume", + "usda_fdc_id": 172750, + "usda_description": "Cracker, meal" + }, + { + "canonical_name": "meat extender", + "category": "other", + "density_g_per_ml": 0.372, + "default_unit_class": "volume", + "usda_fdc_id": 174268, + "usda_description": "Meat extender" + }, + { + "canonical_name": "meatless bacon", + "category": "meat", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 172439, + "usda_description": "Bacon, meatless" + }, + { + "canonical_name": "meatless bacon bits", + "category": "meat", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 169893, + "usda_description": "Bacon bits, meatless" + }, + { + "canonical_name": "meatless chicken", + "category": "meat", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 169886, + "usda_description": "Chicken, meatless" + }, + { + "canonical_name": "meatless frankfurter", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169887, + "usda_description": "Frankfurter, meatless" + }, + { + "canonical_name": "meatless meatballs", + "category": "other", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 169067, + "usda_description": "Meatballs, meatless" + }, + { + "canonical_name": "meatless sandwich spread", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169069, + "usda_description": "Sandwich spread, meatless" + }, + { + "canonical_name": "medium rye flour", + "category": "baking", + "density_g_per_ml": 0.431, + "default_unit_class": "volume", + "usda_fdc_id": 168886, + "usda_description": "Rye flour, medium" + }, + { + "canonical_name": "menhaden fish oil", + "category": "meat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172341, + "usda_description": "Fish oil, menhaden" + }, + { + "canonical_name": "mexican blend cheese", + "category": "dairy", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 171288, + "usda_description": "Cheese, Mexican blend" + }, + { + "canonical_name": "mexican rice on", + "category": "grain", + "density_g_per_ml": 0.482, + "default_unit_class": "volume", + "usda_fdc_id": 169031, + "usda_description": "ON THE BORDER, Mexican rice" + }, + { + "canonical_name": "microwavable bowls chili with beans", + "category": "legume", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172110, + "usda_description": "Chili with beans, microwavable bowls" + }, + { + "canonical_name": "milk 3.25% milkfat, without added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 172217, + "usda_description": "Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D" + }, + { + "canonical_name": "milk dessert, frozen, milk-fat free, chocolate", + "category": "baking", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 167686, + "usda_description": "Milk dessert, frozen, milk-fat free, chocolate" + }, + { + "canonical_name": "milk substitutes, fluid, with lauric acid oil", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171264, + "usda_description": "Milk substitutes, fluid, with lauric acid oil" + }, + { + "canonical_name": "milk, buttermilk, fluid", + "category": "oil-fat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 172225, + "usda_description": "Milk, buttermilk, fluid, whole" + }, + { + "canonical_name": "milk, buttermilk, fluid, cultured, lowfat", + "category": "oil-fat", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 170874, + "usda_description": "Milk, buttermilk, fluid, cultured, lowfat" + }, + { + "canonical_name": "milk, buttermilk, fluid, cultured, reduced fat", + "category": "oil-fat", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 167697, + "usda_description": "Milk, buttermilk, fluid, cultured, reduced fat" + }, + { + "canonical_name": "milk, canned, condensed, sweetened", + "category": "dairy", + "density_g_per_ml": 1.293, + "default_unit_class": "mass", + "usda_fdc_id": 171275, + "usda_description": "Milk, canned, condensed, sweetened" + }, + { + "canonical_name": "milk, canned, evaporated, nonfat, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.081, + "default_unit_class": "mass", + "usda_fdc_id": 170878, + "usda_description": "Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, canned, evaporated, with added vitamin a", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 172194, + "usda_description": "Milk, canned, evaporated, with added vitamin A" + }, + { + "canonical_name": "milk, canned, evaporated, with added vitamin d and without added vitamin a", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171276, + "usda_description": "Milk, canned, evaporated, with added vitamin D and without added vitamin A" + }, + { + "canonical_name": "milk, chocolate beverage, hot cocoa, homemade", + "category": "baking", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 171277, + "usda_description": "Milk, chocolate beverage, hot cocoa, homemade" + }, + { + "canonical_name": "milk, chocolate, fat free, with added vitamin a and vitamin d", + "category": "baking", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 171303, + "usda_description": "Milk, chocolate, fat free, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, chocolate, fluid, commercial with added vitamin a and vitamin d", + "category": "baking", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 170879, + "usda_description": "Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, chocolate, fluid, commercial, reduced fat, with added calcium", + "category": "baking", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 173450, + "usda_description": "Milk, chocolate, fluid, commercial, reduced fat, with added calcium" + }, + { + "canonical_name": "milk, chocolate, lowfat, with added vitamin a and vitamin d", + "category": "baking", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 170881, + "usda_description": "Milk, chocolate, lowfat, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, dry without added vitamin d", + "category": "dairy", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 173454, + "usda_description": "Milk, dry, whole, without added vitamin D" + }, + { + "canonical_name": "milk, dry, nonfat, regular, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 172195, + "usda_description": "Milk, dry, nonfat, regular, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, dry, nonfat, regular, without added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 0.442, + "default_unit_class": "volume", + "usda_fdc_id": 170877, + "usda_description": "Milk, dry, nonfat, regular, without added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, evaporated, 2% fat, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171302, + "usda_description": "Milk, evaporated, 2% fat, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, filled, fluid, with blend of hydrogenated vegetable oils", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170861, + "usda_description": "Milk, filled, fluid, with blend of hydrogenated vegetable oils" + }, + { + "canonical_name": "milk, filled, fluid, with lauric acid oil", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170862, + "usda_description": "Milk, filled, fluid, with lauric acid oil" + }, + { + "canonical_name": "milk, fluid, 1% fat, without added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173441, + "usda_description": "Milk, fluid, 1% fat, without added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, goat, fluid, with added vitamin d", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171278, + "usda_description": "Milk, goat, fluid, with added vitamin D" + }, + { + "canonical_name": "milk, human, mature, fluid", + "category": "dairy", + "density_g_per_ml": 1.041, + "default_unit_class": "volume", + "usda_fdc_id": 171279, + "usda_description": "Milk, human, mature, fluid (For Reference Only)" + }, + { + "canonical_name": "milk, imitation, non-soy", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 167730, + "usda_description": "Milk, imitation, non-soy" + }, + { + "canonical_name": "milk, indian buffalo, fluid", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171280, + "usda_description": "Milk, indian buffalo, fluid" + }, + { + "canonical_name": "milk, low sodium, fluid", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170875, + "usda_description": "Milk, low sodium, fluid" + }, + { + "canonical_name": "milk, lowfat, fluid, 1% milkfat, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170872, + "usda_description": "Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, nonfat, fluid, with added nonfat milk solids, vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 171270, + "usda_description": "Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)" + }, + { + "canonical_name": "milk, nonfat, fluid, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.035, + "default_unit_class": "volume", + "usda_fdc_id": 171269, + "usda_description": "Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)" + }, + { + "canonical_name": "milk, nonfat, fluid, without added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 173432, + "usda_description": "Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)" + }, + { + "canonical_name": "milk, producer, fluid, 3.7% milkfat", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171266, + "usda_description": "Milk, producer, fluid, 3.7% milkfat" + }, + { + "canonical_name": "milk, reduced fat, fluid, 2% milkfat, with added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171267, + "usda_description": "Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, reduced fat, fluid, 2% milkfat, without added vitamin a and vitamin d", + "category": "dairy", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 172205, + "usda_description": "Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D" + }, + { + "canonical_name": "milk, sheep, fluid", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170882, + "usda_description": "Milk, sheep, fluid" + }, + { + "canonical_name": "millet", + "category": "other", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 169702, + "usda_description": "Millet, raw" + }, + { + "canonical_name": "millet flour", + "category": "baking", + "density_g_per_ml": 0.503, + "default_unit_class": "volume", + "usda_fdc_id": 172023, + "usda_description": "Millet flour" + }, + { + "canonical_name": "miso", + "category": "other", + "density_g_per_ml": 1.156, + "default_unit_class": "mass", + "usda_fdc_id": 172442, + "usda_description": "Miso" + }, + { + "canonical_name": "molasses", + "category": "other", + "density_g_per_ml": 1.424, + "default_unit_class": "mass", + "usda_fdc_id": 168820, + "usda_description": "Molasses" + }, + { + "canonical_name": "mollusks, clam, mixed species", + "category": "other", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 174214, + "usda_description": "Mollusks, clam, mixed species, raw" + }, + { + "canonical_name": "mollusks, clam, mixed species, canned, drained solids", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 171976, + "usda_description": "Mollusks, clam, mixed species, canned, drained solids" + }, + { + "canonical_name": "mollusks, clam, mixed species, canned, liquid", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171977, + "usda_description": "Mollusks, clam, mixed species, canned, liquid" + }, + { + "canonical_name": "mollusks, conch, baked or broiled", + "category": "oil-fat", + "density_g_per_ml": 0.537, + "default_unit_class": "volume", + "usda_fdc_id": 173720, + "usda_description": "Mollusks, conch, baked or broiled" + }, + { + "canonical_name": "mollusks, mussel, blue", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 174216, + "usda_description": "Mollusks, mussel, blue, raw" + }, + { + "canonical_name": "mollusks, oyster, eastern, canned", + "category": "other", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171981, + "usda_description": "Mollusks, oyster, eastern, canned" + }, + { + "canonical_name": "mollusks, oyster, eastern, wild", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171978, + "usda_description": "Mollusks, oyster, eastern, wild, raw" + }, + { + "canonical_name": "monterey cheese", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 170844, + "usda_description": "Cheese, monterey" + }, + { + "canonical_name": "morel mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.279, + "default_unit_class": "volume", + "usda_fdc_id": 168423, + "usda_description": "Mushrooms, morel, raw" + }, + { + "canonical_name": "mountain yam, hawaii, cooked, steamed, with salt", + "category": "spice", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168552, + "usda_description": "Mountain yam, hawaii, cooked, steamed, with salt" + }, + { + "canonical_name": "mountain yam, hawaii, cooked, steamed, without salt", + "category": "spice", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168433, + "usda_description": "Mountain yam, hawaii, cooked, steamed, without salt" + }, + { + "canonical_name": "mozzarella cheese substitute", + "category": "dairy", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 172198, + "usda_description": "Cheese substitute, mozzarella" + }, + { + "canonical_name": "muenster cheese", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 171245, + "usda_description": "Cheese, muenster" + }, + { + "canonical_name": "mulberries", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169913, + "usda_description": "Mulberries, raw" + }, + { + "canonical_name": "mung beans, mature seeds, sprouted", + "category": "legume", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169957, + "usda_description": "Mung beans, mature seeds, sprouted, raw" + }, + { + "canonical_name": "mung beans, mature seeds, sprouted drained, with salt", + "category": "legume", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 168499, + "usda_description": "Mung beans, mature seeds, sprouted, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "mung beans, mature seeds, sprouted drained, without salt", + "category": "legume", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 169137, + "usda_description": "Mung beans, mature seeds, sprouted, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "mung beans, mature seeds, sprouted, cooked, stir-fried", + "category": "legume", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 169138, + "usda_description": "Mung beans, mature seeds, sprouted, cooked, stir-fried" + }, + { + "canonical_name": "mushroom, white, exposed to ultraviolet light", + "category": "produce-vegetable", + "density_g_per_ml": 0.351, + "default_unit_class": "volume", + "usda_fdc_id": 169376, + "usda_description": "Mushroom, white, exposed to ultraviolet light, raw" + }, + { + "canonical_name": "mushrooms, brown, italian, or crimini", + "category": "produce-vegetable", + "density_g_per_ml": 0.336, + "default_unit_class": "volume", + "usda_fdc_id": 168434, + "usda_description": "Mushrooms, brown, italian, or crimini, raw" + }, + { + "canonical_name": "mushrooms, brown, italian, or crimini, exposed to ultraviolet light", + "category": "produce-vegetable", + "density_g_per_ml": 0.336, + "default_unit_class": "volume", + "usda_fdc_id": 168557, + "usda_description": "Mushrooms, brown, italian, or crimini, exposed to ultraviolet light, raw" + }, + { + "canonical_name": "mushrooms, canned, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169254, + "usda_description": "Mushrooms, canned, drained solids" + }, + { + "canonical_name": "mushrooms, portabella, exposed to ultraviolet light", + "category": "produce-vegetable", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 170143, + "usda_description": "Mushrooms, portabella, exposed to ultraviolet light, raw" + }, + { + "canonical_name": "mushrooms, portabella, exposed to ultraviolet light, grilled", + "category": "produce-vegetable", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 169377, + "usda_description": "Mushrooms, portabella, exposed to ultraviolet light, grilled" + }, + { + "canonical_name": "mushrooms, portabella, grilled", + "category": "produce-vegetable", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 169243, + "usda_description": "Mushrooms, portabella, grilled" + }, + { + "canonical_name": "mushrooms, shiitake, cooked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170097, + "usda_description": "Mushrooms, shiitake, cooked, with salt" + }, + { + "canonical_name": "mushrooms, shiitake, cooked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168437, + "usda_description": "Mushrooms, shiitake, cooked, without salt" + }, + { + "canonical_name": "mushrooms, shiitake, stir-fried", + "category": "produce-vegetable", + "density_g_per_ml": 0.393, + "default_unit_class": "volume", + "usda_fdc_id": 168435, + "usda_description": "Mushrooms, shiitake, stir-fried" + }, + { + "canonical_name": "mushrooms, straw, canned, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 168582, + "usda_description": "Mushrooms, straw, canned, drained solids" + }, + { + "canonical_name": "mushrooms, white drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.661, + "default_unit_class": "volume", + "usda_fdc_id": 168537, + "usda_description": "Mushrooms, white, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "mushrooms, white drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.661, + "default_unit_class": "volume", + "usda_fdc_id": 169252, + "usda_description": "Mushrooms, white, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "mushrooms, white, stir-fried", + "category": "produce-vegetable", + "density_g_per_ml": 0.456, + "default_unit_class": "volume", + "usda_fdc_id": 169253, + "usda_description": "Mushrooms, white, stir-fried" + }, + { + "canonical_name": "mustard greens", + "category": "condiment", + "density_g_per_ml": 0.237, + "default_unit_class": "volume", + "usda_fdc_id": 169256, + "usda_description": "Mustard greens, raw" + }, + { + "canonical_name": "mustard greens, frozen drained, with salt", + "category": "condiment", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170504, + "usda_description": "Mustard greens, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "mustard greens, frozen drained, without salt", + "category": "condiment", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169259, + "usda_description": "Mustard greens, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "mustard greens, frozen, unprepared", + "category": "condiment", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 169258, + "usda_description": "Mustard greens, frozen, unprepared" + }, + { + "canonical_name": "mustard oil", + "category": "condiment", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 172337, + "usda_description": "Oil, mustard" + }, + { + "canonical_name": "mustard seed spices", + "category": "condiment", + "density_g_per_ml": 0.416, + "default_unit_class": "volume", + "usda_fdc_id": 170929, + "usda_description": "Spices, mustard seed, ground" + }, + { + "canonical_name": "mustard spinach", + "category": "condiment", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 168438, + "usda_description": "Mustard spinach, (tendergreen), raw" + }, + { + "canonical_name": "mustard spinach, drained, with salt", + "category": "condiment", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170505, + "usda_description": "Mustard spinach, (tendergreen), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "mustard spinach, drained, without salt", + "category": "condiment", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168439, + "usda_description": "Mustard spinach, (tendergreen), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "mustard yellow", + "category": "condiment", + "density_g_per_ml": 1.033, + "default_unit_class": "volume", + "usda_fdc_id": 172234, + "usda_description": "Mustard, prepared, yellow" + }, + { + "canonical_name": "nance, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 167789, + "usda_description": "Nance, frozen, unsweetened" + }, + { + "canonical_name": "naranjilla pulp, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 167790, + "usda_description": "Naranjilla (lulo) pulp, frozen, unsweetened" + }, + { + "canonical_name": "natto", + "category": "other", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 172443, + "usda_description": "Natto" + }, + { + "canonical_name": "nectarines", + "category": "other", + "density_g_per_ml": 0.604, + "default_unit_class": "volume", + "usda_fdc_id": 169914, + "usda_description": "Nectarines, raw" + }, + { + "canonical_name": "new england clam chowder 's", + "category": "other", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 174556, + "usda_description": "CAMPBELL'S CHUNKY, New England Clam Chowder" + }, + { + "canonical_name": "new zealand spinach", + "category": "produce-vegetable", + "density_g_per_ml": 0.237, + "default_unit_class": "volume", + "usda_fdc_id": 168440, + "usda_description": "New Zealand spinach, raw" + }, + { + "canonical_name": "no cholesterol mayonnaise dressing", + "category": "condiment", + "density_g_per_ml": 1.012, + "default_unit_class": "volume", + "usda_fdc_id": 167736, + "usda_description": "Mayonnaise dressing, no cholesterol" + }, + { + "canonical_name": "no salt added escarole drained", + "category": "spice", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 168413, + "usda_description": "Escarole, cooked, boiled, drained, no salt added" + }, + { + "canonical_name": "nonfat dressing salad dressing", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171004, + "usda_description": "Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing" + }, + { + "canonical_name": "noodles, chinese, cellophane or long rice , dehydrated", + "category": "grain", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 174258, + "usda_description": "Noodles, chinese, cellophane or long rice (mung beans), dehydrated" + }, + { + "canonical_name": "noodles, chinese, chow mein", + "category": "grain", + "density_g_per_ml": 0.237, + "default_unit_class": "volume", + "usda_fdc_id": 168905, + "usda_description": "Noodles, chinese, chow mein" + }, + { + "canonical_name": "noodles, egg, cooked, enriched, with added salt", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 168919, + "usda_description": "Noodles, egg, cooked, enriched, with added salt" + }, + { + "canonical_name": "noodles, egg, cooked, unenriched, with added salt", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169762, + "usda_description": "Noodles, egg, cooked, unenriched, with added salt" + }, + { + "canonical_name": "noodles, egg, dry, enriched", + "category": "grain", + "density_g_per_ml": 0.161, + "default_unit_class": "volume", + "usda_fdc_id": 169731, + "usda_description": "Noodles, egg, dry, enriched" + }, + { + "canonical_name": "noodles, egg, dry, unenriched", + "category": "grain", + "density_g_per_ml": 0.161, + "default_unit_class": "volume", + "usda_fdc_id": 169755, + "usda_description": "Noodles, egg, dry, unenriched" + }, + { + "canonical_name": "noodles, egg, enriched, cooked", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169732, + "usda_description": "Noodles, egg, enriched, cooked" + }, + { + "canonical_name": "noodles, egg, spinach, enriched, cooked", + "category": "produce-vegetable", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169734, + "usda_description": "Noodles, egg, spinach, enriched, cooked" + }, + { + "canonical_name": "noodles, egg, spinach, enriched, dry", + "category": "produce-vegetable", + "density_g_per_ml": 0.161, + "default_unit_class": "volume", + "usda_fdc_id": 169733, + "usda_description": "Noodles, egg, spinach, enriched, dry" + }, + { + "canonical_name": "noodles, egg, unenriched, cooked, without added salt", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 168926, + "usda_description": "Noodles, egg, unenriched, cooked, without added salt" + }, + { + "canonical_name": "noodles, japanese, soba, cooked", + "category": "grain", + "density_g_per_ml": 0.482, + "default_unit_class": "volume", + "usda_fdc_id": 168907, + "usda_description": "Noodles, japanese, soba, cooked" + }, + { + "canonical_name": "noodles, japanese, somen, cooked", + "category": "grain", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 168909, + "usda_description": "Noodles, japanese, somen, cooked" + }, + { + "canonical_name": "nopales", + "category": "other", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 168571, + "usda_description": "Nopales, raw" + }, + { + "canonical_name": "nopales, cooked, without salt", + "category": "spice", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 169388, + "usda_description": "Nopales, cooked, without salt" + }, + { + "canonical_name": "nutmeg butter oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172335, + "usda_description": "Oil, nutmeg butter" + }, + { + "canonical_name": "nutmeg spices", + "category": "nut-seed", + "density_g_per_ml": 0.46, + "default_unit_class": "volume", + "usda_fdc_id": 171326, + "usda_description": "Spices, nutmeg, ground" + }, + { + "canonical_name": "nuts in syrup toppings", + "category": "condiment", + "density_g_per_ml": 1.386, + "default_unit_class": "mass", + "usda_fdc_id": 169666, + "usda_description": "Toppings, nuts in syrup" + }, + { + "canonical_name": "nuts, almond butter, plain, with salt added", + "category": "oil-fat", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 168603, + "usda_description": "Nuts, almond butter, plain, with salt added" + }, + { + "canonical_name": "nuts, almond butter, plain, without salt added", + "category": "oil-fat", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 168588, + "usda_description": "Nuts, almond butter, plain, without salt added" + }, + { + "canonical_name": "nuts, almonds, blanched", + "category": "nut-seed", + "density_g_per_ml": 0.614, + "default_unit_class": "volume", + "usda_fdc_id": 170568, + "usda_description": "Nuts, almonds, blanched" + }, + { + "canonical_name": "nuts, almonds, dry roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 168596, + "usda_description": "Nuts, almonds, dry roasted, with salt added" + }, + { + "canonical_name": "nuts, almonds, dry roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 170158, + "usda_description": "Nuts, almonds, dry roasted, without salt added" + }, + { + "canonical_name": "nuts, almonds, honey roasted, unblanched", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 168592, + "usda_description": "Nuts, almonds, honey roasted, unblanched" + }, + { + "canonical_name": "nuts, almonds, oil roasted, lightly salted", + "category": "nut-seed", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 168602, + "usda_description": "Nuts, almonds, oil roasted, lightly salted" + }, + { + "canonical_name": "nuts, almonds, oil roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 169419, + "usda_description": "Nuts, almonds, oil roasted, with salt added" + }, + { + "canonical_name": "nuts, almonds, oil roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.664, + "default_unit_class": "volume", + "usda_fdc_id": 170159, + "usda_description": "Nuts, almonds, oil roasted, without salt added" + }, + { + "canonical_name": "nuts, cashew butter, plain, with salt added", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 168597, + "usda_description": "Nuts, cashew butter, plain, with salt added" + }, + { + "canonical_name": "nuts, cashew butter, plain, without salt added", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 170163, + "usda_description": "Nuts, cashew butter, plain, without salt added" + }, + { + "canonical_name": "nuts, cashew nuts, dry roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 169421, + "usda_description": "Nuts, cashew nuts, dry roasted, with salt added" + }, + { + "canonical_name": "nuts, cashew nuts, dry roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.58, + "default_unit_class": "volume", + "usda_fdc_id": 170571, + "usda_description": "Nuts, cashew nuts, dry roasted, without salt added" + }, + { + "canonical_name": "nuts, cashew nuts, oil roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.545, + "default_unit_class": "volume", + "usda_fdc_id": 169422, + "usda_description": "Nuts, cashew nuts, oil roasted, with salt added" + }, + { + "canonical_name": "nuts, cashew nuts, oil roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.545, + "default_unit_class": "volume", + "usda_fdc_id": 170572, + "usda_description": "Nuts, cashew nuts, oil roasted, without salt added" + }, + { + "canonical_name": "nuts, chestnuts, european unpeeled", + "category": "nut-seed", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170574, + "usda_description": "Nuts, chestnuts, european, raw, unpeeled" + }, + { + "canonical_name": "nuts, chestnuts, european, roasted", + "category": "nut-seed", + "density_g_per_ml": 0.604, + "default_unit_class": "volume", + "usda_fdc_id": 170190, + "usda_description": "Nuts, chestnuts, european, roasted" + }, + { + "canonical_name": "nuts, chestnuts, japanese", + "category": "nut-seed", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169408, + "usda_description": "Nuts, chestnuts, japanese, dried" + }, + { + "canonical_name": "nuts, coconut cream, canned, sweetened", + "category": "dairy", + "density_g_per_ml": 1.268, + "default_unit_class": "mass", + "usda_fdc_id": 170171, + "usda_description": "Nuts, coconut cream, canned, sweetened" + }, + { + "canonical_name": "nuts, coconut cream, raw", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170580, + "usda_description": "Nuts, coconut cream, raw (liquid expressed from grated meat)" + }, + { + "canonical_name": "nuts, coconut meat, dried , sweetened, flaked, canned", + "category": "nut-seed", + "density_g_per_ml": 0.325, + "default_unit_class": "volume", + "usda_fdc_id": 170578, + "usda_description": "Nuts, coconut meat, dried (desiccated), sweetened, flaked, canned" + }, + { + "canonical_name": "nuts, coconut meat, dried , sweetened, flaked, packaged", + "category": "nut-seed", + "density_g_per_ml": 0.359, + "default_unit_class": "volume", + "usda_fdc_id": 170577, + "usda_description": "Nuts, coconut meat, dried (desiccated), sweetened, flaked, packaged" + }, + { + "canonical_name": "nuts, coconut meat, dried , sweetened, shredded", + "category": "nut-seed", + "density_g_per_ml": 0.393, + "default_unit_class": "volume", + "usda_fdc_id": 168586, + "usda_description": "Nuts, coconut meat, dried (desiccated), sweetened, shredded" + }, + { + "canonical_name": "nuts, coconut milk, canned", + "category": "dairy", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 170173, + "usda_description": "Nuts, coconut milk, canned (liquid expressed from grated meat and water)" + }, + { + "canonical_name": "nuts, coconut milk, frozen", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169409, + "usda_description": "Nuts, coconut milk, frozen (liquid expressed from grated meat and water)" + }, + { + "canonical_name": "nuts, coconut milk, raw", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170172, + "usda_description": "Nuts, coconut milk, raw (liquid expressed from grated meat and water)" + }, + { + "canonical_name": "nuts, ginkgo nuts, canned", + "category": "nut-seed", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 170176, + "usda_description": "Nuts, ginkgo nuts, canned" + }, + { + "canonical_name": "nuts, macadamia nuts, dry roasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168598, + "usda_description": "Nuts, macadamia nuts, dry roasted, with salt added" + }, + { + "canonical_name": "nuts, macadamia nuts, dry roasted, without salt added", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170179, + "usda_description": "Nuts, macadamia nuts, dry roasted, without salt added" + }, + { + "canonical_name": "nuts, mixed nuts, dry roasted, with peanuts, salt added", + "category": "nut-seed", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170181, + "usda_description": "Nuts, mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER" + }, + { + "canonical_name": "nuts, mixed nuts, dry roasted, with peanuts, salt added, pistachio blend", + "category": "nut-seed", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 170586, + "usda_description": "Nuts, mixed nuts, dry roasted, with peanuts, salt added, PLANTERS pistachio blend" + }, + { + "canonical_name": "nuts, mixed nuts, dry roasted, with peanuts, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 168599, + "usda_description": "Nuts, mixed nuts, dry roasted, with peanuts, with salt added" + }, + { + "canonical_name": "nuts, mixed nuts, dry roasted, with peanuts, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.554, + "default_unit_class": "volume", + "usda_fdc_id": 170585, + "usda_description": "Nuts, mixed nuts, dry roasted, with peanuts, without salt added" + }, + { + "canonical_name": "nuts, mixed nuts, oil roasted, with peanuts, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 168600, + "usda_description": "Nuts, mixed nuts, oil roasted, with peanuts, with salt added" + }, + { + "canonical_name": "nuts, mixed nuts, oil roasted, with peanuts, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170587, + "usda_description": "Nuts, mixed nuts, oil roasted, with peanuts, without salt added" + }, + { + "canonical_name": "nuts, mixed nuts, oil roasted, without peanuts, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 169423, + "usda_description": "Nuts, mixed nuts, oil roasted, without peanuts, with salt added" + }, + { + "canonical_name": "nuts, mixed nuts, oil roasted, without peanuts, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170588, + "usda_description": "Nuts, mixed nuts, oil roasted, without peanuts, without salt added" + }, + { + "canonical_name": "nuts, pecans, oil roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.465, + "default_unit_class": "volume", + "usda_fdc_id": 169425, + "usda_description": "Nuts, pecans, oil roasted, with salt added" + }, + { + "canonical_name": "nuts, pecans, oil roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.465, + "default_unit_class": "volume", + "usda_fdc_id": 170589, + "usda_description": "Nuts, pecans, oil roasted, without salt added" + }, + { + "canonical_name": "nuts, pistachio nuts, dry roasted, with salt added", + "category": "nut-seed", + "density_g_per_ml": 0.52, + "default_unit_class": "volume", + "usda_fdc_id": 169426, + "usda_description": "Nuts, pistachio nuts, dry roasted, with salt added" + }, + { + "canonical_name": "nuts, pistachio nuts, dry roasted, without salt added", + "category": "nut-seed", + "density_g_per_ml": 0.52, + "default_unit_class": "volume", + "usda_fdc_id": 170185, + "usda_description": "Nuts, pistachio nuts, dry roasted, without salt added" + }, + { + "canonical_name": "nuts, walnuts, black", + "category": "nut-seed", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 170186, + "usda_description": "Nuts, walnuts, black, dried" + }, + { + "canonical_name": "nuts, walnuts, english", + "category": "nut-seed", + "density_g_per_ml": 0.376, + "default_unit_class": "volume", + "usda_fdc_id": 170187, + "usda_description": "Nuts, walnuts, english" + }, + { + "canonical_name": "oat bran", + "category": "other", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 168872, + "usda_description": "Oat bran, raw" + }, + { + "canonical_name": "oat oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173576, + "usda_description": "Oil, oat" + }, + { + "canonical_name": "oats", + "category": "grain", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169705, + "usda_description": "Oats (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "oheloberries", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169915, + "usda_description": "Oheloberries, raw" + }, + { + "canonical_name": "oil, cooking and salad, , 80% diglycerides", + "category": "oil-fat", + "density_g_per_ml": 0.926, + "default_unit_class": "volume", + "usda_fdc_id": 171433, + "usda_description": "Oil, cooking and salad, ENOVA, 80% diglycerides" + }, + { + "canonical_name": "oil, corn, industrial and retail, all purpose salad or cooking", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171029, + "usda_description": "Oil, corn, industrial and retail, all purpose salad or cooking" + }, + { + "canonical_name": "oil, corn, peanut, and olive", + "category": "nut-seed", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 167737, + "usda_description": "Oil, corn, peanut, and olive" + }, + { + "canonical_name": "oil, cottonseed, salad or cooking", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171024, + "usda_description": "Oil, cottonseed, salad or cooking" + }, + { + "canonical_name": "oil, flaxseed, cold pressed", + "category": "nut-seed", + "density_g_per_ml": 0.921, + "default_unit_class": "volume", + "usda_fdc_id": 167702, + "usda_description": "Oil, flaxseed, cold pressed" + }, + { + "canonical_name": "oil, flaxseed, contains added sliced flaxseed", + "category": "nut-seed", + "density_g_per_ml": 0.926, + "default_unit_class": "volume", + "usda_fdc_id": 171442, + "usda_description": "Oil, flaxseed, contains added sliced flaxseed" + }, + { + "canonical_name": "oil, industrial, canola for salads, woks and light frying", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172359, + "usda_description": "Oil, industrial, canola for salads, woks and light frying" + }, + { + "canonical_name": "oil, industrial, canola oil for deep fat frying", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172360, + "usda_description": "Oil, industrial, canola (partially hydrogenated) oil for deep fat frying" + }, + { + "canonical_name": "oil, industrial, canola, high oleic", + "category": "oil-fat", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 171042, + "usda_description": "Oil, industrial, canola, high oleic" + }, + { + "canonical_name": "oil, industrial, coconut , used for whipped toppings and coffee whiteners", + "category": "beverage", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172367, + "usda_description": "Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners" + }, + { + "canonical_name": "oil, industrial, coconut, confection fat, typical basis for ice cream coatings", + "category": "dairy", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172365, + "usda_description": "Oil, industrial, coconut, confection fat, typical basis for ice cream coatings" + }, + { + "canonical_name": "oil, industrial, cottonseed, fully hydrogenated", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171441, + "usda_description": "Oil, industrial, cottonseed, fully hydrogenated" + }, + { + "canonical_name": "oil, industrial, mid-oleic, sunflower", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172357, + "usda_description": "Oil, industrial, mid-oleic, sunflower" + }, + { + "canonical_name": "oil, industrial, palm and palm kernel, filling fat", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172368, + "usda_description": "Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)" + }, + { + "canonical_name": "oil, industrial, palm kernel , confection fat, intermediate grade product", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173602, + "usda_description": "Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product" + }, + { + "canonical_name": "oil, industrial, palm kernel , filling fat", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173603, + "usda_description": "Oil, industrial, palm kernel (hydrogenated), filling fat" + }, + { + "canonical_name": "oil, industrial, palm kernel , used for whipped toppings, non-dairy", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172366, + "usda_description": "Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy" + }, + { + "canonical_name": "oil, industrial, soy , all purpose", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172362, + "usda_description": "Oil, industrial, soy ( partially hydrogenated), all purpose" + }, + { + "canonical_name": "oil, industrial, soy , multiuse for non-dairy butter flavor", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172361, + "usda_description": "Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor" + }, + { + "canonical_name": "oil, industrial, soy , palm, principal uses icings and fillings", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173604, + "usda_description": "Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings" + }, + { + "canonical_name": "oil, industrial, soy , principal uses popcorn and flavoring vegetables", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173596, + "usda_description": "Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables" + }, + { + "canonical_name": "oil, industrial, soy and cottonseed, principal use as a tortilla shortening", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172364, + "usda_description": "Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening" + }, + { + "canonical_name": "oil, industrial, soy and soy , pourable clear fry", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172363, + "usda_description": "Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry" + }, + { + "canonical_name": "oil, industrial, soy, fully hydrogenated", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171440, + "usda_description": "Oil, industrial, soy, fully hydrogenated" + }, + { + "canonical_name": "oil, industrial, soy, low linolenic", + "category": "oil-fat", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 171438, + "usda_description": "Oil, industrial, soy, low linolenic" + }, + { + "canonical_name": "oil, industrial, soy, refined, for woks and light frying", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173598, + "usda_description": "Oil, industrial, soy, refined, for woks and light frying" + }, + { + "canonical_name": "oil, industrial, soy, ultra low linolenic", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171439, + "usda_description": "Oil, industrial, soy, ultra low linolenic" + }, + { + "canonical_name": "oil, olive, salad or cooking", + "category": "oil-fat", + "density_g_per_ml": 0.913, + "default_unit_class": "volume", + "usda_fdc_id": 171413, + "usda_description": "Oil, olive, salad or cooking" + }, + { + "canonical_name": "oil, peanut, salad or cooking", + "category": "nut-seed", + "density_g_per_ml": 0.913, + "default_unit_class": "volume", + "usda_fdc_id": 171410, + "usda_description": "Oil, peanut, salad or cooking" + }, + { + "canonical_name": "oil, safflower, salad or cooking, high oleic", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171027, + "usda_description": "Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)" + }, + { + "canonical_name": "oil, safflower, salad or cooking, linoleic", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171026, + "usda_description": "Oil, safflower, salad or cooking, linoleic, (over 70%)" + }, + { + "canonical_name": "oil, sesame, salad or cooking", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171016, + "usda_description": "Oil, sesame, salad or cooking" + }, + { + "canonical_name": "oil, soybean, salad or cooking", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171012, + "usda_description": "Oil, soybean, salad or cooking, (partially hydrogenated)" + }, + { + "canonical_name": "oil, soybean, salad or cooking, and cottonseed", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173565, + "usda_description": "Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed" + }, + { + "canonical_name": "oil, sunflower, high oleic", + "category": "oil-fat", + "density_g_per_ml": 0.927, + "default_unit_class": "volume", + "usda_fdc_id": 172338, + "usda_description": "Oil, sunflower, high oleic (70% and over)" + }, + { + "canonical_name": "oil, sunflower, linoleic", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171017, + "usda_description": "Oil, sunflower, linoleic (less than 60%)" + }, + { + "canonical_name": "oil, vegetable, natreon canola, high stability, non trans, high oleic", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171033, + "usda_description": "Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)" + }, + { + "canonical_name": "oil, vegetable, soybean, refined", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172370, + "usda_description": "Oil, vegetable, soybean, refined" + }, + { + "canonical_name": "okara", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 172452, + "usda_description": "Okara" + }, + { + "canonical_name": "okra", + "category": "other", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 169260, + "usda_description": "Okra, raw" + }, + { + "canonical_name": "okra, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 170099, + "usda_description": "Okra, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "okra, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.778, + "default_unit_class": "volume", + "usda_fdc_id": 169263, + "usda_description": "Okra, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "olives, ripe, canned", + "category": "other", + "density_g_per_ml": 0.568, + "default_unit_class": "volume", + "usda_fdc_id": 169094, + "usda_description": "Olives, ripe, canned (small-extra large)" + }, + { + "canonical_name": "omega plus spread margarine-like spread", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173610, + "usda_description": "Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)" + }, + { + "canonical_name": "omelet egg cooked", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172185, + "usda_description": "Egg, whole, cooked, omelet" + }, + { + "canonical_name": "onion powder spices", + "category": "spice", + "density_g_per_ml": 0.477, + "default_unit_class": "volume", + "usda_fdc_id": 171327, + "usda_description": "Spices, onion powder" + }, + { + "canonical_name": "onion rings, breaded, par fried, frozen heated in oven", + "category": "grain", + "density_g_per_ml": 0.203, + "default_unit_class": "volume", + "usda_fdc_id": 170415, + "usda_description": "Onion rings, breaded, par fried, frozen, prepared, heated in oven" + }, + { + "canonical_name": "onions", + "category": "produce-vegetable", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170000, + "usda_description": "Onions, raw" + }, + { + "canonical_name": "onions, canned, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 170003, + "usda_description": "Onions, canned, solids and liquids" + }, + { + "canonical_name": "onions, frozen cooked, boiled, drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170507, + "usda_description": "Onions, frozen, whole, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "onions, frozen cooked, boiled, drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170413, + "usda_description": "Onions, frozen, whole, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "onions, frozen, chopped drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 170101, + "usda_description": "Onions, frozen, chopped, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "onions, frozen, chopped drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 170411, + "usda_description": "Onions, frozen, chopped, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "onions, yellow, sauteed", + "category": "produce-vegetable", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 170004, + "usda_description": "Onions, yellow, sauteed" + }, + { + "canonical_name": "onions, young green, tops only", + "category": "produce-vegetable", + "density_g_per_ml": 0.353, + "default_unit_class": "volume", + "usda_fdc_id": 170006, + "usda_description": "Onions, young green, tops only" + }, + { + "canonical_name": "orange juice, canned, unsweetened", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169099, + "usda_description": "Orange juice, canned, unsweetened" + }, + { + "canonical_name": "orange juice, chilled, includes from concentrate", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169100, + "usda_description": "Orange juice, chilled, includes from concentrate" + }, + { + "canonical_name": "orange juice, chilled, includes from concentrate, with added calcium", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169920, + "usda_description": "Orange juice, chilled, includes from concentrate, with added calcium" + }, + { + "canonical_name": "orange juice, frozen concentrate, unsweetened, diluted with 3 volume water", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169102, + "usda_description": "Orange juice, frozen concentrate, unsweetened, diluted with 3 volume water" + }, + { + "canonical_name": "orange juice, frozen concentrate, unsweetened, undiluted", + "category": "produce-fruit", + "density_g_per_ml": 1.112, + "default_unit_class": "mass", + "usda_fdc_id": 169923, + "usda_description": "Orange juice, frozen concentrate, unsweetened, undiluted" + }, + { + "canonical_name": "orange juice, frozen concentrate, unsweetened, undiluted, with added calcium", + "category": "produce-fruit", + "density_g_per_ml": 1.112, + "default_unit_class": "mass", + "usda_fdc_id": 169922, + "usda_description": "Orange juice, frozen concentrate, unsweetened, undiluted, with added calcium" + }, + { + "canonical_name": "orange marmalade", + "category": "produce-fruit", + "density_g_per_ml": 1.353, + "default_unit_class": "mass", + "usda_fdc_id": 168819, + "usda_description": "Marmalade, orange" + }, + { + "canonical_name": "orange peel", + "category": "produce-fruit", + "density_g_per_ml": 0.406, + "default_unit_class": "volume", + "usda_fdc_id": 169103, + "usda_description": "Orange peel, raw" + }, + { + "canonical_name": "orange pineapple juice blend", + "category": "produce-fruit", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 167792, + "usda_description": "Orange Pineapple Juice Blend" + }, + { + "canonical_name": "orange sherbet", + "category": "produce-fruit", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 167577, + "usda_description": "Sherbet, orange" + }, + { + "canonical_name": "orange tomatoes", + "category": "produce-fruit", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 170502, + "usda_description": "Tomatoes, orange, raw" + }, + { + "canonical_name": "orange-grapefruit juice, canned or bottled, unsweetened", + "category": "produce-fruit", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169104, + "usda_description": "Orange-grapefruit juice, canned or bottled, unsweetened" + }, + { + "canonical_name": "oranges all commercial varieties", + "category": "produce-fruit", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169097, + "usda_description": "Oranges, raw, all commercial varieties" + }, + { + "canonical_name": "oranges florida", + "category": "produce-fruit", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 169918, + "usda_description": "Oranges, raw, Florida" + }, + { + "canonical_name": "oranges navels", + "category": "produce-fruit", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169917, + "usda_description": "Oranges, raw, navels (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "oranges with peel", + "category": "produce-fruit", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 169919, + "usda_description": "Oranges, raw, with peel" + }, + { + "canonical_name": "oregano spices", + "category": "spice", + "density_g_per_ml": 0.284, + "default_unit_class": "volume", + "usda_fdc_id": 171328, + "usda_description": "Spices, oregano, dried" + }, + { + "canonical_name": "oriental radishes", + "category": "other", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 168451, + "usda_description": "Radishes, oriental, raw" + }, + { + "canonical_name": "original creamer", + "category": "dairy", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 175231, + "usda_description": "SILK Original Creamer" + }, + { + "canonical_name": "oyster mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 168580, + "usda_description": "Mushrooms, oyster, raw" + }, + { + "canonical_name": "palm kernel vegetable oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171422, + "usda_description": "Vegetable oil, palm kernel" + }, + { + "canonical_name": "palm oil", + "category": "oil-fat", + "density_g_per_ml": 0.915, + "default_unit_class": "volume", + "usda_fdc_id": 171015, + "usda_description": "Oil, palm" + }, + { + "canonical_name": "palm shortening frying", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172331, + "usda_description": "Shortening frying (heavy duty), palm (hydrogenated)" + }, + { + "canonical_name": "papayas", + "category": "other", + "density_g_per_ml": 0.793, + "default_unit_class": "volume", + "usda_fdc_id": 169926, + "usda_description": "Papayas, raw" + }, + { + "canonical_name": "paprika spices", + "category": "spice", + "density_g_per_ml": 0.463, + "default_unit_class": "volume", + "usda_fdc_id": 171329, + "usda_description": "Spices, paprika" + }, + { + "canonical_name": "parsley", + "category": "other", + "density_g_per_ml": 0.255, + "default_unit_class": "volume", + "usda_fdc_id": 170416, + "usda_description": "Parsley, fresh" + }, + { + "canonical_name": "parsley spices", + "category": "other", + "density_g_per_ml": 0.105, + "default_unit_class": "volume", + "usda_fdc_id": 170930, + "usda_description": "Spices, parsley, dried" + }, + { + "canonical_name": "parsnips", + "category": "other", + "density_g_per_ml": 0.562, + "default_unit_class": "volume", + "usda_fdc_id": 170417, + "usda_description": "Parsnips, raw" + }, + { + "canonical_name": "partially debranned oat flour", + "category": "baking", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169741, + "usda_description": "Oat flour, partially debranned" + }, + { + "canonical_name": "pasta with tomato sauce, no meat, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 172100, + "usda_description": "Pasta with tomato sauce, no meat, canned" + }, + { + "canonical_name": "pasta, cooked, enriched, with added salt", + "category": "grain", + "density_g_per_ml": 0.502, + "default_unit_class": "volume", + "usda_fdc_id": 169751, + "usda_description": "Pasta, cooked, enriched, with added salt" + }, + { + "canonical_name": "pasta, cooked, enriched, without added salt", + "category": "grain", + "density_g_per_ml": 0.502, + "default_unit_class": "volume", + "usda_fdc_id": 169737, + "usda_description": "Pasta, cooked, enriched, without added salt" + }, + { + "canonical_name": "pasta, cooked, unenriched, with added salt", + "category": "grain", + "density_g_per_ml": 0.502, + "default_unit_class": "volume", + "usda_fdc_id": 172014, + "usda_description": "Pasta, cooked, unenriched, with added salt" + }, + { + "canonical_name": "pasta, cooked, unenriched, without added salt", + "category": "grain", + "density_g_per_ml": 0.502, + "default_unit_class": "volume", + "usda_fdc_id": 168928, + "usda_description": "Pasta, cooked, unenriched, without added salt" + }, + { + "canonical_name": "pasta, dry, enriched", + "category": "grain", + "density_g_per_ml": 0.386, + "default_unit_class": "volume", + "usda_fdc_id": 169736, + "usda_description": "Pasta, dry, enriched" + }, + { + "canonical_name": "pasta, dry, unenriched", + "category": "grain", + "density_g_per_ml": 0.386, + "default_unit_class": "volume", + "usda_fdc_id": 168927, + "usda_description": "Pasta, dry, unenriched" + }, + { + "canonical_name": "pasta, gluten-free, brown rice flour, cooked", + "category": "baking", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 172026, + "usda_description": "Pasta, gluten-free, brown rice flour, cooked, TINKYADA" + }, + { + "canonical_name": "pasta, gluten-free, corn and rice flour, cooked", + "category": "baking", + "density_g_per_ml": 0.596, + "default_unit_class": "volume", + "usda_fdc_id": 173265, + "usda_description": "Pasta, gluten-free, corn and rice flour, cooked" + }, + { + "canonical_name": "pasta, gluten-free, corn flour and quinoa flour, cooked", + "category": "grain", + "density_g_per_ml": 0.576, + "default_unit_class": "volume", + "usda_fdc_id": 172027, + "usda_description": "Pasta, gluten-free, corn flour and quinoa flour, cooked, ANCIENT HARVEST" + }, + { + "canonical_name": "pasta, gluten-free, corn, cooked", + "category": "grain", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168900, + "usda_description": "Pasta, gluten-free, corn, cooked" + }, + { + "canonical_name": "pasta, gluten-free, corn, dry", + "category": "grain", + "density_g_per_ml": 0.444, + "default_unit_class": "volume", + "usda_fdc_id": 168899, + "usda_description": "Pasta, gluten-free, corn, dry" + }, + { + "canonical_name": "pasta, gluten-free, rice flour and rice bran extract, cooked, de", + "category": "baking", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 173264, + "usda_description": "Pasta, gluten-free, rice flour and rice bran extract, cooked, DE BOLES" + }, + { + "canonical_name": "pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked", + "category": "grain", + "density_g_per_ml": 0.484, + "default_unit_class": "volume", + "usda_fdc_id": 172024, + "usda_description": "Pasta, whole grain, 51% whole wheat, remaining enriched semolina, cooked (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry", + "category": "grain", + "density_g_per_ml": 0.386, + "default_unit_class": "volume", + "usda_fdc_id": 172025, + "usda_description": "Pasta, whole grain, 51% whole wheat, remaining enriched semolina, dry (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked", + "category": "grain", + "density_g_per_ml": 0.484, + "default_unit_class": "volume", + "usda_fdc_id": 168916, + "usda_description": "Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, cooked" + }, + { + "canonical_name": "pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry", + "category": "grain", + "density_g_per_ml": 0.386, + "default_unit_class": "volume", + "usda_fdc_id": 168915, + "usda_description": "Pasta, whole grain, 51% whole wheat, remaining unenriched semolina, dry" + }, + { + "canonical_name": "pasta, whole-wheat, cooked", + "category": "grain", + "density_g_per_ml": 0.484, + "default_unit_class": "volume", + "usda_fdc_id": 168910, + "usda_description": "Pasta, whole-wheat, cooked (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pasta, whole-wheat, dry", + "category": "grain", + "density_g_per_ml": 0.386, + "default_unit_class": "volume", + "usda_fdc_id": 169738, + "usda_description": "Pasta, whole-wheat, dry (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pasteurized process cheese product", + "category": "dairy", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 173446, + "usda_description": "KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product" + }, + { + "canonical_name": "pasteurized process cheese sauce", + "category": "dairy", + "density_g_per_ml": 1.116, + "default_unit_class": "mass", + "usda_fdc_id": 172209, + "usda_description": "KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce" + }, + { + "canonical_name": "pate de foie gras, canned , smoked", + "category": "other", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 171100, + "usda_description": "Pate de foie gras, canned (goose liver pate), smoked" + }, + { + "canonical_name": "pate, chicken liver, canned", + "category": "meat", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 172928, + "usda_description": "Pate, chicken liver, canned" + }, + { + "canonical_name": "pate, goose liver, smoked, canned", + "category": "other", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 172929, + "usda_description": "Pate, goose liver, smoked, canned" + }, + { + "canonical_name": "pate, liver, not specified, canned", + "category": "other", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 172930, + "usda_description": "Pate, liver, not specified, canned" + }, + { + "canonical_name": "peach nectar, canned, with added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 168185, + "usda_description": "Peach nectar, canned, with added ascorbic acid" + }, + { + "canonical_name": "peach nectar, canned, with sucralose, without added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 169117, + "usda_description": "Peach nectar, canned, with sucralose, without added ascorbic acid" + }, + { + "canonical_name": "peaches, canned, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 169113, + "usda_description": "Peaches, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "peaches, canned, extra light syrup, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169931, + "usda_description": "Peaches, canned, extra light syrup, solids and liquids (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "peaches, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 169112, + "usda_description": "Peaches, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "peaches, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.938, + "default_unit_class": "volume", + "usda_fdc_id": 168181, + "usda_description": "Peaches, canned, heavy syrup, drained" + }, + { + "canonical_name": "peaches, canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169930, + "usda_description": "Peaches, canned, juice pack, solids and liquids" + }, + { + "canonical_name": "peaches, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 169111, + "usda_description": "Peaches, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "peaches, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 169929, + "usda_description": "Peaches, canned, water pack, solids and liquids" + }, + { + "canonical_name": "peaches, frozen, sliced, sweetened", + "category": "produce-fruit", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 169116, + "usda_description": "Peaches, frozen, sliced, sweetened" + }, + { + "canonical_name": "peaches, spiced, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 169114, + "usda_description": "Peaches, spiced, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "peanut butter, chunk style, with salt", + "category": "oil-fat", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 174265, + "usda_description": "Peanut butter, chunk style, with salt" + }, + { + "canonical_name": "peanut butter, chunk style, without salt", + "category": "oil-fat", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 172469, + "usda_description": "Peanut butter, chunk style, without salt" + }, + { + "canonical_name": "peanut butter, smooth style, with salt", + "category": "oil-fat", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 174266, + "usda_description": "Peanut butter, smooth style, with salt (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "peanut butter, smooth style, without salt", + "category": "oil-fat", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 172470, + "usda_description": "Peanut butter, smooth style, without salt" + }, + { + "canonical_name": "peanut butter, smooth, reduced fat", + "category": "oil-fat", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 172458, + "usda_description": "Peanut butter, smooth, reduced fat" + }, + { + "canonical_name": "peanuts, all types, dry-roasted, without salt", + "category": "nut-seed", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 173806, + "usda_description": "Peanuts, all types, dry-roasted, without salt" + }, + { + "canonical_name": "peanuts, all types, oil-roasted, with salt", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 174261, + "usda_description": "Peanuts, all types, oil-roasted, with salt" + }, + { + "canonical_name": "peanuts, all types, oil-roasted, without salt", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 175258, + "usda_description": "Peanuts, all types, oil-roasted, without salt" + }, + { + "canonical_name": "peanuts, spanish, oil-roasted, with salt", + "category": "nut-seed", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 172431, + "usda_description": "Peanuts, spanish, oil-roasted, with salt" + }, + { + "canonical_name": "peanuts, spanish, oil-roasted, without salt", + "category": "nut-seed", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 173807, + "usda_description": "Peanuts, spanish, oil-roasted, without salt" + }, + { + "canonical_name": "peanuts, valencia, oil-roasted, with salt", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 172433, + "usda_description": "Peanuts, valencia, oil-roasted, with salt" + }, + { + "canonical_name": "peanuts, valencia, oil-roasted, without salt", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 173808, + "usda_description": "Peanuts, valencia, oil-roasted, without salt" + }, + { + "canonical_name": "peanuts, virginia, oil-roasted, with salt", + "category": "nut-seed", + "density_g_per_ml": 0.604, + "default_unit_class": "volume", + "usda_fdc_id": 174264, + "usda_description": "Peanuts, virginia, oil-roasted, with salt" + }, + { + "canonical_name": "peanuts, virginia, oil-roasted, without salt", + "category": "nut-seed", + "density_g_per_ml": 0.604, + "default_unit_class": "volume", + "usda_fdc_id": 173809, + "usda_description": "Peanuts, virginia, oil-roasted, without salt" + }, + { + "canonical_name": "pear nectar, canned, with added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 168186, + "usda_description": "Pear nectar, canned, with added ascorbic acid" + }, + { + "canonical_name": "pear nectar, canned, without added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 169940, + "usda_description": "Pear nectar, canned, without added ascorbic acid" + }, + { + "canonical_name": "pearled barley", + "category": "grain", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 170284, + "usda_description": "Barley, pearled, raw" + }, + { + "canonical_name": "pears", + "category": "produce-fruit", + "density_g_per_ml": 0.636, + "default_unit_class": "volume", + "usda_fdc_id": 169118, + "usda_description": "Pears, raw" + }, + { + "canonical_name": "pears bartlett", + "category": "produce-fruit", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167776, + "usda_description": "Pears, raw, bartlett (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pears bosc", + "category": "produce-fruit", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167778, + "usda_description": "Pears, raw, bosc (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pears green anjou", + "category": "produce-fruit", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167779, + "usda_description": "Pears, raw, green anjou (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pears red anjou", + "category": "produce-fruit", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167777, + "usda_description": "Pears, raw, red anjou" + }, + { + "canonical_name": "pears, canned, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 169120, + "usda_description": "Pears, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "pears, canned, extra light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169937, + "usda_description": "Pears, canned, extra light syrup pack, solids and liquids (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "pears, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 169939, + "usda_description": "Pears, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "pears, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.85, + "default_unit_class": "volume", + "usda_fdc_id": 168182, + "usda_description": "Pears, canned, heavy syrup, drained" + }, + { + "canonical_name": "pears, canned, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 169936, + "usda_description": "Pears, canned, juice pack, solids and liquids" + }, + { + "canonical_name": "pears, canned, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 169938, + "usda_description": "Pears, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "pears, canned, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 169119, + "usda_description": "Pears, canned, water pack, solids and liquids" + }, + { + "canonical_name": "peas and carrots, canned, no salt added, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 170512, + "usda_description": "Peas and carrots, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "peas and carrots, canned, regular pack, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 170424, + "usda_description": "Peas and carrots, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "peas and carrots, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170513, + "usda_description": "Peas and carrots, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas and carrots, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170018, + "usda_description": "Peas and carrots, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peas and carrots, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170425, + "usda_description": "Peas and carrots, frozen, unprepared" + }, + { + "canonical_name": "peas and onions, canned, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170019, + "usda_description": "Peas and onions, canned, solids and liquids" + }, + { + "canonical_name": "peas and onions, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170514, + "usda_description": "Peas and onions, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas and onions, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170021, + "usda_description": "Peas and onions, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peas and onions, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.583, + "default_unit_class": "volume", + "usda_fdc_id": 170020, + "usda_description": "Peas and onions, frozen, unprepared" + }, + { + "canonical_name": "peas, edible-podded drained, with salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170509, + "usda_description": "Peas, edible-podded, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas, edible-podded, boiled, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170011, + "usda_description": "Peas, edible-podded, boiled, drained, without salt" + }, + { + "canonical_name": "peas, edible-podded, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170510, + "usda_description": "Peas, edible-podded, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas, edible-podded, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170418, + "usda_description": "Peas, edible-podded, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peas, edible-podded, frozen, unprepared", + "category": "other", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170012, + "usda_description": "Peas, edible-podded, frozen, unprepared" + }, + { + "canonical_name": "peas, green , canned, drained solids, unprepared", + "category": "other", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 170013, + "usda_description": "Peas, green (includes baby and lesuer types), canned, drained solids, unprepared" + }, + { + "canonical_name": "peas, green drained, with salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170102, + "usda_description": "Peas, green, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas, green drained, without salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170420, + "usda_description": "Peas, green, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peas, green, canned, drained solids, rinsed in tap water", + "category": "beverage", + "density_g_per_ml": 0.689, + "default_unit_class": "volume", + "usda_fdc_id": 170015, + "usda_description": "Peas, green, canned, drained solids, rinsed in tap water" + }, + { + "canonical_name": "peas, green, canned, no salt added, drained solids", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 170104, + "usda_description": "Peas, green, canned, no salt added, drained solids" + }, + { + "canonical_name": "peas, green, canned, no salt added, solids and liquids", + "category": "spice", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 170103, + "usda_description": "Peas, green, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "peas, green, canned, regular pack, solids and liquids", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 170421, + "usda_description": "Peas, green, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "peas, green, canned, seasoned, solids and liquids", + "category": "other", + "density_g_per_ml": 0.962, + "default_unit_class": "volume", + "usda_fdc_id": 170014, + "usda_description": "Peas, green, canned, seasoned, solids and liquids" + }, + { + "canonical_name": "peas, green, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170105, + "usda_description": "Peas, green, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peas, green, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170017, + "usda_description": "Peas, green, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peas, green, frozen, unprepared", + "category": "other", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170016, + "usda_description": "Peas, green, frozen, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "peas, green, split, mature seeds", + "category": "nut-seed", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 172428, + "usda_description": "Peas, green, split, mature seeds, raw" + }, + { + "canonical_name": "peas, mature seeds, sprouted", + "category": "nut-seed", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170422, + "usda_description": "Peas, mature seeds, sprouted, raw" + }, + { + "canonical_name": "peas, split, mature seeds with salt", + "category": "spice", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 175257, + "usda_description": "Peas, split, mature seeds, cooked, boiled, with salt" + }, + { + "canonical_name": "peas, split, mature seeds without salt", + "category": "spice", + "density_g_per_ml": 0.827, + "default_unit_class": "volume", + "usda_fdc_id": 172429, + "usda_description": "Peas, split, mature seeds, cooked, boiled, without salt" + }, + { + "canonical_name": "pecans nuts", + "category": "nut-seed", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 170182, + "usda_description": "Nuts, pecans" + }, + { + "canonical_name": "peeled cucumber", + "category": "produce-vegetable", + "density_g_per_ml": 0.533, + "default_unit_class": "volume", + "usda_fdc_id": 169225, + "usda_description": "Cucumber, peeled, raw" + }, + { + "canonical_name": "pepeao", + "category": "other", + "density_g_per_ml": 0.101, + "default_unit_class": "volume", + "usda_fdc_id": 168418, + "usda_description": "Pepeao, dried" + }, + { + "canonical_name": "peppermint", + "category": "spice", + "density_g_per_ml": 0.108, + "default_unit_class": "volume", + "usda_fdc_id": 173474, + "usda_description": "Peppermint, fresh" + }, + { + "canonical_name": "peppers, chili, green, canned", + "category": "spice", + "density_g_per_ml": 0.588, + "default_unit_class": "volume", + "usda_fdc_id": 168577, + "usda_description": "Peppers, chili, green, canned" + }, + { + "canonical_name": "peppers, hot chile, sun-dried", + "category": "spice", + "density_g_per_ml": 0.156, + "default_unit_class": "volume", + "usda_fdc_id": 168570, + "usda_description": "Peppers, hot chile, sun-dried" + }, + { + "canonical_name": "peppers, hot chili, green", + "category": "spice", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170497, + "usda_description": "Peppers, hot chili, green, raw" + }, + { + "canonical_name": "peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 170426, + "usda_description": "Peppers, hot chili, green, canned, pods, excluding seeds, solids and liquids" + }, + { + "canonical_name": "peppers, hot chili, red", + "category": "spice", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170106, + "usda_description": "Peppers, hot chili, red, raw" + }, + { + "canonical_name": "peppers, hot chili, red, canned, excluding seeds, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 170107, + "usda_description": "Peppers, hot chili, red, canned, excluding seeds, solids and liquids" + }, + { + "canonical_name": "peppers, hot pickled, canned", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 169766, + "usda_description": "Peppers, hot pickled, canned" + }, + { + "canonical_name": "peppers, jalapeno, canned, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170080, + "usda_description": "Peppers, jalapeno, canned, solids and liquids" + }, + { + "canonical_name": "peppers, sweet, green", + "category": "spice", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 170427, + "usda_description": "Peppers, sweet, green, raw" + }, + { + "canonical_name": "peppers, sweet, green drained, with salt", + "category": "spice", + "density_g_per_ml": 0.781, + "default_unit_class": "volume", + "usda_fdc_id": 170109, + "usda_description": "Peppers, sweet, green, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peppers, sweet, green drained, without salt", + "category": "spice", + "density_g_per_ml": 0.678, + "default_unit_class": "volume", + "usda_fdc_id": 170428, + "usda_description": "Peppers, sweet, green, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peppers, sweet, green, canned, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170429, + "usda_description": "Peppers, sweet, green, canned, solids and liquids" + }, + { + "canonical_name": "peppers, sweet, green, frozen, chopped drained, with salt", + "category": "spice", + "density_g_per_ml": 0.678, + "default_unit_class": "volume", + "usda_fdc_id": 170516, + "usda_description": "Peppers, sweet, green, frozen, chopped, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peppers, sweet, green, sauteed", + "category": "spice", + "density_g_per_ml": 0.486, + "default_unit_class": "volume", + "usda_fdc_id": 170024, + "usda_description": "Peppers, sweet, green, sauteed" + }, + { + "canonical_name": "peppers, sweet, red", + "category": "spice", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 170108, + "usda_description": "Peppers, sweet, red, raw" + }, + { + "canonical_name": "peppers, sweet, red drained, with salt", + "category": "spice", + "density_g_per_ml": 0.795, + "default_unit_class": "volume", + "usda_fdc_id": 170515, + "usda_description": "Peppers, sweet, red, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "peppers, sweet, red drained, without salt", + "category": "spice", + "density_g_per_ml": 0.643, + "default_unit_class": "volume", + "usda_fdc_id": 170110, + "usda_description": "Peppers, sweet, red, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "peppers, sweet, red, canned, solids and liquids", + "category": "spice", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168546, + "usda_description": "Peppers, sweet, red, canned, solids and liquids" + }, + { + "canonical_name": "peppers, sweet, red, frozen, chopped, boiled, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.678, + "default_unit_class": "volume", + "usda_fdc_id": 168549, + "usda_description": "Peppers, sweet, red, frozen, chopped, boiled, drained, with salt" + }, + { + "canonical_name": "peppers, sweet, red, frozen, chopped, boiled, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.678, + "default_unit_class": "volume", + "usda_fdc_id": 168548, + "usda_description": "Peppers, sweet, red, frozen, chopped, boiled, drained, without salt" + }, + { + "canonical_name": "peppers, sweet, red, sauteed", + "category": "spice", + "density_g_per_ml": 0.448, + "default_unit_class": "volume", + "usda_fdc_id": 168550, + "usda_description": "Peppers, sweet, red, sauteed" + }, + { + "canonical_name": "pheasant, cooked, total edible", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169903, + "usda_description": "Pheasant, cooked, total edible" + }, + { + "canonical_name": "pickled eggplant", + "category": "dairy", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 169892, + "usda_description": "Eggplant, pickled" + }, + { + "canonical_name": "pickles, chowchow, with cauliflower onion mustard, sweet", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169397, + "usda_description": "Pickles, chowchow, with cauliflower onion mustard, sweet" + }, + { + "canonical_name": "pickles, cucumber, dill or kosher dill", + "category": "produce-vegetable", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 168558, + "usda_description": "Pickles, cucumber, dill or kosher dill" + }, + { + "canonical_name": "pickles, cucumber, dill, reduced sodium", + "category": "produce-vegetable", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 168563, + "usda_description": "Pickles, cucumber, dill, reduced sodium" + }, + { + "canonical_name": "pickles, cucumber, sour", + "category": "produce-vegetable", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169379, + "usda_description": "Pickles, cucumber, sour" + }, + { + "canonical_name": "pickles, cucumber, sour, low sodium", + "category": "produce-vegetable", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 168562, + "usda_description": "Pickles, cucumber, sour, low sodium" + }, + { + "canonical_name": "pickles, cucumber, sweet", + "category": "produce-vegetable", + "density_g_per_ml": 0.661, + "default_unit_class": "volume", + "usda_fdc_id": 169378, + "usda_description": "Pickles, cucumber, sweet (includes bread and butter pickles)" + }, + { + "canonical_name": "pickles, cucumber, sweet, low sodium", + "category": "produce-vegetable", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169380, + "usda_description": "Pickles, cucumber, sweet, low sodium (includes bread and butter pickles)" + }, + { + "canonical_name": "pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled", + "category": "baking", + "density_g_per_ml": 0.545, + "default_unit_class": "volume", + "usda_fdc_id": 172813, + "usda_description": "Pie crust, cookie-type, prepared from recipe, vanilla wafer, chilled" + }, + { + "canonical_name": "pie fillings, blueberry, canned", + "category": "produce-fruit", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 167738, + "usda_description": "Pie fillings, blueberry, canned" + }, + { + "canonical_name": "pie fillings, cherry, low calorie", + "category": "produce-fruit", + "density_g_per_ml": 1.116, + "default_unit_class": "mass", + "usda_fdc_id": 169062, + "usda_description": "Pie fillings, cherry, low calorie" + }, + { + "canonical_name": "pigeonpeas, immature seeds drained, with salt", + "category": "spice", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 170517, + "usda_description": "Pigeonpeas, immature seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "pigeonpeas, immature seeds drained, without salt", + "category": "spice", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 170430, + "usda_description": "Pigeonpeas, immature seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "pilinuts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170590, + "usda_description": "Nuts, pilinuts, dried" + }, + { + "canonical_name": "pine nuts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 170591, + "usda_description": "Nuts, pine nuts, dried" + }, + { + "canonical_name": "pineapple all varieties", + "category": "produce-fruit", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169124, + "usda_description": "Pineapple, raw, all varieties" + }, + { + "canonical_name": "pineapple extra sweet variety", + "category": "produce-fruit", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168194, + "usda_description": "Pineapple, raw, extra sweet variety" + }, + { + "canonical_name": "pineapple juice, canned or bottled, unsweetened, with added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 168187, + "usda_description": "Pineapple juice, canned or bottled, unsweetened, with added ascorbic acid" + }, + { + "canonical_name": "pineapple juice, canned or bottled, unsweetened, without added ascorbic acid", + "category": "produce-fruit", + "density_g_per_ml": 1.058, + "default_unit_class": "mass", + "usda_fdc_id": 169947, + "usda_description": "Pineapple juice, canned or bottled, unsweetened, without added ascorbic acid" + }, + { + "canonical_name": "pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water", + "category": "produce-fruit", + "density_g_per_ml": 1.056, + "default_unit_class": "mass", + "usda_fdc_id": 169128, + "usda_description": "Pineapple juice, frozen concentrate, unsweetened, diluted with 3 volume water" + }, + { + "canonical_name": "pineapple toppings", + "category": "produce-fruit", + "density_g_per_ml": 1.429, + "default_unit_class": "mass", + "usda_fdc_id": 169665, + "usda_description": "Toppings, pineapple" + }, + { + "canonical_name": "pineapple traditional varieties", + "category": "produce-fruit", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168193, + "usda_description": "Pineapple, raw, traditional varieties" + }, + { + "canonical_name": "pineapple, canned, extra heavy syrup pack, solids and liquids", + "category": "produce-fruit", + "density_g_per_ml": 1.099, + "default_unit_class": "mass", + "usda_fdc_id": 169945, + "usda_description": "Pineapple, canned, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "pineapple, canned, heavy syrup pack, solids and liquids", + "category": "produce-fruit", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 169944, + "usda_description": "Pineapple, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "pineapple, canned, juice pack, drained", + "category": "produce-fruit", + "density_g_per_ml": 0.758, + "default_unit_class": "volume", + "usda_fdc_id": 167767, + "usda_description": "Pineapple, canned, juice pack, drained" + }, + { + "canonical_name": "pineapple, canned, juice pack, solids and liquids", + "category": "produce-fruit", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169126, + "usda_description": "Pineapple, canned, juice pack, solids and liquids" + }, + { + "canonical_name": "pineapple, canned, light syrup pack, solids and liquids", + "category": "produce-fruit", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 169127, + "usda_description": "Pineapple, canned, light syrup pack, solids and liquids" + }, + { + "canonical_name": "pineapple, canned, water pack, solids and liquids", + "category": "produce-fruit", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 169125, + "usda_description": "Pineapple, canned, water pack, solids and liquids" + }, + { + "canonical_name": "pineapple, frozen, chunks, sweetened", + "category": "produce-fruit", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169946, + "usda_description": "Pineapple, frozen, chunks, sweetened" + }, + { + "canonical_name": "pink grapefruit juice", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 167774, + "usda_description": "Grapefruit juice, pink, raw" + }, + { + "canonical_name": "pink or red lentils", + "category": "legume", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 174284, + "usda_description": "Lentils, pink or red, raw" + }, + { + "canonical_name": "pistachio nuts nuts", + "category": "nut-seed", + "density_g_per_ml": 0.52, + "default_unit_class": "volume", + "usda_fdc_id": 170184, + "usda_description": "Nuts, pistachio nuts, raw" + }, + { + "canonical_name": "pitanga", + "category": "other", + "density_g_per_ml": 0.731, + "default_unit_class": "volume", + "usda_fdc_id": 169129, + "usda_description": "Pitanga, (surinam-cherry), raw" + }, + { + "canonical_name": "plain croutons", + "category": "other", + "density_g_per_ml": 0.127, + "default_unit_class": "volume", + "usda_fdc_id": 172751, + "usda_description": "Croutons, plain" + }, + { + "canonical_name": "plantains, green, boiled", + "category": "oil-fat", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 168216, + "usda_description": "Plantains, green, boiled" + }, + { + "canonical_name": "plantains, green, fried", + "category": "other", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 168199, + "usda_description": "Plantains, green, fried" + }, + { + "canonical_name": "plantains, yellow, baked", + "category": "other", + "density_g_per_ml": 0.588, + "default_unit_class": "volume", + "usda_fdc_id": 169131, + "usda_description": "Plantains, yellow, baked" + }, + { + "canonical_name": "plums", + "category": "other", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169949, + "usda_description": "Plums, raw" + }, + { + "canonical_name": "plums, canned, heavy syrup, drained", + "category": "condiment", + "density_g_per_ml": 0.773, + "default_unit_class": "volume", + "usda_fdc_id": 168183, + "usda_description": "Plums, canned, heavy syrup, drained" + }, + { + "canonical_name": "plums, canned, purple, extra heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 169133, + "usda_description": "Plums, canned, purple, extra heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "plums, canned, purple, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 169132, + "usda_description": "Plums, canned, purple, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "plums, canned, purple, juice pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 169951, + "usda_description": "Plums, canned, purple, juice pack, solids and liquids" + }, + { + "canonical_name": "plums, canned, purple, light syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 169952, + "usda_description": "Plums, canned, purple, light syrup pack, solids and liquids" + }, + { + "canonical_name": "plums, canned, purple, water pack, solids and liquids", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169950, + "usda_description": "Plums, canned, purple, water pack, solids and liquids" + }, + { + "canonical_name": "plums, dried , stewed, with added sugar", + "category": "baking", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 167752, + "usda_description": "Plums, dried (prunes), stewed, with added sugar" + }, + { + "canonical_name": "plums, dried , stewed, without added sugar", + "category": "baking", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 167751, + "usda_description": "Plums, dried (prunes), stewed, without added sugar" + }, + { + "canonical_name": "plums, dried , uncooked", + "category": "other", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 168162, + "usda_description": "Plums, dried (prunes), uncooked" + }, + { + "canonical_name": "pods balsam-pear", + "category": "produce-fruit", + "density_g_per_ml": 0.393, + "default_unit_class": "volume", + "usda_fdc_id": 168393, + "usda_description": "Balsam-pear (bitter gourd), pods, raw" + }, + { + "canonical_name": "poi", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170431, + "usda_description": "Poi" + }, + { + "canonical_name": "pokeberry shoots", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170432, + "usda_description": "Pokeberry shoots, (poke), raw" + }, + { + "canonical_name": "pokeberry shoots, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 170518, + "usda_description": "Pokeberry shoots, (poke), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "pokeberry shoots, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.687, + "default_unit_class": "volume", + "usda_fdc_id": 170433, + "usda_description": "Pokeberry shoots, (poke), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "pomegranates", + "category": "other", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 169134, + "usda_description": "Pomegranates, raw" + }, + { + "canonical_name": "poppy seed spices", + "category": "nut-seed", + "density_g_per_ml": 0.582, + "default_unit_class": "volume", + "usda_fdc_id": 171330, + "usda_description": "Spices, poppy seed" + }, + { + "canonical_name": "poppyseed oil", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171423, + "usda_description": "Oil, poppyseed" + }, + { + "canonical_name": "pork leg , rump half, separable lean and fat, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 167815, + "usda_description": "Pork, fresh, leg (ham), rump half, separable lean and fat, cooked, roasted" + }, + { + "canonical_name": "pork leg separable lean and fat, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168223, + "usda_description": "Pork, fresh, leg (ham), whole, separable lean and fat, cooked, roasted" + }, + { + "canonical_name": "pork leg separable lean only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168225, + "usda_description": "Pork, fresh, leg (ham), whole, separable lean only, cooked, roasted" + }, + { + "canonical_name": "pork shoulder separable lean and fat, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 167844, + "usda_description": "Pork, fresh, shoulder, whole, separable lean and fat, cooked, roasted" + }, + { + "canonical_name": "pork shoulder separable lean only, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 167846, + "usda_description": "Pork, fresh, shoulder, whole, separable lean only, cooked, roasted" + }, + { + "canonical_name": "pork shoulder, arm picnic, separable lean and fat, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168257, + "usda_description": "Pork, fresh, shoulder, arm picnic, separable lean and fat, cooked, roasted" + }, + { + "canonical_name": "pork variety meats and by-products, heart, cooked, braised", + "category": "meat", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168268, + "usda_description": "Pork, fresh, variety meats and by-products, heart, cooked, braised" + }, + { + "canonical_name": "pork variety meats and by-products, kidneys, cooked, braised", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167860, + "usda_description": "Pork, fresh, variety meats and by-products, kidneys, cooked, braised" + }, + { + "canonical_name": "pork, cured, ham separable lean and fat, unheated", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167875, + "usda_description": "Pork, cured, ham, whole, separable lean and fat, unheated" + }, + { + "canonical_name": "pork, cured, ham separable lean only, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168284, + "usda_description": "Pork, cured, ham, whole, separable lean only, roasted" + }, + { + "canonical_name": "pork, cured, ham separable lean only, unheated", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167876, + "usda_description": "Pork, cured, ham, whole, separable lean only, unheated" + }, + { + "canonical_name": "pork, cured, ham, boneless, extra lean , roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167871, + "usda_description": "Pork, cured, ham, boneless, extra lean (approximately 5% fat), roasted" + }, + { + "canonical_name": "pork, cured, ham, boneless, extra lean and regular, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168296, + "usda_description": "Pork, cured, ham, boneless, extra lean and regular, roasted" + }, + { + "canonical_name": "pork, cured, ham, boneless, extra lean and regular, unheated", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168295, + "usda_description": "Pork, cured, ham, boneless, extra lean and regular, unheated" + }, + { + "canonical_name": "pork, cured, ham, boneless, regular , roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167872, + "usda_description": "Pork, cured, ham, boneless, regular (approximately 11% fat), roasted" + }, + { + "canonical_name": "pork, cured, ham, extra lean , canned, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168280, + "usda_description": "Pork, cured, ham, extra lean (approximately 4% fat), canned, roasted" + }, + { + "canonical_name": "pork, cured, ham, extra lean , canned, unheated", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168279, + "usda_description": "Pork, cured, ham, extra lean (approximately 4% fat), canned, unheated" + }, + { + "canonical_name": "pork, cured, ham, extra lean and regular, canned, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167886, + "usda_description": "Pork, cured, ham, extra lean and regular, canned, roasted" + }, + { + "canonical_name": "pork, cured, ham, extra lean and regular, canned, unheated", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167885, + "usda_description": "Pork, cured, ham, extra lean and regular, canned, unheated" + }, + { + "canonical_name": "pork, cured, ham, regular , canned, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168281, + "usda_description": "Pork, cured, ham, regular (approximately 13% fat), canned, roasted" + }, + { + "canonical_name": "pork, cured, shoulder, arm picnic, separable lean and fat, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167879, + "usda_description": "Pork, cured, shoulder, arm picnic, separable lean and fat, roasted" + }, + { + "canonical_name": "pork, cured, shoulder, arm picnic, separable lean only, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 167880, + "usda_description": "Pork, cured, shoulder, arm picnic, separable lean only, roasted" + }, + { + "canonical_name": "port de salut cheese", + "category": "dairy", + "density_g_per_ml": 0.518, + "default_unit_class": "volume", + "usda_fdc_id": 170849, + "usda_description": "Cheese, port de salut" + }, + { + "canonical_name": "portabella mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 169255, + "usda_description": "Mushrooms, portabella, raw" + }, + { + "canonical_name": "potato flour", + "category": "produce-vegetable", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 168446, + "usda_description": "Potato flour" + }, + { + "canonical_name": "potato puffs, frozen, oven-heated", + "category": "produce-vegetable", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 170048, + "usda_description": "Potato puffs, frozen, oven-heated" + }, + { + "canonical_name": "potato puffs, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170047, + "usda_description": "Potato puffs, frozen, unprepared" + }, + { + "canonical_name": "potato salad with egg", + "category": "produce-vegetable", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 173343, + "usda_description": "Potato salad with egg" + }, + { + "canonical_name": "potatoes, au gratin, home-prepared from recipe using butter", + "category": "oil-fat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170442, + "usda_description": "Potatoes, au gratin, home-prepared from recipe using butter" + }, + { + "canonical_name": "potatoes, au gratin, home-prepared from recipe using margarine", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170524, + "usda_description": "Potatoes, au gratin, home-prepared from recipe using margarine" + }, + { + "canonical_name": "potatoes, baked, flesh and skin, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 170111, + "usda_description": "Potatoes, baked, flesh and skin, with salt" + }, + { + "canonical_name": "potatoes, baked, flesh, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 170112, + "usda_description": "Potatoes, baked, flesh, with salt" + }, + { + "canonical_name": "potatoes, baked, flesh, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 170033, + "usda_description": "Potatoes, baked, flesh, without salt" + }, + { + "canonical_name": "potatoes, boiled, cooked in skin, flesh, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170114, + "usda_description": "Potatoes, boiled, cooked in skin, flesh, with salt" + }, + { + "canonical_name": "potatoes, boiled, cooked in skin, flesh, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170438, + "usda_description": "Potatoes, boiled, cooked in skin, flesh, without salt" + }, + { + "canonical_name": "potatoes, boiled, cooked without skin, flesh, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170520, + "usda_description": "Potatoes, boiled, cooked without skin, flesh, with salt" + }, + { + "canonical_name": "potatoes, boiled, cooked without skin, flesh, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170440, + "usda_description": "Potatoes, boiled, cooked without skin, flesh, without salt" + }, + { + "canonical_name": "potatoes, canned, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170444, + "usda_description": "Potatoes, canned, drained solids" + }, + { + "canonical_name": "potatoes, canned, drained solids, no salt added", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169084, + "usda_description": "Potatoes, canned, drained solids, no salt added" + }, + { + "canonical_name": "potatoes, canned, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 1.268, + "default_unit_class": "mass", + "usda_fdc_id": 170443, + "usda_description": "Potatoes, canned, solids and liquids" + }, + { + "canonical_name": "potatoes, hash brown, frozen, plain pan fried in canola oil", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170044, + "usda_description": "Potatoes, hash brown, frozen, plain, prepared, pan fried in canola oil" + }, + { + "canonical_name": "potatoes, hash brown, frozen, plain, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170043, + "usda_description": "Potatoes, hash brown, frozen, plain, unprepared" + }, + { + "canonical_name": "potatoes, hash brown, home-prepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170036, + "usda_description": "Potatoes, hash brown, home-prepared" + }, + { + "canonical_name": "potatoes, hash brown, refrigerated pan-fried in canola oil", + "category": "produce-vegetable", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 167605, + "usda_description": "Potatoes, hash brown, refrigerated, prepared, pan-fried in canola oil" + }, + { + "canonical_name": "potatoes, hash brown, refrigerated, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.672, + "default_unit_class": "volume", + "usda_fdc_id": 167604, + "usda_description": "Potatoes, hash brown, refrigerated, unprepared" + }, + { + "canonical_name": "potatoes, mashed, dehydrated, flakes without milk, dry form", + "category": "produce-vegetable", + "density_g_per_ml": 0.254, + "default_unit_class": "volume", + "usda_fdc_id": 170445, + "usda_description": "Potatoes, mashed, dehydrated, flakes without milk, dry form" + }, + { + "canonical_name": "potatoes, mashed, dehydrated, granules with milk, dry form", + "category": "produce-vegetable", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 170041, + "usda_description": "Potatoes, mashed, dehydrated, granules with milk, dry form" + }, + { + "canonical_name": "potatoes, mashed, dehydrated, granules without milk, dry form", + "category": "produce-vegetable", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 170039, + "usda_description": "Potatoes, mashed, dehydrated, granules without milk, dry form" + }, + { + "canonical_name": "potatoes, mashed, home-prepared, whole milk added", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170493, + "usda_description": "Potatoes, mashed, home-prepared, whole milk added" + }, + { + "canonical_name": "potatoes, mashed, home-prepared, whole milk and butter added", + "category": "oil-fat", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 168555, + "usda_description": "Potatoes, mashed, home-prepared, whole milk and butter added" + }, + { + "canonical_name": "potatoes, mashed, home-prepared, whole milk and margarine added", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170037, + "usda_description": "Potatoes, mashed, home-prepared, whole milk and margarine added" + }, + { + "canonical_name": "potatoes, mashed, prepared from granules, without milk, whole milk and margarine", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 168554, + "usda_description": "Potatoes, mashed, prepared from granules, without milk, whole milk and margarine" + }, + { + "canonical_name": "potatoes, microwaved, cooked in skin, flesh, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170522, + "usda_description": "Potatoes, microwaved, cooked in skin, flesh, with salt" + }, + { + "canonical_name": "potatoes, microwaved, cooked in skin, flesh, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170441, + "usda_description": "Potatoes, microwaved, cooked in skin, flesh, without salt" + }, + { + "canonical_name": "potatoes, o'brien, home-prepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.82, + "default_unit_class": "volume", + "usda_fdc_id": 170498, + "usda_description": "Potatoes, o'brien, home-prepared" + }, + { + "canonical_name": "potatoes, red, flesh and skin", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170029, + "usda_description": "Potatoes, red, flesh and skin, raw" + }, + { + "canonical_name": "potatoes, russet, flesh and skin, raw", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170027, + "usda_description": "Potatoes, russet, flesh and skin, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "potatoes, scalloped, home-prepared with butter", + "category": "oil-fat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170038, + "usda_description": "Potatoes, scalloped, home-prepared with butter" + }, + { + "canonical_name": "potatoes, scalloped, home-prepared with margarine", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170525, + "usda_description": "Potatoes, scalloped, home-prepared with margarine" + }, + { + "canonical_name": "potatoes, white, flesh and skin", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170028, + "usda_description": "Potatoes, white, flesh and skin, raw" + }, + { + "canonical_name": "potherb jute", + "category": "other", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 168419, + "usda_description": "Jute, potherb, raw" + }, + { + "canonical_name": "poultry salad sandwich spread", + "category": "other", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 174581, + "usda_description": "Poultry salad sandwich spread" + }, + { + "canonical_name": "poultry seasoning spices", + "category": "other", + "density_g_per_ml": 0.301, + "default_unit_class": "volume", + "usda_fdc_id": 171331, + "usda_description": "Spices, poultry seasoning" + }, + { + "canonical_name": "powdered cream substitute", + "category": "dairy", + "density_g_per_ml": 0.402, + "default_unit_class": "volume", + "usda_fdc_id": 171263, + "usda_description": "Cream substitute, powdered" + }, + { + "canonical_name": "powdered sugars", + "category": "baking", + "density_g_per_ml": 0.495, + "default_unit_class": "volume", + "usda_fdc_id": 169656, + "usda_description": "Sugars, powdered" + }, + { + "canonical_name": "prepared from recipe cheese sauce", + "category": "dairy", + "density_g_per_ml": 1.021, + "default_unit_class": "volume", + "usda_fdc_id": 172200, + "usda_description": "Cheese sauce, prepared from recipe" + }, + { + "canonical_name": "prepared from recipe hush puppies", + "category": "other", + "density_g_per_ml": 0.642, + "default_unit_class": "volume", + "usda_fdc_id": 174999, + "usda_description": "Hush puppies, prepared from recipe" + }, + { + "canonical_name": "pressurized dessert topping", + "category": "other", + "density_g_per_ml": 0.283, + "default_unit_class": "volume", + "usda_fdc_id": 170867, + "usda_description": "Dessert topping, pressurized" + }, + { + "canonical_name": "prickly pears", + "category": "produce-fruit", + "density_g_per_ml": 0.63, + "default_unit_class": "volume", + "usda_fdc_id": 167750, + "usda_description": "Prickly pears, raw" + }, + { + "canonical_name": "provolone cheese", + "category": "dairy", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170850, + "usda_description": "Cheese, provolone" + }, + { + "canonical_name": "prune puree", + "category": "other", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 167780, + "usda_description": "Prune puree" + }, + { + "canonical_name": "prunes, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 0.989, + "default_unit_class": "volume", + "usda_fdc_id": 168159, + "usda_description": "Prunes, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "prunes, dehydrated , stewed", + "category": "other", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 168161, + "usda_description": "Prunes, dehydrated (low-moisture), stewed" + }, + { + "canonical_name": "prunes, dehydrated , uncooked", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168160, + "usda_description": "Prunes, dehydrated (low-moisture), uncooked" + }, + { + "canonical_name": "pulled pork in barbecue sauce", + "category": "condiment", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 173344, + "usda_description": "Pulled pork in barbecue sauce" + }, + { + "canonical_name": "pummelo", + "category": "other", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 167754, + "usda_description": "Pummelo, raw" + }, + { + "canonical_name": "pumpkin", + "category": "produce-vegetable", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 168448, + "usda_description": "Pumpkin, raw" + }, + { + "canonical_name": "pumpkin flowers", + "category": "produce-vegetable", + "density_g_per_ml": 0.139, + "default_unit_class": "volume", + "usda_fdc_id": 169270, + "usda_description": "Pumpkin flowers, raw" + }, + { + "canonical_name": "pumpkin leaves", + "category": "produce-vegetable", + "density_g_per_ml": 0.165, + "default_unit_class": "volume", + "usda_fdc_id": 169272, + "usda_description": "Pumpkin leaves, raw" + }, + { + "canonical_name": "pumpkin pie spice spices", + "category": "produce-vegetable", + "density_g_per_ml": 0.362, + "default_unit_class": "volume", + "usda_fdc_id": 171332, + "usda_description": "Spices, pumpkin pie spice" + }, + { + "canonical_name": "pumpkin, canned, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170527, + "usda_description": "Pumpkin, canned, with salt" + }, + { + "canonical_name": "pumpkin, canned, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 168450, + "usda_description": "Pumpkin, canned, without salt" + }, + { + "canonical_name": "pumpkin, flowers drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170119, + "usda_description": "Pumpkin, flowers, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "purple passion-fruit", + "category": "other", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 169108, + "usda_description": "Passion-fruit, (granadilla), purple, raw" + }, + { + "canonical_name": "purple passion-fruit juice", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169109, + "usda_description": "Passion-fruit juice, purple, raw" + }, + { + "canonical_name": "purslane", + "category": "other", + "density_g_per_ml": 0.182, + "default_unit_class": "volume", + "usda_fdc_id": 169274, + "usda_description": "Purslane, raw" + }, + { + "canonical_name": "radicchio", + "category": "other", + "density_g_per_ml": 0.169, + "default_unit_class": "volume", + "usda_fdc_id": 168564, + "usda_description": "Radicchio, raw" + }, + { + "canonical_name": "radishes", + "category": "other", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 169276, + "usda_description": "Radishes, raw" + }, + { + "canonical_name": "radishes, hawaiian style, pickled", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169889, + "usda_description": "Radishes, hawaiian style, pickled" + }, + { + "canonical_name": "radishes, oriental drained, with salt", + "category": "spice", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 170122, + "usda_description": "Radishes, oriental, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "radishes, oriental drained, without salt", + "category": "spice", + "density_g_per_ml": 0.621, + "default_unit_class": "volume", + "usda_fdc_id": 168452, + "usda_description": "Radishes, oriental, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "raisins, dark, seedless", + "category": "nut-seed", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 168165, + "usda_description": "Raisins, dark, seedless (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "raisins, golden, seedless", + "category": "nut-seed", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 168164, + "usda_description": "Raisins, golden, seedless" + }, + { + "canonical_name": "rambutan, canned, syrup pack", + "category": "condiment", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 168167, + "usda_description": "Rambutan, canned, syrup pack" + }, + { + "canonical_name": "raspberries", + "category": "other", + "density_g_per_ml": 0.59, + "default_unit_class": "volume", + "usda_fdc_id": 167755, + "usda_description": "Raspberries, raw" + }, + { + "canonical_name": "raspberries, canned, red, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 167756, + "usda_description": "Raspberries, canned, red, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "raspberries, frozen, red, sweetened", + "category": "other", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 167757, + "usda_description": "Raspberries, frozen, red, sweetened" + }, + { + "canonical_name": "raspberries, frozen, red, unsweetened", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168209, + "usda_description": "Raspberries, frozen, red, unsweetened" + }, + { + "canonical_name": "ravioli, cheese-filled, canned", + "category": "dairy", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 173328, + "usda_description": "Ravioli, cheese-filled, canned" + }, + { + "canonical_name": "ravioli, meat-filled, with tomato sauce or meat sauce, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 173329, + "usda_description": "Ravioli, meat-filled, with tomato sauce or meat sauce, canned" + }, + { + "canonical_name": "raw or frozen durian", + "category": "other", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 168192, + "usda_description": "Durian, raw or frozen" + }, + { + "canonical_name": "raw orange juice", + "category": "produce-fruit", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 169098, + "usda_description": "Orange juice, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "ready-to-feed child formula", + "category": "other", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172313, + "usda_description": "Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed" + }, + { + "canonical_name": "red and white currants", + "category": "other", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 173964, + "usda_description": "Currants, red and white, raw" + }, + { + "canonical_name": "red cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.336, + "default_unit_class": "volume", + "usda_fdc_id": 169977, + "usda_description": "Cabbage, red, raw" + }, + { + "canonical_name": "red leaf lettuce", + "category": "produce-vegetable", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 168431, + "usda_description": "Lettuce, red leaf, raw" + }, + { + "canonical_name": "red or green grapes", + "category": "produce-fruit", + "density_g_per_ml": 0.638, + "default_unit_class": "volume", + "usda_fdc_id": 174683, + "usda_description": "Grapes, red or green (European type, such as Thompson seedless), raw" + }, + { + "canonical_name": "red wine vinegar", + "category": "condiment", + "density_g_per_ml": 1.011, + "default_unit_class": "volume", + "usda_fdc_id": 172240, + "usda_description": "Vinegar, red wine" + }, + { + "canonical_name": "reddi wip fat free whipped topping", + "category": "other", + "density_g_per_ml": 0.294, + "default_unit_class": "volume", + "usda_fdc_id": 172213, + "usda_description": "Reddi Wip Fat Free Whipped Topping" + }, + { + "canonical_name": "reduced calorie vegetable oil-butter spread", + "category": "oil-fat", + "density_g_per_ml": 0.877, + "default_unit_class": "volume", + "usda_fdc_id": 167691, + "usda_description": "Vegetable oil-butter spread, reduced calorie" + }, + { + "canonical_name": "reduced fat sour cream", + "category": "dairy", + "density_g_per_ml": 0.892, + "default_unit_class": "volume", + "usda_fdc_id": 173442, + "usda_description": "Sour cream, reduced fat" + }, + { + "canonical_name": "reduced sodium peanut butter", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 169869, + "usda_description": "Peanut butter, reduced sodium" + }, + { + "canonical_name": "reduced sugar peanut spread", + "category": "nut-seed", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172457, + "usda_description": "Peanut spread, reduced sugar" + }, + { + "canonical_name": "refried beans on", + "category": "legume", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169032, + "usda_description": "ON THE BORDER, refried beans" + }, + { + "canonical_name": "refried beans, canned, fat-free", + "category": "legume", + "density_g_per_ml": 0.976, + "default_unit_class": "volume", + "usda_fdc_id": 172465, + "usda_description": "Refried beans, canned, fat-free" + }, + { + "canonical_name": "refried beans, canned, traditional style", + "category": "legume", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 172438, + "usda_description": "Refried beans, canned, traditional style" + }, + { + "canonical_name": "refried beans, canned, traditional, reduced sodium", + "category": "legume", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174298, + "usda_description": "Refried beans, canned, traditional, reduced sodium" + }, + { + "canonical_name": "refried beans, canned, vegetarian", + "category": "legume", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 174296, + "usda_description": "Refried beans, canned, vegetarian" + }, + { + "canonical_name": "rhubarb", + "category": "other", + "density_g_per_ml": 0.516, + "default_unit_class": "volume", + "usda_fdc_id": 167758, + "usda_description": "Rhubarb, raw" + }, + { + "canonical_name": "rhubarb, frozen, cooked, with sugar", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168169, + "usda_description": "Rhubarb, frozen, cooked, with sugar" + }, + { + "canonical_name": "rhubarb, frozen, uncooked", + "category": "other", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 168168, + "usda_description": "Rhubarb, frozen, uncooked" + }, + { + "canonical_name": "rice and vermicelli mix, beef flavor, prepared with 80% margarine", + "category": "grain", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 168950, + "usda_description": "Rice and vermicelli mix, beef flavor, prepared with 80% margarine" + }, + { + "canonical_name": "rice and vermicelli mix, beef flavor, unprepared", + "category": "grain", + "density_g_per_ml": 0.695, + "default_unit_class": "volume", + "usda_fdc_id": 168949, + "usda_description": "Rice and vermicelli mix, beef flavor, unprepared" + }, + { + "canonical_name": "rice and vermicelli mix, chicken flavor, prepared with 80% margarine", + "category": "meat", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 173348, + "usda_description": "Rice and vermicelli mix, chicken flavor, prepared with 80% margarine" + }, + { + "canonical_name": "rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine", + "category": "grain", + "density_g_per_ml": 1.006, + "default_unit_class": "volume", + "usda_fdc_id": 168952, + "usda_description": "Rice and vermicelli mix, rice pilaf flavor, prepared with 80% margarine" + }, + { + "canonical_name": "rice and vermicelli mix, rice pilaf flavor, unprepared", + "category": "grain", + "density_g_per_ml": 0.76, + "default_unit_class": "volume", + "usda_fdc_id": 168951, + "usda_description": "Rice and vermicelli mix, rice pilaf flavor, unprepared" + }, + { + "canonical_name": "rice bran oil", + "category": "grain", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171013, + "usda_description": "Oil, rice bran" + }, + { + "canonical_name": "rice flour, white, unenriched", + "category": "baking", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 169714, + "usda_description": "Rice flour, white, unenriched" + }, + { + "canonical_name": "rice mix, white and wild, flavored, unprepared", + "category": "grain", + "density_g_per_ml": 0.807, + "default_unit_class": "volume", + "usda_fdc_id": 168964, + "usda_description": "Rice mix, white and wild, flavored, unprepared" + }, + { + "canonical_name": "rice, brown, long-grain, cooked", + "category": "grain", + "density_g_per_ml": 0.854, + "default_unit_class": "volume", + "usda_fdc_id": 169704, + "usda_description": "Rice, brown, long-grain, cooked (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "rice, brown, long-grain, raw", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 169703, + "usda_description": "Rice, brown, long-grain, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "rice, brown, medium-grain, cooked", + "category": "grain", + "density_g_per_ml": 0.824, + "default_unit_class": "volume", + "usda_fdc_id": 168875, + "usda_description": "Rice, brown, medium-grain, cooked (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "rice, brown, medium-grain, raw", + "category": "grain", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 169706, + "usda_description": "Rice, brown, medium-grain, raw (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "rice, brown, parboiled, cooked", + "category": "grain", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 173263, + "usda_description": "Rice, brown, parboiled, cooked, UNCLE BENS" + }, + { + "canonical_name": "rice, brown, parboiled, dry, 's", + "category": "grain", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168876, + "usda_description": "Rice, brown, parboiled, dry, UNCLE BEN'S" + }, + { + "canonical_name": "rice, white, glutinous, unenriched, cooked", + "category": "grain", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 169711, + "usda_description": "Rice, white, glutinous, unenriched, cooked" + }, + { + "canonical_name": "rice, white, glutinous, unenriched, uncooked", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 168883, + "usda_description": "Rice, white, glutinous, unenriched, uncooked" + }, + { + "canonical_name": "rice, white, long-grain, parboiled, enriched, cooked", + "category": "grain", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 169708, + "usda_description": "Rice, white, long-grain, parboiled, enriched, cooked" + }, + { + "canonical_name": "rice, white, long-grain, parboiled, enriched, dry", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 169707, + "usda_description": "Rice, white, long-grain, parboiled, enriched, dry" + }, + { + "canonical_name": "rice, white, long-grain, parboiled, unenriched, cooked", + "category": "grain", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 169759, + "usda_description": "Rice, white, long-grain, parboiled, unenriched, cooked" + }, + { + "canonical_name": "rice, white, long-grain, parboiled, unenriched, dry", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 169758, + "usda_description": "Rice, white, long-grain, parboiled, unenriched, dry" + }, + { + "canonical_name": "rice, white, long-grain, regular enriched", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 168877, + "usda_description": "Rice, white, long-grain, regular, raw, enriched" + }, + { + "canonical_name": "rice, white, long-grain, regular unenriched", + "category": "grain", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 169756, + "usda_description": "Rice, white, long-grain, regular, raw, unenriched" + }, + { + "canonical_name": "rice, white, long-grain, regular, cooked, enriched, with salt", + "category": "spice", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 169753, + "usda_description": "Rice, white, long-grain, regular, cooked, enriched, with salt" + }, + { + "canonical_name": "rice, white, long-grain, regular, cooked, unenriched, with salt", + "category": "spice", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 168935, + "usda_description": "Rice, white, long-grain, regular, cooked, unenriched, with salt" + }, + { + "canonical_name": "rice, white, long-grain, regular, enriched, cooked", + "category": "grain", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 168878, + "usda_description": "Rice, white, long-grain, regular, enriched, cooked" + }, + { + "canonical_name": "rice, white, long-grain, regular, unenriched, cooked without salt", + "category": "spice", + "density_g_per_ml": 0.668, + "default_unit_class": "volume", + "usda_fdc_id": 169757, + "usda_description": "Rice, white, long-grain, regular, unenriched, cooked without salt" + }, + { + "canonical_name": "rice, white, medium-grain enriched", + "category": "grain", + "density_g_per_ml": 0.824, + "default_unit_class": "volume", + "usda_fdc_id": 168879, + "usda_description": "Rice, white, medium-grain, raw, enriched" + }, + { + "canonical_name": "rice, white, medium-grain unenriched", + "category": "grain", + "density_g_per_ml": 0.824, + "default_unit_class": "volume", + "usda_fdc_id": 169760, + "usda_description": "Rice, white, medium-grain, raw, unenriched" + }, + { + "canonical_name": "rice, white, medium-grain, cooked, unenriched", + "category": "grain", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 168930, + "usda_description": "Rice, white, medium-grain, cooked, unenriched" + }, + { + "canonical_name": "rice, white, medium-grain, enriched, cooked", + "category": "grain", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 168880, + "usda_description": "Rice, white, medium-grain, enriched, cooked" + }, + { + "canonical_name": "rice, white, short-grain unenriched", + "category": "grain", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 168931, + "usda_description": "Rice, white, short-grain, raw, unenriched" + }, + { + "canonical_name": "rice, white, short-grain, cooked, unenriched", + "category": "grain", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 168932, + "usda_description": "Rice, white, short-grain, cooked, unenriched" + }, + { + "canonical_name": "rice, white, short-grain, enriched, cooked", + "category": "grain", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 168882, + "usda_description": "Rice, white, short-grain, enriched, cooked" + }, + { + "canonical_name": "rice, white, short-grain, enriched, uncooked", + "category": "grain", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 168881, + "usda_description": "Rice, white, short-grain, enriched, uncooked" + }, + { + "canonical_name": "root wasabi", + "category": "other", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 168583, + "usda_description": "Wasabi, root, raw" + }, + { + "canonical_name": "roselle", + "category": "other", + "density_g_per_ml": 0.241, + "default_unit_class": "volume", + "usda_fdc_id": 168170, + "usda_description": "Roselle, raw" + }, + { + "canonical_name": "rosemary", + "category": "spice", + "density_g_per_ml": 0.128, + "default_unit_class": "volume", + "usda_fdc_id": 173473, + "usda_description": "Rosemary, fresh" + }, + { + "canonical_name": "rosemary spices", + "category": "spice", + "density_g_per_ml": 0.233, + "default_unit_class": "volume", + "usda_fdc_id": 171333, + "usda_description": "Spices, rosemary, dried" + }, + { + "canonical_name": "rowal", + "category": "other", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 167783, + "usda_description": "Rowal, raw" + }, + { + "canonical_name": "ruby red grapefruit juice blend , , bottled, with added vitamin c", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 167805, + "usda_description": "Ruby Red grapefruit juice blend (grapefruit, grape, apple), OCEAN SPRAY, bottled, with added vitamin C" + }, + { + "canonical_name": "russian dressing salad dressing", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171005, + "usda_description": "Salad dressing, russian dressing" + }, + { + "canonical_name": "rutabagas", + "category": "other", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168454, + "usda_description": "Rutabagas, raw" + }, + { + "canonical_name": "rye grain", + "category": "other", + "density_g_per_ml": 0.714, + "default_unit_class": "volume", + "usda_fdc_id": 168884, + "usda_description": "Rye grain" + }, + { + "canonical_name": "saffron spices", + "category": "other", + "density_g_per_ml": 0.142, + "default_unit_class": "volume", + "usda_fdc_id": 170934, + "usda_description": "Spices, saffron" + }, + { + "canonical_name": "sage spices", + "category": "other", + "density_g_per_ml": 0.139, + "default_unit_class": "volume", + "usda_fdc_id": 170935, + "usda_description": "Spices, sage, ground" + }, + { + "canonical_name": "salad dressing, blue or roquefort cheese dressing, commercial, regular", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 173562, + "usda_description": "Salad dressing, blue or roquefort cheese dressing, commercial, regular" + }, + { + "canonical_name": "salad dressing, blue or roquefort cheese dressing, fat-free", + "category": "condiment", + "density_g_per_ml": 1.135, + "default_unit_class": "mass", + "usda_fdc_id": 167699, + "usda_description": "Salad dressing, blue or roquefort cheese dressing, fat-free" + }, + { + "canonical_name": "salad dressing, blue or roquefort cheese dressing, light", + "category": "condiment", + "density_g_per_ml": 1.067, + "default_unit_class": "mass", + "usda_fdc_id": 167692, + "usda_description": "Salad dressing, blue or roquefort cheese dressing, light" + }, + { + "canonical_name": "salad dressing, blue or roquefort cheese, low calorie", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 169876, + "usda_description": "Salad dressing, blue or roquefort cheese, low calorie" + }, + { + "canonical_name": "salad dressing, buttermilk, lite", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169895, + "usda_description": "Salad dressing, buttermilk, lite" + }, + { + "canonical_name": "salad dressing, caesar dressing, regular", + "category": "condiment", + "density_g_per_ml": 0.994, + "default_unit_class": "volume", + "usda_fdc_id": 169055, + "usda_description": "Salad dressing, caesar dressing, regular" + }, + { + "canonical_name": "salad dressing, caesar, fat-free", + "category": "condiment", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 171045, + "usda_description": "Salad dressing, caesar, fat-free" + }, + { + "canonical_name": "salad dressing, caesar, low calorie", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169877, + "usda_description": "Salad dressing, caesar, low calorie" + }, + { + "canonical_name": "salad dressing, coleslaw, reduced fat", + "category": "condiment", + "density_g_per_ml": 1.143, + "default_unit_class": "mass", + "usda_fdc_id": 168109, + "usda_description": "Salad Dressing, coleslaw, reduced fat" + }, + { + "canonical_name": "salad dressing, french dressing, commercial, regular", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171414, + "usda_description": "Salad dressing, french dressing, commercial, regular" + }, + { + "canonical_name": "salad dressing, french dressing, commercial, regular, without salt", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171020, + "usda_description": "Salad dressing, french dressing, commercial, regular, without salt" + }, + { + "canonical_name": "salad dressing, french dressing, fat-free", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171420, + "usda_description": "Salad dressing, french dressing, fat-free" + }, + { + "canonical_name": "salad dressing, french dressing, reduced calorie", + "category": "condiment", + "density_g_per_ml": 1.09, + "default_unit_class": "mass", + "usda_fdc_id": 167693, + "usda_description": "Salad dressing, french dressing, reduced calorie" + }, + { + "canonical_name": "salad dressing, french dressing, reduced fat", + "category": "condiment", + "density_g_per_ml": 1.09, + "default_unit_class": "mass", + "usda_fdc_id": 171404, + "usda_description": "Salad dressing, french dressing, reduced fat" + }, + { + "canonical_name": "salad dressing, french dressing, reduced fat, without salt", + "category": "condiment", + "density_g_per_ml": 1.09, + "default_unit_class": "mass", + "usda_fdc_id": 171021, + "usda_description": "Salad dressing, french dressing, reduced fat, without salt" + }, + { + "canonical_name": "salad dressing, french, cottonseed, oil, home recipe", + "category": "condiment", + "density_g_per_ml": 0.938, + "default_unit_class": "volume", + "usda_fdc_id": 171419, + "usda_description": "Salad dressing, french, cottonseed, oil, home recipe" + }, + { + "canonical_name": "salad dressing, french, home recipe", + "category": "condiment", + "density_g_per_ml": 0.938, + "default_unit_class": "volume", + "usda_fdc_id": 171416, + "usda_description": "Salad dressing, french, home recipe" + }, + { + "canonical_name": "salad dressing, green goddess, regular", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 169057, + "usda_description": "Salad dressing, green goddess, regular" + }, + { + "canonical_name": "salad dressing, home recipe, vinegar and oil", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171417, + "usda_description": "Salad dressing, home recipe, vinegar and oil" + }, + { + "canonical_name": "salad dressing, honey mustard dressing, reduced calorie", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171034, + "usda_description": "Salad dressing, honey mustard dressing, reduced calorie" + }, + { + "canonical_name": "salad dressing, honey mustard, regular", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171043, + "usda_description": "Salad dressing, honey mustard, regular" + }, + { + "canonical_name": "salad dressing, italian dressing, commercial, reduced fat", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171405, + "usda_description": "Salad dressing, italian dressing, commercial, reduced fat" + }, + { + "canonical_name": "salad dressing, italian dressing, commercial, regular", + "category": "condiment", + "density_g_per_ml": 0.994, + "default_unit_class": "volume", + "usda_fdc_id": 171019, + "usda_description": "Salad dressing, italian dressing, commercial, regular" + }, + { + "canonical_name": "salad dressing, italian dressing, commercial, regular, without salt", + "category": "condiment", + "density_g_per_ml": 0.994, + "default_unit_class": "volume", + "usda_fdc_id": 171022, + "usda_description": "Salad dressing, italian dressing, commercial, regular, without salt" + }, + { + "canonical_name": "salad dressing, italian dressing, fat-free", + "category": "condiment", + "density_g_per_ml": 0.962, + "default_unit_class": "volume", + "usda_fdc_id": 173590, + "usda_description": "Salad dressing, italian dressing, fat-free" + }, + { + "canonical_name": "salad dressing, italian dressing, reduced calorie", + "category": "condiment", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 168096, + "usda_description": "Salad dressing, italian dressing, reduced calorie" + }, + { + "canonical_name": "salad dressing, italian dressing, reduced fat, without salt", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171023, + "usda_description": "Salad dressing, italian dressing, reduced fat, without salt" + }, + { + "canonical_name": "salad dressing, mayo fat free mayonnaise dressing", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171003, + "usda_description": "Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing" + }, + { + "canonical_name": "salad dressing, mayonnaise and mayonnaise-type, low calorie", + "category": "condiment", + "density_g_per_ml": 0.981, + "default_unit_class": "volume", + "usda_fdc_id": 168112, + "usda_description": "Salad dressing, mayonnaise and mayonnaise-type, low calorie" + }, + { + "canonical_name": "salad dressing, mayonnaise type, regular, with salt", + "category": "condiment", + "density_g_per_ml": 0.994, + "default_unit_class": "volume", + "usda_fdc_id": 171403, + "usda_description": "Salad dressing, mayonnaise type, regular, with salt" + }, + { + "canonical_name": "salad dressing, mayonnaise, imitation, milk cream", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171407, + "usda_description": "Salad dressing, mayonnaise, imitation, milk cream" + }, + { + "canonical_name": "salad dressing, mayonnaise, imitation, soybean", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171406, + "usda_description": "Salad dressing, mayonnaise, imitation, soybean" + }, + { + "canonical_name": "salad dressing, mayonnaise, imitation, soybean without cholesterol", + "category": "condiment", + "density_g_per_ml": 0.952, + "default_unit_class": "volume", + "usda_fdc_id": 171408, + "usda_description": "Salad dressing, mayonnaise, imitation, soybean without cholesterol" + }, + { + "canonical_name": "salad dressing, mayonnaise, light", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173594, + "usda_description": "Salad dressing, mayonnaise, light" + }, + { + "canonical_name": "salad dressing, mayonnaise, light, , omega plus light", + "category": "condiment", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 171037, + "usda_description": "Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light" + }, + { + "canonical_name": "salad dressing, mayonnaise, regular", + "category": "condiment", + "density_g_per_ml": 0.932, + "default_unit_class": "volume", + "usda_fdc_id": 171009, + "usda_description": "Salad dressing, mayonnaise, regular" + }, + { + "canonical_name": "salad dressing, mayonnaise, soybean and safflower oil, with salt", + "category": "condiment", + "density_g_per_ml": 0.932, + "default_unit_class": "volume", + "usda_fdc_id": 171010, + "usda_description": "Salad dressing, mayonnaise, soybean and safflower oil, with salt" + }, + { + "canonical_name": "salad dressing, mayonnaise, soybean oil, without salt", + "category": "condiment", + "density_g_per_ml": 0.932, + "default_unit_class": "volume", + "usda_fdc_id": 171418, + "usda_description": "Salad dressing, mayonnaise, soybean oil, without salt" + }, + { + "canonical_name": "salad dressing, mayonnaise-like, fat-free", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 167700, + "usda_description": "Salad Dressing, mayonnaise-like, fat-free" + }, + { + "canonical_name": "salad dressing, peppercorn dressing, commercial, regular", + "category": "condiment", + "density_g_per_ml": 0.893, + "default_unit_class": "volume", + "usda_fdc_id": 168093, + "usda_description": "Salad dressing, peppercorn dressing, commercial, regular" + }, + { + "canonical_name": "salad dressing, poppyseed, creamy", + "category": "condiment", + "density_g_per_ml": 1.116, + "default_unit_class": "mass", + "usda_fdc_id": 171044, + "usda_description": "Salad dressing, poppyseed, creamy" + }, + { + "canonical_name": "salad dressing, ranch dressing, fat-free", + "category": "condiment", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173591, + "usda_description": "Salad dressing, ranch dressing, fat-free" + }, + { + "canonical_name": "salad dressing, ranch dressing, reduced fat", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173593, + "usda_description": "Salad dressing, ranch dressing, reduced fat" + }, + { + "canonical_name": "salad dressing, ranch dressing, regular", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 173592, + "usda_description": "Salad dressing, ranch dressing, regular" + }, + { + "canonical_name": "salad dressing, russian dressing, low calorie", + "category": "condiment", + "density_g_per_ml": 1.09, + "default_unit_class": "mass", + "usda_fdc_id": 171007, + "usda_description": "Salad dressing, russian dressing, low calorie" + }, + { + "canonical_name": "salad dressing, sesame seed dressing, regular", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171006, + "usda_description": "Salad dressing, sesame seed dressing, regular" + }, + { + "canonical_name": "salad dressing, thousand island dressing, fat-free", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 172356, + "usda_description": "Salad dressing, thousand island dressing, fat-free" + }, + { + "canonical_name": "salad dressing, thousand island dressing, reduced fat", + "category": "condiment", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171008, + "usda_description": "Salad dressing, thousand island dressing, reduced fat" + }, + { + "canonical_name": "salad dressing, thousand island, commercial, regular", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171402, + "usda_description": "Salad dressing, thousand island, commercial, regular" + }, + { + "canonical_name": "salmon fish oil", + "category": "meat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 172343, + "usda_description": "Fish oil, salmon" + }, + { + "canonical_name": "salsify", + "category": "other", + "density_g_per_ml": 0.562, + "default_unit_class": "volume", + "usda_fdc_id": 169277, + "usda_description": "Salsify, (vegetable oyster), raw" + }, + { + "canonical_name": "salted butter", + "category": "oil-fat", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 173410, + "usda_description": "Butter, salted" + }, + { + "canonical_name": "saltines crackers", + "category": "spice", + "density_g_per_ml": 0.243, + "default_unit_class": "volume", + "usda_fdc_id": 172746, + "usda_description": "Crackers, saltines (includes oyster, soda, soup)" + }, + { + "canonical_name": "sandwich spread, pork, beef", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174583, + "usda_description": "Sandwich spread, pork, beef" + }, + { + "canonical_name": "sandwich spread, with chopped pickle, regular, unspecified oils", + "category": "oil-fat", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171409, + "usda_description": "Sandwich spread, with chopped pickle, regular, unspecified oils" + }, + { + "canonical_name": "sapodilla", + "category": "other", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 167759, + "usda_description": "Sapodilla, raw" + }, + { + "canonical_name": "sardine fish oil", + "category": "meat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173578, + "usda_description": "Fish oil, sardine" + }, + { + "canonical_name": "sauce, barbecue", + "category": "condiment", + "density_g_per_ml": 1.179, + "default_unit_class": "mass", + "usda_fdc_id": 174523, + "usda_description": "Sauce, barbecue" + }, + { + "canonical_name": "sauce, barbecue, 's, original", + "category": "condiment", + "density_g_per_ml": 1.206, + "default_unit_class": "mass", + "usda_fdc_id": 171827, + "usda_description": "Sauce, barbecue, SWEET BABY RAY'S, original" + }, + { + "canonical_name": "sauce, barbecue, 's-, original", + "category": "condiment", + "density_g_per_ml": 1.188, + "default_unit_class": "mass", + "usda_fdc_id": 171828, + "usda_description": "Sauce, barbecue, BULL'S-EYE, original" + }, + { + "canonical_name": "sauce, barbecue, , original", + "category": "condiment", + "density_g_per_ml": 1.16, + "default_unit_class": "mass", + "usda_fdc_id": 171830, + "usda_description": "Sauce, barbecue, OPEN PIT, original" + }, + { + "canonical_name": "sauce, barbecue, kc , original", + "category": "condiment", + "density_g_per_ml": 1.168, + "default_unit_class": "mass", + "usda_fdc_id": 171829, + "usda_description": "Sauce, barbecue, KC MASTERPIECE, original" + }, + { + "canonical_name": "sauce, cheese, ready-to-serve", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171191, + "usda_description": "Sauce, cheese, ready-to-serve" + }, + { + "canonical_name": "sauce, chili, peppers, hot, immature green, canned", + "category": "spice", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171605, + "usda_description": "Sauce, chili, peppers, hot, immature green, canned" + }, + { + "canonical_name": "sauce, cocktail, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174067, + "usda_description": "Sauce, cocktail, ready-to-serve" + }, + { + "canonical_name": "sauce, duck, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.116, + "default_unit_class": "mass", + "usda_fdc_id": 171823, + "usda_description": "Sauce, duck, ready-to-serve" + }, + { + "canonical_name": "sauce, enchilada, red, mild, ready to serve", + "category": "condiment", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 174074, + "usda_description": "Sauce, enchilada, red, mild, ready to serve" + }, + { + "canonical_name": "sauce, fish, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 174531, + "usda_description": "Sauce, fish, ready-to-serve" + }, + { + "canonical_name": "sauce, hoisin, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 172886, + "usda_description": "Sauce, hoisin, ready-to-serve" + }, + { + "canonical_name": "sauce, homemade, white, medium", + "category": "condiment", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 174525, + "usda_description": "Sauce, homemade, white, medium" + }, + { + "canonical_name": "sauce, homemade, white, thick", + "category": "condiment", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 174526, + "usda_description": "Sauce, homemade, white, thick" + }, + { + "canonical_name": "sauce, horseradish", + "category": "condiment", + "density_g_per_ml": 1.136, + "default_unit_class": "mass", + "usda_fdc_id": 171833, + "usda_description": "Sauce, horseradish" + }, + { + "canonical_name": "sauce, hot chile, sriracha", + "category": "condiment", + "density_g_per_ml": 1.288, + "default_unit_class": "mass", + "usda_fdc_id": 171186, + "usda_description": "Sauce, hot chile, sriracha" + }, + { + "canonical_name": "sauce, hot chile, sriracha, ! by", + "category": "condiment", + "density_g_per_ml": 1.4, + "default_unit_class": "mass", + "usda_fdc_id": 171187, + "usda_description": "Sauce, hot chile, sriracha, CHA! BY TEXAS PETE" + }, + { + "canonical_name": "sauce, oyster, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 174529, + "usda_description": "Sauce, oyster, ready-to-serve" + }, + { + "canonical_name": "sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium", + "category": "grain", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 171597, + "usda_description": "Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium" + }, + { + "canonical_name": "sauce, peanut, made from coconut, water, sugar, peanuts", + "category": "nut-seed", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 171575, + "usda_description": "Sauce, peanut, made from coconut, water, sugar, peanuts" + }, + { + "canonical_name": "sauce, peanut, made from peanut butter, water, soy sauce", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 174070, + "usda_description": "Sauce, peanut, made from peanut butter, water, soy sauce" + }, + { + "canonical_name": "sauce, peppers, hot, chili, mature red, canned", + "category": "spice", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 171604, + "usda_description": "Sauce, peppers, hot, chili, mature red, canned" + }, + { + "canonical_name": "sauce, pesto, , , basil pesto, ready-to-serve", + "category": "spice", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171185, + "usda_description": "Sauce, pesto, MEZZETTA, NAPA VALLEY BISTRO, basil pesto, ready-to-serve" + }, + { + "canonical_name": "sauce, pesto, , basil pesto, ready-to-serve", + "category": "spice", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171582, + "usda_description": "Sauce, pesto, CLASSICO, basil pesto, ready-to-serve" + }, + { + "canonical_name": "sauce, pesto, , pesto with basil, ready-to-serve, refrigerated", + "category": "spice", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171581, + "usda_description": "Sauce, pesto, BUITONI, pesto with basil, ready-to-serve, refrigerated" + }, + { + "canonical_name": "sauce, pesto, ready-to-serve, refrigerated", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171579, + "usda_description": "Sauce, pesto, ready-to-serve, refrigerated" + }, + { + "canonical_name": "sauce, pesto, ready-to-serve, shelf stable", + "category": "condiment", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171580, + "usda_description": "Sauce, pesto, ready-to-serve, shelf stable" + }, + { + "canonical_name": "sauce, pizza, canned, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 172880, + "usda_description": "Sauce, pizza, canned, ready-to-serve" + }, + { + "canonical_name": "sauce, plum, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.287, + "default_unit_class": "mass", + "usda_fdc_id": 172879, + "usda_description": "Sauce, plum, ready-to-serve" + }, + { + "canonical_name": "sauce, ready-to-serve, pepper", + "category": "spice", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 174528, + "usda_description": "Sauce, ready-to-serve, pepper, TABASCO" + }, + { + "canonical_name": "sauce, ready-to-serve, pepper or hot", + "category": "spice", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 174527, + "usda_description": "Sauce, ready-to-serve, pepper or hot" + }, + { + "canonical_name": "sauce, salsa, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.137, + "default_unit_class": "mass", + "usda_fdc_id": 174524, + "usda_description": "Sauce, salsa, ready-to-serve" + }, + { + "canonical_name": "sauce, salsa, verde, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171824, + "usda_description": "Sauce, salsa, verde, ready-to-serve" + }, + { + "canonical_name": "sauce, sofrito, prepared from recipe", + "category": "condiment", + "density_g_per_ml": 0.871, + "default_unit_class": "volume", + "usda_fdc_id": 171174, + "usda_description": "Sauce, sofrito, prepared from recipe" + }, + { + "canonical_name": "sauce, steak, tomato based", + "category": "produce-vegetable", + "density_g_per_ml": 1.15, + "default_unit_class": "mass", + "usda_fdc_id": 171825, + "usda_description": "Sauce, steak, tomato based" + }, + { + "canonical_name": "sauce, sweet and sour, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 174066, + "usda_description": "Sauce, sweet and sour, ready-to-serve" + }, + { + "canonical_name": "sauce, teriyaki, ready-to-serve", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 171167, + "usda_description": "Sauce, teriyaki, ready-to-serve" + }, + { + "canonical_name": "sauce, teriyaki, ready-to-serve, reduced sodium", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 172890, + "usda_description": "Sauce, teriyaki, ready-to-serve, reduced sodium" + }, + { + "canonical_name": "sauce, tomato chili sauce, bottled, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.154, + "default_unit_class": "mass", + "usda_fdc_id": 171595, + "usda_description": "Sauce, tomato chili sauce, bottled, with salt" + }, + { + "canonical_name": "sauce, worcestershire", + "category": "condiment", + "density_g_per_ml": 1.156, + "default_unit_class": "mass", + "usda_fdc_id": 171610, + "usda_description": "Sauce, worcestershire" + }, + { + "canonical_name": "sauerkraut, canned, solids and liquids", + "category": "other", + "density_g_per_ml": 0.799, + "default_unit_class": "volume", + "usda_fdc_id": 169279, + "usda_description": "Sauerkraut, canned, solids and liquids" + }, + { + "canonical_name": "sausage, turkey and pork bulk, patty or link, cooked", + "category": "meat", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 167694, + "usda_description": "Sausage, turkey and pork, fresh, bulk, patty or link, cooked" + }, + { + "canonical_name": "sausage, turkey, reduced fat, brown and serve, cooked", + "category": "meat", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 174580, + "usda_description": "Sausage, turkey, reduced fat, brown and serve, cooked" + }, + { + "canonical_name": "savory spices", + "category": "other", + "density_g_per_ml": 0.291, + "default_unit_class": "volume", + "usda_fdc_id": 170936, + "usda_description": "Spices, savory, ground" + }, + { + "canonical_name": "savoy cabbage", + "category": "produce-vegetable", + "density_g_per_ml": 0.296, + "default_unit_class": "volume", + "usda_fdc_id": 170388, + "usda_description": "Cabbage, savoy, raw" + }, + { + "canonical_name": "scrambled egg cooked", + "category": "dairy", + "density_g_per_ml": 0.928, + "default_unit_class": "volume", + "usda_fdc_id": 172187, + "usda_description": "Egg, whole, cooked, scrambled" + }, + { + "canonical_name": "scup fish", + "category": "meat", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 175141, + "usda_description": "Fish, scup, raw" + }, + { + "canonical_name": "seasoned croutons", + "category": "other", + "density_g_per_ml": 0.169, + "default_unit_class": "volume", + "usda_fdc_id": 172752, + "usda_description": "Croutons, seasoned" + }, + { + "canonical_name": "seasoning mix, dry, chili, original", + "category": "other", + "density_g_per_ml": 0.458, + "default_unit_class": "volume", + "usda_fdc_id": 173476, + "usda_description": "Seasoning mix, dry, chili, original" + }, + { + "canonical_name": "seasoning mix, dry, sazon, coriander & annatto", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 172242, + "usda_description": "Seasoning mix, dry, sazon, coriander & annatto" + }, + { + "canonical_name": "seasoning mix, dry, taco, original", + "category": "other", + "density_g_per_ml": 0.578, + "default_unit_class": "volume", + "usda_fdc_id": 172243, + "usda_description": "Seasoning mix, dry, taco, original" + }, + { + "canonical_name": "seaweed, canadian cultivated -, rehydrated", + "category": "other", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 167603, + "usda_description": "Seaweed, Canadian Cultivated EMI-TSUNOMATA, rehydrated" + }, + { + "canonical_name": "seeded raisins", + "category": "nut-seed", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 168166, + "usda_description": "Raisins, seeded" + }, + { + "canonical_name": "seeds, cottonseed flour, partially defatted", + "category": "baking", + "density_g_per_ml": 0.368, + "default_unit_class": "volume", + "usda_fdc_id": 170555, + "usda_description": "Seeds, cottonseed flour, partially defatted (glandless)" + }, + { + "canonical_name": "seeds, cottonseed kernels, roasted", + "category": "nut-seed", + "density_g_per_ml": 0.653, + "default_unit_class": "volume", + "usda_fdc_id": 170596, + "usda_description": "Seeds, cottonseed kernels, roasted (glandless)" + }, + { + "canonical_name": "seeds, hemp seed, hulled", + "category": "nut-seed", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170148, + "usda_description": "Seeds, hemp seed, hulled" + }, + { + "canonical_name": "seeds, pumpkin and squash seed kernels", + "category": "produce-vegetable", + "density_g_per_ml": 0.545, + "default_unit_class": "volume", + "usda_fdc_id": 170556, + "usda_description": "Seeds, pumpkin and squash seed kernels, dried" + }, + { + "canonical_name": "seeds, pumpkin and squash seed kernels, roasted, with salt added", + "category": "produce-vegetable", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169415, + "usda_description": "Seeds, pumpkin and squash seed kernels, roasted, with salt added" + }, + { + "canonical_name": "seeds, pumpkin and squash seed kernels, roasted, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 170557, + "usda_description": "Seeds, pumpkin and squash seed kernels, roasted, without salt" + }, + { + "canonical_name": "seeds, pumpkin and squash seeds roasted, with salt added", + "category": "produce-vegetable", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 168601, + "usda_description": "Seeds, pumpkin and squash seeds, whole, roasted, with salt added" + }, + { + "canonical_name": "seeds, pumpkin and squash seeds roasted, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 170188, + "usda_description": "Seeds, pumpkin and squash seeds, whole, roasted, without salt" + }, + { + "canonical_name": "seeds, sesame butter, paste", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 170191, + "usda_description": "Seeds, sesame butter, paste" + }, + { + "canonical_name": "seeds, sesame butter, tahini, from roasted and toasted kernels", + "category": "oil-fat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170189, + "usda_description": "Seeds, sesame butter, tahini, from roasted and toasted kernels (most common type)" + }, + { + "canonical_name": "seeds, sesame butter, tahini, from unroasted kernels", + "category": "oil-fat", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 169406, + "usda_description": "Seeds, sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)" + }, + { + "canonical_name": "seeds, sesame butter, tahini, type of kernels unspecified", + "category": "oil-fat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168604, + "usda_description": "Seeds, sesame butter, tahini, type of kernels unspecified" + }, + { + "canonical_name": "seeds, sesame seed kernels, dried", + "category": "nut-seed", + "density_g_per_ml": 0.574, + "default_unit_class": "volume", + "usda_fdc_id": 169412, + "usda_description": "Seeds, sesame seed kernels, dried (decorticated)" + }, + { + "canonical_name": "seeds, sesame seed kernels, toasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169416, + "usda_description": "Seeds, sesame seed kernels, toasted, with salt added (decorticated)" + }, + { + "canonical_name": "seeds, sesame seed kernels, toasted, without salt added", + "category": "spice", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 170152, + "usda_description": "Seeds, sesame seed kernels, toasted, without salt added (decorticated)" + }, + { + "canonical_name": "seeds, sisymbrium sp. seeds dried", + "category": "nut-seed", + "density_g_per_ml": 0.313, + "default_unit_class": "volume", + "usda_fdc_id": 168587, + "usda_description": "Seeds, sisymbrium sp. seeds, whole, dried" + }, + { + "canonical_name": "seeds, sunflower seed butter, with salt added", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 168595, + "usda_description": "Seeds, sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "seeds, sunflower seed butter, without salt", + "category": "oil-fat", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 170155, + "usda_description": "Seeds, sunflower seed butter, without salt" + }, + { + "canonical_name": "seeds, sunflower seed flour, partially defatted", + "category": "baking", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 170156, + "usda_description": "Seeds, sunflower seed flour, partially defatted" + }, + { + "canonical_name": "seeds, sunflower seed kernels from shell, dry roasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169417, + "usda_description": "Seeds, sunflower seed kernels from shell, dry roasted, with salt added" + }, + { + "canonical_name": "seeds, sunflower seed kernels, dry roasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 169418, + "usda_description": "Seeds, sunflower seed kernels, dry roasted, with salt added" + }, + { + "canonical_name": "seeds, sunflower seed kernels, dry roasted, without salt", + "category": "spice", + "density_g_per_ml": 0.541, + "default_unit_class": "volume", + "usda_fdc_id": 170563, + "usda_description": "Seeds, sunflower seed kernels, dry roasted, without salt" + }, + { + "canonical_name": "seeds, sunflower seed kernels, oil roasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 168593, + "usda_description": "Seeds, sunflower seed kernels, oil roasted, with salt added" + }, + { + "canonical_name": "seeds, sunflower seed kernels, oil roasted, without salt", + "category": "spice", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 170564, + "usda_description": "Seeds, sunflower seed kernels, oil roasted, without salt" + }, + { + "canonical_name": "seeds, sunflower seed kernels, toasted, with salt added", + "category": "spice", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 168594, + "usda_description": "Seeds, sunflower seed kernels, toasted, with salt added" + }, + { + "canonical_name": "seeds, sunflower seed kernels, toasted, without salt", + "category": "spice", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 170154, + "usda_description": "Seeds, sunflower seed kernels, toasted, without salt" + }, + { + "canonical_name": "serrano peppers", + "category": "spice", + "density_g_per_ml": 0.444, + "default_unit_class": "volume", + "usda_fdc_id": 169395, + "usda_description": "Peppers, serrano, raw" + }, + { + "canonical_name": "sesame seeds dried seeds", + "category": "nut-seed", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170150, + "usda_description": "Seeds, sesame seeds, whole, dried" + }, + { + "canonical_name": "sesbania flower, cooked, steamed, with salt", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169368, + "usda_description": "Sesbania flower, cooked, steamed, with salt" + }, + { + "canonical_name": "sesbania flower, cooked, steamed, without salt", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169281, + "usda_description": "Sesbania flower, cooked, steamed, without salt" + }, + { + "canonical_name": "shallots", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170499, + "usda_description": "Shallots, raw" + }, + { + "canonical_name": "sheanut oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171429, + "usda_description": "Oil, sheanut" + }, + { + "canonical_name": "shortening confectionery, coconut and or palm kernel", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173568, + "usda_description": "Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)" + }, + { + "canonical_name": "shortening frying , beef tallow and cottonseed", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173567, + "usda_description": "Shortening frying (heavy duty), beef tallow and cottonseed" + }, + { + "canonical_name": "shortening frying , soybean , linoleic", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172333, + "usda_description": "Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)" + }, + { + "canonical_name": "shortening household soybean and palm", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172332, + "usda_description": "Shortening household soybean (hydrogenated) and palm" + }, + { + "canonical_name": "shortening, confectionery, fractionated palm", + "category": "oil-fat", + "density_g_per_ml": 0.921, + "default_unit_class": "volume", + "usda_fdc_id": 172334, + "usda_description": "Shortening, confectionery, fractionated palm" + }, + { + "canonical_name": "shortening, household, lard and vegetable oil", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172327, + "usda_description": "Shortening, household, lard and vegetable oil" + }, + { + "canonical_name": "shortening, household, soybean -cottonseed", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 171011, + "usda_description": "Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)" + }, + { + "canonical_name": "shortening, industrial, soy , pourable liquid fry shortening", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173597, + "usda_description": "Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening" + }, + { + "canonical_name": "shortening, industrial, soy and corn for frying", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173606, + "usda_description": "Shortening, industrial, soy (partially hydrogenated ) and corn for frying" + }, + { + "canonical_name": "shortening, industrial, soy for baking and confections", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173607, + "usda_description": "Shortening, industrial, soy (partially hydrogenated ) for baking and confections" + }, + { + "canonical_name": "shortening, multipurpose, soybean and palm", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173579, + "usda_description": "Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)" + }, + { + "canonical_name": "shortening, special purpose for baking, soybean palm and cottonseed", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173575, + "usda_description": "Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed" + }, + { + "canonical_name": "shortening, special purpose for cakes and frostings, soybean", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173574, + "usda_description": "Shortening, special purpose for cakes and frostings, soybean (hydrogenated)" + }, + { + "canonical_name": "shortening, vegetable, household, composite", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173584, + "usda_description": "Shortening, vegetable, household, composite" + }, + { + "canonical_name": "smart squeeze margarine-like spread", + "category": "other", + "density_g_per_ml": 0.947, + "default_unit_class": "volume", + "usda_fdc_id": 173609, + "usda_description": "Margarine-like spread, SMART BEAT Smart Squeeze" + }, + { + "canonical_name": "smooth peanut butter", + "category": "oil-fat", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 174294, + "usda_description": "Peanut Butter, smooth (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "soft red winter wheat", + "category": "other", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 168891, + "usda_description": "Wheat, soft red winter" + }, + { + "canonical_name": "soft white wheat", + "category": "other", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 169720, + "usda_description": "Wheat, soft white" + }, + { + "canonical_name": "sorghum flour, refined, unenriched", + "category": "baking", + "density_g_per_ml": 0.681, + "default_unit_class": "volume", + "usda_fdc_id": 173262, + "usda_description": "Sorghum flour, refined, unenriched" + }, + { + "canonical_name": "sorghum grain", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 169716, + "usda_description": "Sorghum grain" + }, + { + "canonical_name": "sorghum syrups", + "category": "condiment", + "density_g_per_ml": 1.407, + "default_unit_class": "mass", + "usda_fdc_id": 169662, + "usda_description": "Syrups, sorghum" + }, + { + "canonical_name": "soup, , beef broth, lower sodium", + "category": "meat", + "density_g_per_ml": 0.9, + "default_unit_class": "volume", + "usda_fdc_id": 171179, + "usda_description": "Soup, SWANSON, beef broth, lower sodium" + }, + { + "canonical_name": "soup, , vegetable broth", + "category": "other", + "density_g_per_ml": 0.93, + "default_unit_class": "volume", + "usda_fdc_id": 171180, + "usda_description": "Soup, SWANSON, vegetable broth" + }, + { + "canonical_name": "soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve", + "category": "beverage", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174533, + "usda_description": "Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve" + }, + { + "canonical_name": "soup, bean with frankfurters, canned, condensed", + "category": "other", + "density_g_per_ml": 1.112, + "default_unit_class": "mass", + "usda_fdc_id": 171143, + "usda_description": "Soup, bean with frankfurters, canned, condensed" + }, + { + "canonical_name": "soup, bean with frankfurters, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 172905, + "usda_description": "Soup, bean with frankfurters, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, bean with ham, canned, chunky, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 171144, + "usda_description": "Soup, bean with ham, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, bean with pork, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.099, + "default_unit_class": "mass", + "usda_fdc_id": 171142, + "usda_description": "Soup, bean with pork, canned, condensed" + }, + { + "canonical_name": "soup, bean with pork, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.126, + "default_unit_class": "mass", + "usda_fdc_id": 172904, + "usda_description": "Soup, bean with pork, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, beef and mushroom, low sodium, chunk style", + "category": "produce-vegetable", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 171611, + "usda_description": "Soup, beef and mushroom, low sodium, chunk style" + }, + { + "canonical_name": "soup, beef and vegetables, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 171190, + "usda_description": "Soup, beef and vegetables, canned, ready-to-serve" + }, + { + "canonical_name": "soup, beef and vegetables, reduced sodium, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174065, + "usda_description": "Soup, beef and vegetables, reduced sodium, canned, ready-to-serve" + }, + { + "canonical_name": "soup, beef barley, ready to serve", + "category": "grain", + "density_g_per_ml": 0.879, + "default_unit_class": "volume", + "usda_fdc_id": 174073, + "usda_description": "Soup, beef barley, ready to serve" + }, + { + "canonical_name": "soup, beef broth bouillon and consomme, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171548, + "usda_description": "Soup, beef broth bouillon and consomme, canned, condensed" + }, + { + "canonical_name": "soup, beef broth or bouillon canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171538, + "usda_description": "Soup, beef broth or bouillon canned, ready-to-serve" + }, + { + "canonical_name": "soup, beef broth or bouillon, powder, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.011, + "default_unit_class": "volume", + "usda_fdc_id": 172922, + "usda_description": "Soup, beef broth or bouillon, powder, prepared with water" + }, + { + "canonical_name": "soup, beef broth, bouillon, consomme, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 174557, + "usda_description": "Soup, beef broth, bouillon, consomme, prepared with equal volume water" + }, + { + "canonical_name": "soup, beef broth, cubed, prepared with water", + "category": "beverage", + "density_g_per_ml": 1.011, + "default_unit_class": "volume", + "usda_fdc_id": 172923, + "usda_description": "Soup, beef broth, cubed, prepared with water" + }, + { + "canonical_name": "soup, beef broth, less/reduced sodium, ready to serve", + "category": "meat", + "density_g_per_ml": 0.926, + "default_unit_class": "volume", + "usda_fdc_id": 172889, + "usda_description": "Soup, beef broth, less/reduced sodium, ready to serve" + }, + { + "canonical_name": "soup, beef mushroom, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171175, + "usda_description": "Soup, beef mushroom, canned, condensed" + }, + { + "canonical_name": "soup, beef mushroom, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171572, + "usda_description": "Soup, beef mushroom, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, beef noodle, canned, condensed", + "category": "grain", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 171539, + "usda_description": "Soup, beef noodle, canned, condensed" + }, + { + "canonical_name": "soup, beef noodle, canned, prepared with equal volume water", + "category": "grain", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172906, + "usda_description": "Soup, beef noodle, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, beef stroganoff, canned, chunky style, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171612, + "usda_description": "Soup, beef stroganoff, canned, chunky style, ready-to-serve" + }, + { + "canonical_name": "soup, black bean, canned, condensed", + "category": "other", + "density_g_per_ml": 1.086, + "default_unit_class": "mass", + "usda_fdc_id": 171141, + "usda_description": "Soup, black bean, canned, condensed" + }, + { + "canonical_name": "soup, black bean, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 172903, + "usda_description": "Soup, black bean, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, bouillon cubes and granules, low sodium, dry", + "category": "other", + "density_g_per_ml": 0.527, + "default_unit_class": "volume", + "usda_fdc_id": 171613, + "usda_description": "Soup, bouillon cubes and granules, low sodium, dry" + }, + { + "canonical_name": "soup, cheese, canned, condensed", + "category": "dairy", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171541, + "usda_description": "Soup, cheese, canned, condensed" + }, + { + "canonical_name": "soup, cheese, canned, prepared with equal volume milk", + "category": "dairy", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 172894, + "usda_description": "Soup, cheese, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cheese, canned, prepared with equal volume water", + "category": "dairy", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 174550, + "usda_description": "Soup, cheese, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chicken and vegetable, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 171546, + "usda_description": "Soup, chicken and vegetable, canned, ready-to-serve" + }, + { + "canonical_name": "soup, chicken broth cubes, dry, prepared with water", + "category": "meat", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 174566, + "usda_description": "Soup, chicken broth cubes, dry, prepared with water" + }, + { + "canonical_name": "soup, chicken broth or bouillon, dry", + "category": "meat", + "density_g_per_ml": 0.406, + "default_unit_class": "volume", + "usda_fdc_id": 171562, + "usda_description": "Soup, chicken broth or bouillon, dry" + }, + { + "canonical_name": "soup, chicken broth or bouillon, dry, prepared with water", + "category": "meat", + "density_g_per_ml": 1.018, + "default_unit_class": "volume", + "usda_fdc_id": 172924, + "usda_description": "Soup, chicken broth or bouillon, dry, prepared with water" + }, + { + "canonical_name": "soup, chicken broth, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171542, + "usda_description": "Soup, chicken broth, canned, condensed" + }, + { + "canonical_name": "soup, chicken broth, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174551, + "usda_description": "Soup, chicken broth, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chicken broth, less/reduced sodium, ready to serve", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172888, + "usda_description": "Soup, chicken broth, less/reduced sodium, ready to serve" + }, + { + "canonical_name": "soup, chicken broth, low sodium, canned", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171609, + "usda_description": "Soup, chicken broth, low sodium, canned" + }, + { + "canonical_name": "soup, chicken broth, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 174536, + "usda_description": "Soup, chicken broth, ready-to-serve" + }, + { + "canonical_name": "soup, chicken gumbo, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171147, + "usda_description": "Soup, chicken gumbo, canned, condensed" + }, + { + "canonical_name": "soup, chicken gumbo, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172908, + "usda_description": "Soup, chicken gumbo, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chicken mushroom, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174522, + "usda_description": "Soup, chicken mushroom, canned, condensed" + }, + { + "canonical_name": "soup, chicken mushroom, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171573, + "usda_description": "Soup, chicken mushroom, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chicken noodle, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171543, + "usda_description": "Soup, chicken noodle, canned, condensed" + }, + { + "canonical_name": "soup, chicken noodle, dry, mix, prepared with water", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 172925, + "usda_description": "Soup, chicken noodle, dry, mix, prepared with water" + }, + { + "canonical_name": "soup, chicken noodle, low sodium, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171593, + "usda_description": "Soup, chicken noodle, low sodium, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chicken noodle, reduced sodium, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174064, + "usda_description": "Soup, chicken noodle, reduced sodium, canned, ready-to-serve" + }, + { + "canonical_name": "soup, chicken rice, canned, chunky, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171544, + "usda_description": "Soup, chicken rice, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, chicken vegetable with potato and cheese, chunky, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 172892, + "usda_description": "Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, chicken vegetable, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 171149, + "usda_description": "Soup, chicken vegetable, canned, condensed" + }, + { + "canonical_name": "soup, chicken with rice, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171545, + "usda_description": "Soup, chicken with rice, canned, condensed" + }, + { + "canonical_name": "soup, chicken, canned, chunky, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 171145, + "usda_description": "Soup, chicken, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, chili beef, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.112, + "default_unit_class": "mass", + "usda_fdc_id": 171150, + "usda_description": "Soup, chili beef, canned, condensed" + }, + { + "canonical_name": "soup, chili beef, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 172911, + "usda_description": "Soup, chili beef, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, chunky beef, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 171162, + "usda_description": "Soup, chunky beef, canned, ready-to-serve" + }, + { + "canonical_name": "soup, chunky chicken noodle, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 171148, + "usda_description": "Soup, chunky chicken noodle, canned, ready-to-serve" + }, + { + "canonical_name": "soup, chunky vegetable, canned, ready-to-serve", + "category": "other", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 171559, + "usda_description": "Soup, chunky vegetable, canned, ready-to-serve" + }, + { + "canonical_name": "soup, chunky vegetable, reduced sodium, canned, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 174071, + "usda_description": "Soup, chunky vegetable, reduced sodium, canned, ready-to-serve" + }, + { + "canonical_name": "soup, clam chowder, manhattan style, canned, chunky, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171151, + "usda_description": "Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, clam chowder, manhattan, canned, condensed", + "category": "other", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171152, + "usda_description": "Soup, clam chowder, manhattan, canned, condensed" + }, + { + "canonical_name": "soup, clam chowder, manhattan, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 174554, + "usda_description": "Soup, clam chowder, manhattan, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, clam chowder, new england, canned, condensed", + "category": "other", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171547, + "usda_description": "Soup, clam chowder, new england, canned, condensed" + }, + { + "canonical_name": "soup, clam chowder, new england, canned, prepared with equal volume low fat milk", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 174539, + "usda_description": "Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk" + }, + { + "canonical_name": "soup, clam chowder, new england, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174555, + "usda_description": "Soup, clam chowder, new england, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, clam chowder, new england, canned, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 174062, + "usda_description": "Soup, clam chowder, new england, canned, ready-to-serve" + }, + { + "canonical_name": "soup, clam chowder, new england, reduced sodium, canned, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 174063, + "usda_description": "Soup, clam chowder, new england, reduced sodium, canned, ready-to-serve" + }, + { + "canonical_name": "soup, cream of asparagus, canned, condensed", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171537, + "usda_description": "Soup, cream of asparagus, canned, condensed" + }, + { + "canonical_name": "soup, cream of asparagus, canned, prepared with equal volume milk", + "category": "dairy", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172891, + "usda_description": "Soup, cream of asparagus, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cream of asparagus, canned, prepared with equal volume water", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174549, + "usda_description": "Soup, cream of asparagus, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of celery, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171540, + "usda_description": "Soup, cream of celery, canned, condensed" + }, + { + "canonical_name": "soup, cream of celery, canned, prepared with equal volume milk", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172893, + "usda_description": "Soup, cream of celery, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cream of celery, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172907, + "usda_description": "Soup, cream of celery, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of chicken, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171146, + "usda_description": "Soup, cream of chicken, canned, condensed" + }, + { + "canonical_name": "soup, cream of chicken, canned, condensed, reduced sodium", + "category": "meat", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171602, + "usda_description": "Soup, cream of chicken, canned, condensed, reduced sodium" + }, + { + "canonical_name": "soup, cream of chicken, canned, prepared with equal volume milk", + "category": "meat", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174537, + "usda_description": "Soup, cream of chicken, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cream of chicken, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174553, + "usda_description": "Soup, cream of chicken, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of chicken, dry, mix, prepared with water", + "category": "meat", + "density_g_per_ml": 1.103, + "default_unit_class": "mass", + "usda_fdc_id": 174567, + "usda_description": "Soup, cream of chicken, dry, mix, prepared with water" + }, + { + "canonical_name": "soup, cream of mushroom, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171155, + "usda_description": "Soup, cream of mushroom, canned, condensed" + }, + { + "canonical_name": "soup, cream of mushroom, canned, condensed, reduced sodium", + "category": "produce-vegetable", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 172887, + "usda_description": "Soup, cream of mushroom, canned, condensed, reduced sodium" + }, + { + "canonical_name": "soup, cream of mushroom, canned, prepared with equal volume low fat milk", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 174540, + "usda_description": "Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk" + }, + { + "canonical_name": "soup, cream of mushroom, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172915, + "usda_description": "Soup, cream of mushroom, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of mushroom, low sodium, ready-to-serve, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 171607, + "usda_description": "Soup, cream of mushroom, low sodium, ready-to-serve, canned" + }, + { + "canonical_name": "soup, cream of onion, canned, condensed", + "category": "dairy", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171552, + "usda_description": "Soup, cream of onion, canned, condensed" + }, + { + "canonical_name": "soup, cream of onion, canned, prepared with equal volume milk", + "category": "dairy", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 174541, + "usda_description": "Soup, cream of onion, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cream of onion, canned, prepared with equal volume water", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174559, + "usda_description": "Soup, cream of onion, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of potato, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171158, + "usda_description": "Soup, cream of potato, canned, condensed" + }, + { + "canonical_name": "soup, cream of potato, canned, prepared with equal volume milk", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172897, + "usda_description": "Soup, cream of potato, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, cream of potato, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172917, + "usda_description": "Soup, cream of potato, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, cream of shrimp, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171159, + "usda_description": "Soup, cream of shrimp, canned, condensed" + }, + { + "canonical_name": "soup, cream of shrimp, canned, prepared with equal volume low fat milk", + "category": "meat", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 172898, + "usda_description": "Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk" + }, + { + "canonical_name": "soup, cream of shrimp, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172918, + "usda_description": "Soup, cream of shrimp, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, lentil with ham, canned, ready-to-serve", + "category": "legume", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171549, + "usda_description": "Soup, lentil with ham, canned, ready-to-serve" + }, + { + "canonical_name": "soup, minestrone, canned, chunky, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171550, + "usda_description": "Soup, minestrone, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, minestrone, canned, condensed", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171153, + "usda_description": "Soup, minestrone, canned, condensed" + }, + { + "canonical_name": "soup, minestrone, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 172913, + "usda_description": "Soup, minestrone, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, minestrone, canned, reduced sodium, ready-to-serve", + "category": "other", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 174530, + "usda_description": "Soup, minestrone, canned, reduced sodium, ready-to-serve" + }, + { + "canonical_name": "soup, mushroom barley, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171154, + "usda_description": "Soup, mushroom barley, canned, condensed" + }, + { + "canonical_name": "soup, mushroom barley, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172914, + "usda_description": "Soup, mushroom barley, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, mushroom with beef stock, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171156, + "usda_description": "Soup, mushroom with beef stock, canned, condensed" + }, + { + "canonical_name": "soup, mushroom with beef stock, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174558, + "usda_description": "Soup, mushroom with beef stock, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, onion, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171551, + "usda_description": "Soup, onion, canned, condensed" + }, + { + "canonical_name": "soup, onion, dry, mix, prepared with water", + "category": "beverage", + "density_g_per_ml": 0.97, + "default_unit_class": "volume", + "usda_fdc_id": 174568, + "usda_description": "Soup, onion, dry, mix, prepared with water" + }, + { + "canonical_name": "soup, oyster stew, canned, condensed", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171553, + "usda_description": "Soup, oyster stew, canned, condensed" + }, + { + "canonical_name": "soup, oyster stew, canned, prepared with equal volume milk", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 172895, + "usda_description": "Soup, oyster stew, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, oyster stew, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 174560, + "usda_description": "Soup, oyster stew, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, pea, green, canned, condensed", + "category": "other", + "density_g_per_ml": 1.082, + "default_unit_class": "mass", + "usda_fdc_id": 171554, + "usda_description": "Soup, pea, green, canned, condensed" + }, + { + "canonical_name": "soup, pea, green, canned, prepared with equal volume milk", + "category": "dairy", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 172896, + "usda_description": "Soup, pea, green, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, pea, green, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.096, + "default_unit_class": "mass", + "usda_fdc_id": 174561, + "usda_description": "Soup, pea, green, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, pea, low sodium, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.095, + "default_unit_class": "mass", + "usda_fdc_id": 171592, + "usda_description": "Soup, pea, low sodium, prepared with equal volume water" + }, + { + "canonical_name": "soup, pea, split with ham, canned, chunky, ready-to-serve", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 171555, + "usda_description": "Soup, pea, split with ham, canned, chunky, ready-to-serve" + }, + { + "canonical_name": "soup, pea, split with ham, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.141, + "default_unit_class": "mass", + "usda_fdc_id": 171157, + "usda_description": "Soup, pea, split with ham, canned, condensed" + }, + { + "canonical_name": "soup, pea, split with ham, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 172916, + "usda_description": "Soup, pea, split with ham, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, stock, beef, home-prepared", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172883, + "usda_description": "Soup, stock, beef, home-prepared" + }, + { + "canonical_name": "soup, stock, chicken, home-prepared", + "category": "meat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 172884, + "usda_description": "Soup, stock, chicken, home-prepared" + }, + { + "canonical_name": "soup, stock, fish, home-prepared", + "category": "meat", + "density_g_per_ml": 0.985, + "default_unit_class": "volume", + "usda_fdc_id": 172885, + "usda_description": "Soup, stock, fish, home-prepared" + }, + { + "canonical_name": "soup, tomato beef with noodle, canned, condensed", + "category": "grain", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 171160, + "usda_description": "Soup, tomato beef with noodle, canned, condensed" + }, + { + "canonical_name": "soup, tomato beef with noodle, canned, prepared with equal volume water", + "category": "grain", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172919, + "usda_description": "Soup, tomato beef with noodle, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, tomato bisque, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 172881, + "usda_description": "Soup, tomato bisque, canned, condensed" + }, + { + "canonical_name": "soup, tomato bisque, canned, prepared with equal volume milk", + "category": "produce-vegetable", + "density_g_per_ml": 1.061, + "default_unit_class": "mass", + "usda_fdc_id": 172902, + "usda_description": "Soup, tomato bisque, canned, prepared with equal volume milk" + }, + { + "canonical_name": "soup, tomato bisque, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 171574, + "usda_description": "Soup, tomato bisque, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, tomato rice, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 1.091, + "default_unit_class": "mass", + "usda_fdc_id": 171557, + "usda_description": "Soup, tomato rice, canned, condensed" + }, + { + "canonical_name": "soup, tomato rice, canned, prepared with equal volume water", + "category": "produce-vegetable", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 172920, + "usda_description": "Soup, tomato rice, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, tomato, canned, condensed", + "category": "produce-vegetable", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 172882, + "usda_description": "Soup, tomato, canned, condensed" + }, + { + "canonical_name": "soup, tomato, canned, prepared with equal volume low fat milk", + "category": "produce-vegetable", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 174546, + "usda_description": "Soup, tomato, canned, prepared with equal volume low fat (2%) milk" + }, + { + "canonical_name": "soup, tomato, canned, prepared with equal volume water, commercial", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171176, + "usda_description": "Soup, tomato, canned, prepared with equal volume water, commercial" + }, + { + "canonical_name": "soup, tomato, dry, mix, prepared with water", + "category": "produce-vegetable", + "density_g_per_ml": 1.12, + "default_unit_class": "mass", + "usda_fdc_id": 174569, + "usda_description": "Soup, tomato, dry, mix, prepared with water" + }, + { + "canonical_name": "soup, tomato, low sodium, with water", + "category": "produce-vegetable", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 171591, + "usda_description": "Soup, tomato, low sodium, with water" + }, + { + "canonical_name": "soup, turkey noodle, canned, prepared with equal volume water", + "category": "grain", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174562, + "usda_description": "Soup, turkey noodle, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, turkey vegetable, canned, prepared with equal volume water", + "category": "meat", + "density_g_per_ml": 1.018, + "default_unit_class": "volume", + "usda_fdc_id": 174563, + "usda_description": "Soup, turkey vegetable, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, turkey, chunky, canned, ready-to-serve", + "category": "meat", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 171558, + "usda_description": "Soup, turkey, chunky, canned, ready-to-serve" + }, + { + "canonical_name": "soup, vegetable beef, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171163, + "usda_description": "Soup, vegetable beef, canned, condensed" + }, + { + "canonical_name": "soup, vegetable beef, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174565, + "usda_description": "Soup, vegetable beef, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, vegetable broth, ready to serve", + "category": "other", + "density_g_per_ml": 0.934, + "default_unit_class": "volume", + "usda_fdc_id": 171583, + "usda_description": "Soup, vegetable broth, ready to serve" + }, + { + "canonical_name": "soup, vegetable chicken, canned, prepared with water, low sodium", + "category": "meat", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 171596, + "usda_description": "Soup, vegetable chicken, canned, prepared with water, low sodium" + }, + { + "canonical_name": "soup, vegetable soup, condensed, low sodium, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 171594, + "usda_description": "Soup, vegetable soup, condensed, low sodium, prepared with equal volume water" + }, + { + "canonical_name": "soup, vegetable with beef broth, canned, condensed", + "category": "meat", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171164, + "usda_description": "Soup, vegetable with beef broth, canned, condensed" + }, + { + "canonical_name": "soup, vegetable with beef broth, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 172921, + "usda_description": "Soup, vegetable with beef broth, canned, prepared with equal volume water" + }, + { + "canonical_name": "soup, vegetable, canned, low sodium, condensed", + "category": "other", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 174538, + "usda_description": "Soup, vegetable, canned, low sodium, condensed" + }, + { + "canonical_name": "soup, vegetarian vegetable, canned, condensed", + "category": "other", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 171161, + "usda_description": "Soup, vegetarian vegetable, canned, condensed" + }, + { + "canonical_name": "soup, vegetarian vegetable, canned, prepared with equal volume water", + "category": "beverage", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 174564, + "usda_description": "Soup, vegetarian vegetable, canned, prepared with equal volume water" + }, + { + "canonical_name": "sour cream, imitation, cultured", + "category": "dairy", + "density_g_per_ml": 0.972, + "default_unit_class": "volume", + "usda_fdc_id": 170869, + "usda_description": "Sour cream, imitation, cultured" + }, + { + "canonical_name": "sour dressing, non-butterfat, cultured, filled cream-type", + "category": "condiment", + "density_g_per_ml": 0.902, + "default_unit_class": "volume", + "usda_fdc_id": 171259, + "usda_description": "Sour dressing, non-butterfat, cultured, filled cream-type" + }, + { + "canonical_name": "soursop", + "category": "other", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 167761, + "usda_description": "Soursop, raw" + }, + { + "canonical_name": "soy flour, full-fat, roasted", + "category": "baking", + "density_g_per_ml": 0.359, + "default_unit_class": "volume", + "usda_fdc_id": 174274, + "usda_description": "Soy flour, full-fat, roasted" + }, + { + "canonical_name": "soy sauce made from hydrolyzed vegetable protein", + "category": "condiment", + "density_g_per_ml": 1.138, + "default_unit_class": "mass", + "usda_fdc_id": 174279, + "usda_description": "Soy sauce made from hydrolyzed vegetable protein" + }, + { + "canonical_name": "soy sauce made from soy", + "category": "condiment", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 174278, + "usda_description": "Soy sauce made from soy (tamari)" + }, + { + "canonical_name": "soy sauce made from soy and wheat", + "category": "condiment", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 174277, + "usda_description": "Soy sauce made from soy and wheat (shoyu)" + }, + { + "canonical_name": "soy sauce, reduced sodium, made from hydrolyzed vegetable protein", + "category": "condiment", + "density_g_per_ml": 0.996, + "default_unit_class": "volume", + "usda_fdc_id": 172474, + "usda_description": "Soy sauce, reduced sodium, made from hydrolyzed vegetable protein" + }, + { + "canonical_name": "soybean and cottonseed shortening bread", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172329, + "usda_description": "Shortening bread, soybean (hydrogenated) and cottonseed" + }, + { + "canonical_name": "soybean and cottonseed shortening cake mix", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172330, + "usda_description": "Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)" + }, + { + "canonical_name": "soybean and cottonseed shortening industrial", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 173569, + "usda_description": "Shortening industrial, soybean (hydrogenated) and cottonseed" + }, + { + "canonical_name": "soybean lecithin oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171426, + "usda_description": "Oil, soybean lecithin" + }, + { + "canonical_name": "soybeans, green drained, with salt", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170530, + "usda_description": "Soybeans, green, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "soybeans, green drained, without salt", + "category": "legume", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169283, + "usda_description": "Soybeans, green, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "soybeans, mature cooked, boiled, without salt", + "category": "legume", + "density_g_per_ml": 0.725, + "default_unit_class": "volume", + "usda_fdc_id": 174271, + "usda_description": "Soybeans, mature cooked, boiled, without salt" + }, + { + "canonical_name": "soybeans, mature seeds, dry roasted", + "category": "legume", + "density_g_per_ml": 0.393, + "default_unit_class": "volume", + "usda_fdc_id": 172441, + "usda_description": "Soybeans, mature seeds, dry roasted" + }, + { + "canonical_name": "soybeans, mature seeds, roasted, no salt added", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 174300, + "usda_description": "Soybeans, mature seeds, roasted, no salt added" + }, + { + "canonical_name": "soybeans, mature seeds, roasted, salted", + "category": "legume", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 172440, + "usda_description": "Soybeans, mature seeds, roasted, salted" + }, + { + "canonical_name": "soybeans, mature seeds, sprouted", + "category": "legume", + "density_g_per_ml": 0.296, + "default_unit_class": "volume", + "usda_fdc_id": 169284, + "usda_description": "Soybeans, mature seeds, sprouted, raw" + }, + { + "canonical_name": "soybeans, mature seeds, sprouted, cooked, steamed", + "category": "legume", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 168460, + "usda_description": "Soybeans, mature seeds, sprouted, cooked, steamed" + }, + { + "canonical_name": "soybeans, mature seeds, sprouted, cooked, steamed, with salt", + "category": "legume", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 169369, + "usda_description": "Soybeans, mature seeds, sprouted, cooked, steamed, with salt" + }, + { + "canonical_name": "soymilk , lowfat, with added calcium, vitamins a and d", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173769, + "usda_description": "Soymilk (All flavors), lowfat, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk , nonfat, with added calcium, vitamins a and d", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175216, + "usda_description": "Soymilk (all flavors), nonfat, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk , unsweetened, with added calcium, vitamins a and d", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175215, + "usda_description": "Soymilk (all flavors), unsweetened, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk chai", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173776, + "usda_description": "SILK Chai, soymilk" + }, + { + "canonical_name": "soymilk chocolate", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173770, + "usda_description": "SILK Chocolate, soymilk" + }, + { + "canonical_name": "soymilk coffee", + "category": "beverage", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175224, + "usda_description": "SILK Coffee, soymilk" + }, + { + "canonical_name": "soymilk light chocolate", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173773, + "usda_description": "SILK Light Chocolate, soymilk" + }, + { + "canonical_name": "soymilk light plain", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173771, + "usda_description": "SILK Light Plain, soymilk" + }, + { + "canonical_name": "soymilk light vanilla", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173772, + "usda_description": "SILK Light Vanilla, soymilk" + }, + { + "canonical_name": "soymilk mocha", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173777, + "usda_description": "SILK Mocha, soymilk" + }, + { + "canonical_name": "soymilk nog", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173775, + "usda_description": "SILK Nog, soymilk" + }, + { + "canonical_name": "soymilk plain", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175218, + "usda_description": "SILK Plain, soymilk" + }, + { + "canonical_name": "soymilk plus fiber", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175222, + "usda_description": "SILK Plus Fiber, soymilk" + }, + { + "canonical_name": "soymilk plus for bone health", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175221, + "usda_description": "SILK Plus for Bone Health, soymilk" + }, + { + "canonical_name": "soymilk plus omega-3", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175220, + "usda_description": "SILK Plus Omega-3 DHA, soymilk" + }, + { + "canonical_name": "soymilk unsweetened", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175223, + "usda_description": "SILK Unsweetened, soymilk" + }, + { + "canonical_name": "soymilk vanilla", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175219, + "usda_description": "SILK Vanilla, soymilk" + }, + { + "canonical_name": "soymilk very vanilla", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173774, + "usda_description": "SILK Very Vanilla, soymilk" + }, + { + "canonical_name": "soymilk, chocolate, nonfat, with added calcium, vitamins a and d", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175217, + "usda_description": "Soymilk, chocolate, nonfat, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk, chocolate, with added calcium, vitamins a and d", + "category": "baking", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 174295, + "usda_description": "Soymilk, chocolate, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk, original and vanilla, light, with added calcium, vitamins a and d", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 173766, + "usda_description": "Soymilk, original and vanilla, light, with added calcium, vitamins A and D" + }, + { + "canonical_name": "soymilk, original and vanilla, with added calcium, vitamins a and d", + "category": "baking", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 172456, + "usda_description": "Soymilk, original and vanilla, with added calcium, vitamins A and D" + }, + { + "canonical_name": "spaghetti, spinach, cooked", + "category": "produce-vegetable", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168912, + "usda_description": "Spaghetti, spinach, cooked" + }, + { + "canonical_name": "spaghetti, with meatballs in tomato sauce, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 172099, + "usda_description": "Spaghetti, with meatballs in tomato sauce, canned" + }, + { + "canonical_name": "spanish peanuts", + "category": "nut-seed", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 174263, + "usda_description": "Peanuts, spanish, raw" + }, + { + "canonical_name": "spearmint", + "category": "produce-fruit", + "density_g_per_ml": 0.245, + "default_unit_class": "volume", + "usda_fdc_id": 172239, + "usda_description": "Spearmint, dried" + }, + { + "canonical_name": "spices, pepper, black", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170931, + "usda_description": "Spices, pepper, black" + }, + { + "canonical_name": "spices, pepper, red or cayenne", + "category": "spice", + "density_g_per_ml": 0.362, + "default_unit_class": "volume", + "usda_fdc_id": 170932, + "usda_description": "Spices, pepper, red or cayenne" + }, + { + "canonical_name": "spices, pepper, white", + "category": "spice", + "density_g_per_ml": 0.484, + "default_unit_class": "volume", + "usda_fdc_id": 170933, + "usda_description": "Spices, pepper, white" + }, + { + "canonical_name": "spinach", + "category": "produce-vegetable", + "density_g_per_ml": 0.127, + "default_unit_class": "volume", + "usda_fdc_id": 168462, + "usda_description": "Spinach, raw" + }, + { + "canonical_name": "spinach souffle", + "category": "produce-vegetable", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 170494, + "usda_description": "Spinach souffle" + }, + { + "canonical_name": "spinach, canned, no salt added, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 0.989, + "default_unit_class": "volume", + "usda_fdc_id": 170123, + "usda_description": "Spinach, canned, no salt added, solids and liquids" + }, + { + "canonical_name": "spinach, canned, regular pack, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.905, + "default_unit_class": "volume", + "usda_fdc_id": 169286, + "usda_description": "Spinach, canned, regular pack, drained solids" + }, + { + "canonical_name": "spinach, canned, regular pack, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 0.989, + "default_unit_class": "volume", + "usda_fdc_id": 169285, + "usda_description": "Spinach, canned, regular pack, solids and liquids" + }, + { + "canonical_name": "spinach, frozen, chopped or leaf drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 170124, + "usda_description": "Spinach, frozen, chopped or leaf, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "spinach, frozen, chopped or leaf drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 169288, + "usda_description": "Spinach, frozen, chopped or leaf, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "spinach, frozen, chopped or leaf, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169287, + "usda_description": "Spinach, frozen, chopped or leaf, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "spirulina seaweed", + "category": "other", + "density_g_per_ml": 0.473, + "default_unit_class": "volume", + "usda_fdc_id": 170495, + "usda_description": "Seaweed, spirulina, dried" + }, + { + "canonical_name": "split pea soup, canned, reduced sodium, prepared with water or ready-to serve", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 174534, + "usda_description": "Split pea soup, canned, reduced sodium, prepared with water or ready-to serve" + }, + { + "canonical_name": "spring or scallions onions", + "category": "produce-vegetable", + "density_g_per_ml": 0.414, + "default_unit_class": "volume", + "usda_fdc_id": 170005, + "usda_description": "Onions, spring or scallions (includes tops and bulb), raw" + }, + { + "canonical_name": "sprouted alfalfa seeds", + "category": "nut-seed", + "density_g_per_ml": 0.171, + "default_unit_class": "volume", + "usda_fdc_id": 168384, + "usda_description": "Alfalfa seeds, sprouted, raw" + }, + { + "canonical_name": "sprouted lentils", + "category": "legume", + "density_g_per_ml": 0.325, + "default_unit_class": "volume", + "usda_fdc_id": 168427, + "usda_description": "Lentils, sprouted, raw" + }, + { + "canonical_name": "sprouted radish seeds", + "category": "nut-seed", + "density_g_per_ml": 0.161, + "default_unit_class": "volume", + "usda_fdc_id": 170095, + "usda_description": "Radish seeds, sprouted, raw" + }, + { + "canonical_name": "sprouted wheat", + "category": "other", + "density_g_per_ml": 0.456, + "default_unit_class": "volume", + "usda_fdc_id": 169725, + "usda_description": "Wheat, sprouted" + }, + { + "canonical_name": "squash, summer, all varieties", + "category": "produce-vegetable", + "density_g_per_ml": 0.478, + "default_unit_class": "volume", + "usda_fdc_id": 170487, + "usda_description": "Squash, summer, all varieties, raw" + }, + { + "canonical_name": "squash, summer, all varieties drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170125, + "usda_description": "Squash, summer, all varieties, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, all varieties drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170488, + "usda_description": "Squash, summer, all varieties, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck", + "category": "produce-vegetable", + "density_g_per_ml": 0.537, + "default_unit_class": "volume", + "usda_fdc_id": 168464, + "usda_description": "Squash, summer, crookneck and straightneck, raw" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170126, + "usda_description": "Squash, summer, crookneck and straightneck, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168465, + "usda_description": "Squash, summer, crookneck and straightneck, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck, canned, drained, solid, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.938, + "default_unit_class": "volume", + "usda_fdc_id": 168466, + "usda_description": "Squash, summer, crookneck and straightneck, canned, drained, solid, without salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 170532, + "usda_description": "Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168468, + "usda_description": "Squash, summer, crookneck and straightneck, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, crookneck and straightneck, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 168467, + "usda_description": "Squash, summer, crookneck and straightneck, frozen, unprepared" + }, + { + "canonical_name": "squash, summer, scallop", + "category": "produce-vegetable", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 169289, + "usda_description": "Squash, summer, scallop, raw" + }, + { + "canonical_name": "squash, summer, scallop drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170533, + "usda_description": "Squash, summer, scallop, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, scallop drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 169290, + "usda_description": "Squash, summer, scallop, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, zucchini, includes skin", + "category": "produce-vegetable", + "density_g_per_ml": 0.501, + "default_unit_class": "volume", + "usda_fdc_id": 169291, + "usda_description": "Squash, summer, zucchini, includes skin, raw" + }, + { + "canonical_name": "squash, summer, zucchini, includes skin drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 170534, + "usda_description": "Squash, summer, zucchini, includes skin, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, zucchini, includes skin drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.888, + "default_unit_class": "volume", + "usda_fdc_id": 169292, + "usda_description": "Squash, summer, zucchini, includes skin, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, zucchini, includes skin, frozen drained, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.943, + "default_unit_class": "volume", + "usda_fdc_id": 170535, + "usda_description": "Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "squash, summer, zucchini, includes skin, frozen drained, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.943, + "default_unit_class": "volume", + "usda_fdc_id": 168470, + "usda_description": "Squash, summer, zucchini, includes skin, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "squash, summer, zucchini, italian style, canned", + "category": "produce-vegetable", + "density_g_per_ml": 0.959, + "default_unit_class": "volume", + "usda_fdc_id": 168471, + "usda_description": "Squash, summer, zucchini, italian style, canned" + }, + { + "canonical_name": "squash, winter, acorn", + "category": "produce-vegetable", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 168472, + "usda_description": "Squash, winter, acorn, raw" + }, + { + "canonical_name": "squash, winter, acorn mashed, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170129, + "usda_description": "Squash, winter, acorn, cooked, boiled, mashed, with salt" + }, + { + "canonical_name": "squash, winter, acorn mashed, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169294, + "usda_description": "Squash, winter, acorn, cooked, boiled, mashed, without salt" + }, + { + "canonical_name": "squash, winter, acorn, cooked, baked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 170128, + "usda_description": "Squash, winter, acorn, cooked, baked, with salt" + }, + { + "canonical_name": "squash, winter, acorn, cooked, baked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 169293, + "usda_description": "Squash, winter, acorn, cooked, baked, without salt" + }, + { + "canonical_name": "squash, winter, all varieties", + "category": "produce-vegetable", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 170489, + "usda_description": "Squash, winter, all varieties, raw" + }, + { + "canonical_name": "squash, winter, all varieties, cooked, baked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 170127, + "usda_description": "Squash, winter, all varieties, cooked, baked, with salt" + }, + { + "canonical_name": "squash, winter, all varieties, cooked, baked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 170490, + "usda_description": "Squash, winter, all varieties, cooked, baked, without salt" + }, + { + "canonical_name": "squash, winter, butternut", + "category": "oil-fat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169295, + "usda_description": "Squash, winter, butternut, raw" + }, + { + "canonical_name": "squash, winter, butternut, cooked, baked, with salt", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 170130, + "usda_description": "Squash, winter, butternut, cooked, baked, with salt" + }, + { + "canonical_name": "squash, winter, butternut, cooked, baked, without salt", + "category": "oil-fat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 169296, + "usda_description": "Squash, winter, butternut, cooked, baked, without salt" + }, + { + "canonical_name": "squash, winter, butternut, frozen with salt", + "category": "oil-fat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170536, + "usda_description": "Squash, winter, butternut, frozen, cooked, boiled, with salt" + }, + { + "canonical_name": "squash, winter, butternut, frozen without salt", + "category": "oil-fat", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 168474, + "usda_description": "Squash, winter, butternut, frozen, cooked, boiled, without salt" + }, + { + "canonical_name": "squash, winter, hubbard", + "category": "produce-vegetable", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 168475, + "usda_description": "Squash, winter, hubbard, raw" + }, + { + "canonical_name": "squash, winter, hubbard mashed, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 170538, + "usda_description": "Squash, winter, hubbard, cooked, boiled, mashed, with salt" + }, + { + "canonical_name": "squash, winter, hubbard mashed, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.998, + "default_unit_class": "volume", + "usda_fdc_id": 169297, + "usda_description": "Squash, winter, hubbard, cooked, boiled, mashed, without salt" + }, + { + "canonical_name": "squash, winter, hubbard, baked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 170537, + "usda_description": "Squash, winter, hubbard, baked, with salt" + }, + { + "canonical_name": "squash, winter, hubbard, baked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 168476, + "usda_description": "Squash, winter, hubbard, baked, without salt" + }, + { + "canonical_name": "squash, winter, spaghetti", + "category": "produce-vegetable", + "density_g_per_ml": 0.427, + "default_unit_class": "volume", + "usda_fdc_id": 169298, + "usda_description": "Squash, winter, spaghetti, raw" + }, + { + "canonical_name": "squash, winter, spaghetti drained, or baked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 170539, + "usda_description": "Squash, winter, spaghetti, cooked, boiled, drained, or baked, with salt" + }, + { + "canonical_name": "squash, winter, spaghetti drained, or baked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169299, + "usda_description": "Squash, winter, spaghetti, cooked, boiled, drained, or baked, without salt" + }, + { + "canonical_name": "steamed lambsquarters", + "category": "meat", + "density_g_per_ml": 0.275, + "default_unit_class": "volume", + "usda_fdc_id": 169815, + "usda_description": "Lambsquarters, steamed (Northern Plains Indians)" + }, + { + "canonical_name": "strawberries", + "category": "other", + "density_g_per_ml": 0.738, + "default_unit_class": "volume", + "usda_fdc_id": 167762, + "usda_description": "Strawberries, raw" + }, + { + "canonical_name": "strawberries, canned, heavy syrup pack, solids and liquids", + "category": "condiment", + "density_g_per_ml": 1.074, + "default_unit_class": "mass", + "usda_fdc_id": 168172, + "usda_description": "Strawberries, canned, heavy syrup pack, solids and liquids" + }, + { + "canonical_name": "strawberries, frozen, sweetened, sliced", + "category": "other", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 168174, + "usda_description": "Strawberries, frozen, sweetened, sliced" + }, + { + "canonical_name": "strawberries, frozen, unsweetened", + "category": "other", + "density_g_per_ml": 0.782, + "default_unit_class": "volume", + "usda_fdc_id": 168173, + "usda_description": "Strawberries, frozen, unsweetened (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "strawberry banana fruit juice smoothie", + "category": "produce-fruit", + "density_g_per_ml": 0.978, + "default_unit_class": "volume", + "usda_fdc_id": 167799, + "usda_description": "Fruit juice smoothie, BOLTHOUSE FARMS, strawberry banana" + }, + { + "canonical_name": "strawberry guavas", + "category": "produce-fruit", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 173045, + "usda_description": "Guavas, strawberry, raw" + }, + { + "canonical_name": "strawberry ice creams", + "category": "produce-fruit", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168810, + "usda_description": "Ice creams, strawberry" + }, + { + "canonical_name": "strawberry toppings", + "category": "produce-fruit", + "density_g_per_ml": 1.429, + "default_unit_class": "mass", + "usda_fdc_id": 168758, + "usda_description": "Toppings, strawberry" + }, + { + "canonical_name": "succotash, , canned, with cream style corn", + "category": "dairy", + "density_g_per_ml": 1.124, + "default_unit_class": "mass", + "usda_fdc_id": 168478, + "usda_description": "Succotash, (corn and limas), canned, with cream style corn" + }, + { + "canonical_name": "succotash, , canned, with whole kernel corn, solids and liquids", + "category": "other", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 168479, + "usda_description": "Succotash, (corn and limas), canned, with whole kernel corn, solids and liquids" + }, + { + "canonical_name": "succotash, , frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 170131, + "usda_description": "Succotash, (corn and limas), frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "succotash, , frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168481, + "usda_description": "Succotash, (corn and limas), frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "succotash, , frozen, unprepared", + "category": "other", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 168480, + "usda_description": "Succotash, (corn and limas), frozen, unprepared" + }, + { + "canonical_name": "succotash, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 170540, + "usda_description": "Succotash, (corn and limas), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "succotash, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 168477, + "usda_description": "Succotash, (corn and limas), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "sugar free syrups", + "category": "baking", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169878, + "usda_description": "Syrups, sugar free" + }, + { + "canonical_name": "sugar substitute brown sweeteners", + "category": "baking", + "density_g_per_ml": 0.101, + "default_unit_class": "volume", + "usda_fdc_id": 170675, + "usda_description": "Sweeteners, sugar substitute, granulated, brown" + }, + { + "canonical_name": "sugar-apples", + "category": "baking", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 168175, + "usda_description": "Sugar-apples, (sweetsop), raw" + }, + { + "canonical_name": "sugars", + "category": "baking", + "density_g_per_ml": 0.849, + "default_unit_class": "volume", + "usda_fdc_id": 169655, + "usda_description": "Sugars, granulated" + }, + { + "canonical_name": "sun-dried tomatoes", + "category": "produce-vegetable", + "density_g_per_ml": 0.228, + "default_unit_class": "volume", + "usda_fdc_id": 168567, + "usda_description": "Tomatoes, sun-dried" + }, + { + "canonical_name": "sunflower seed kernels seeds", + "category": "nut-seed", + "density_g_per_ml": 0.393, + "default_unit_class": "volume", + "usda_fdc_id": 170562, + "usda_description": "Seeds, sunflower seed kernels, dried" + }, + { + "canonical_name": "sweet and sour salad dressing", + "category": "condiment", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 169875, + "usda_description": "Salad dressing, sweet and sour" + }, + { + "canonical_name": "sweet cherries", + "category": "other", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 171719, + "usda_description": "Cherries, sweet, raw" + }, + { + "canonical_name": "sweet pickle relish", + "category": "other", + "density_g_per_ml": 1.025, + "default_unit_class": "volume", + "usda_fdc_id": 168561, + "usda_description": "Pickle relish, sweet" + }, + { + "canonical_name": "sweet potato leaves", + "category": "produce-vegetable", + "density_g_per_ml": 0.148, + "default_unit_class": "volume", + "usda_fdc_id": 169303, + "usda_description": "Sweet potato leaves, raw" + }, + { + "canonical_name": "sweet potato leaves, cooked, steamed, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 170133, + "usda_description": "Sweet potato leaves, cooked, steamed, with salt" + }, + { + "canonical_name": "sweet potato leaves, cooked, steamed, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.271, + "default_unit_class": "volume", + "usda_fdc_id": 169304, + "usda_description": "Sweet potato leaves, cooked, steamed, without salt" + }, + { + "canonical_name": "sweet potato unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.562, + "default_unit_class": "volume", + "usda_fdc_id": 168482, + "usda_description": "Sweet potato, raw, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "sweet potato without skin", + "category": "produce-vegetable", + "density_g_per_ml": 1.386, + "default_unit_class": "mass", + "usda_fdc_id": 168484, + "usda_description": "Sweet potato, cooked, boiled, without skin" + }, + { + "canonical_name": "sweet potato, canned, mashed", + "category": "produce-vegetable", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 169305, + "usda_description": "Sweet potato, canned, mashed" + }, + { + "canonical_name": "sweet potato, canned, syrup pack, drained solids", + "category": "produce-vegetable", + "density_g_per_ml": 0.828, + "default_unit_class": "volume", + "usda_fdc_id": 170084, + "usda_description": "Sweet potato, canned, syrup pack, drained solids" + }, + { + "canonical_name": "sweet potato, canned, syrup pack, solids and liquids", + "category": "produce-vegetable", + "density_g_per_ml": 0.964, + "default_unit_class": "volume", + "usda_fdc_id": 170083, + "usda_description": "Sweet potato, canned, syrup pack, solids and liquids" + }, + { + "canonical_name": "sweet potato, canned, vacuum pack", + "category": "produce-vegetable", + "density_g_per_ml": 0.962, + "default_unit_class": "volume", + "usda_fdc_id": 168485, + "usda_description": "Sweet potato, canned, vacuum pack" + }, + { + "canonical_name": "sweet potato, cooked, baked in skin, flesh, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 170134, + "usda_description": "Sweet potato, cooked, baked in skin, flesh, with salt" + }, + { + "canonical_name": "sweet potato, cooked, baked in skin, flesh, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.845, + "default_unit_class": "volume", + "usda_fdc_id": 168483, + "usda_description": "Sweet potato, cooked, baked in skin, flesh, without salt" + }, + { + "canonical_name": "sweet potato, frozen, cooked, baked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 170542, + "usda_description": "Sweet potato, frozen, cooked, baked, with salt" + }, + { + "canonical_name": "sweet potato, frozen, cooked, baked, without salt", + "category": "produce-vegetable", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 169307, + "usda_description": "Sweet potato, frozen, cooked, baked, without salt" + }, + { + "canonical_name": "sweet potato, frozen, unprepared", + "category": "produce-vegetable", + "density_g_per_ml": 0.744, + "default_unit_class": "volume", + "usda_fdc_id": 169306, + "usda_description": "Sweet potato, frozen, unprepared (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "sweet whey", + "category": "other", + "density_g_per_ml": 0.56, + "default_unit_class": "volume", + "usda_fdc_id": 171283, + "usda_description": "Whey, sweet, dried" + }, + { + "canonical_name": "sweetener, syrup, agave", + "category": "condiment", + "density_g_per_ml": 1.165, + "default_unit_class": "mass", + "usda_fdc_id": 170277, + "usda_description": "Sweetener, syrup, agave" + }, + { + "canonical_name": "sweeteners, for baking, brown, contains sugar and sucralose", + "category": "baking", + "density_g_per_ml": 0.836, + "default_unit_class": "volume", + "usda_fdc_id": 170672, + "usda_description": "Sweeteners, for baking, brown, contains sugar and sucralose" + }, + { + "canonical_name": "sweeteners, for baking, contains sugar and sucralose", + "category": "baking", + "density_g_per_ml": 0.917, + "default_unit_class": "volume", + "usda_fdc_id": 170673, + "usda_description": "Sweeteners, for baking, contains sugar and sucralose" + }, + { + "canonical_name": "sweeteners, tabletop, aspartame, , packets", + "category": "other", + "density_g_per_ml": 0.71, + "default_unit_class": "volume", + "usda_fdc_id": 169657, + "usda_description": "Sweeteners, tabletop, aspartame, EQUAL, packets" + }, + { + "canonical_name": "sweeteners, tabletop, fructose, dry, powder", + "category": "other", + "density_g_per_ml": 0.84, + "default_unit_class": "volume", + "usda_fdc_id": 169896, + "usda_description": "Sweeteners, tabletop, fructose, dry, powder" + }, + { + "canonical_name": "swiss chard", + "category": "other", + "density_g_per_ml": 0.152, + "default_unit_class": "volume", + "usda_fdc_id": 169991, + "usda_description": "Chard, swiss, raw" + }, + { + "canonical_name": "swiss cheese", + "category": "dairy", + "density_g_per_ml": 0.682, + "default_unit_class": "volume", + "usda_fdc_id": 171251, + "usda_description": "Cheese, swiss" + }, + { + "canonical_name": "syrup, maple, canadian", + "category": "condiment", + "density_g_per_ml": 1.333, + "default_unit_class": "mass", + "usda_fdc_id": 170276, + "usda_description": "Syrup, maple, Canadian" + }, + { + "canonical_name": "syrups, chocolate, 's genuine chocolate flavored lite syrup", + "category": "baking", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 168834, + "usda_description": "Syrups, chocolate, HERSHEY'S Genuine Chocolate Flavored Lite Syrup" + }, + { + "canonical_name": "syrups, chocolate, 's sugar free, genuine chocolate flavored, lite syrup", + "category": "baking", + "density_g_per_ml": 1.183, + "default_unit_class": "mass", + "usda_fdc_id": 170677, + "usda_description": "Syrups, chocolate, HERSHEY'S Sugar free, Genuine Chocolate Flavored, Lite Syrup" + }, + { + "canonical_name": "syrups, chocolate, fudge-type", + "category": "baking", + "density_g_per_ml": 1.285, + "default_unit_class": "mass", + "usda_fdc_id": 168835, + "usda_description": "Syrups, chocolate, fudge-type" + }, + { + "canonical_name": "syrups, corn, dark", + "category": "condiment", + "density_g_per_ml": 1.369, + "default_unit_class": "mass", + "usda_fdc_id": 168836, + "usda_description": "Syrups, corn, dark" + }, + { + "canonical_name": "syrups, corn, high-fructose", + "category": "condiment", + "density_g_per_ml": 1.298, + "default_unit_class": "mass", + "usda_fdc_id": 169659, + "usda_description": "Syrups, corn, high-fructose" + }, + { + "canonical_name": "syrups, corn, light", + "category": "condiment", + "density_g_per_ml": 1.465, + "default_unit_class": "mass", + "usda_fdc_id": 168837, + "usda_description": "Syrups, corn, light" + }, + { + "canonical_name": "syrups, table blends, corn, refiner, and sugar", + "category": "baking", + "density_g_per_ml": 1.344, + "default_unit_class": "mass", + "usda_fdc_id": 168839, + "usda_description": "Syrups, table blends, corn, refiner, and sugar" + }, + { + "canonical_name": "syrups, table blends, pancake", + "category": "condiment", + "density_g_per_ml": 1.34, + "default_unit_class": "mass", + "usda_fdc_id": 169578, + "usda_description": "Syrups, table blends, pancake" + }, + { + "canonical_name": "syrups, table blends, pancake, reduced-calorie", + "category": "condiment", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 169577, + "usda_description": "Syrups, table blends, pancake, reduced-calorie" + }, + { + "canonical_name": "syrups, table blends, pancake, with 2% maple", + "category": "condiment", + "density_g_per_ml": 1.342, + "default_unit_class": "mass", + "usda_fdc_id": 168838, + "usda_description": "Syrups, table blends, pancake, with 2% maple" + }, + { + "canonical_name": "syrups, table blends, pancake, with 2% maple, with added potassium", + "category": "condiment", + "density_g_per_ml": 1.342, + "default_unit_class": "mass", + "usda_fdc_id": 170646, + "usda_description": "Syrups, table blends, pancake, with 2% maple, with added potassium" + }, + { + "canonical_name": "t.g.i. 's, macaroni & cheese, from kid's menu", + "category": "dairy", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 169835, + "usda_description": "T.G.I. FRIDAY'S, macaroni & cheese, from kid's menu" + }, + { + "canonical_name": "table salt", + "category": "spice", + "density_g_per_ml": 1.223, + "default_unit_class": "mass", + "usda_fdc_id": 173468, + "usda_description": "Salt, table" + }, + { + "canonical_name": "tahitian taro", + "category": "other", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169310, + "usda_description": "Taro, tahitian, raw" + }, + { + "canonical_name": "tamarinds", + "category": "other", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 167763, + "usda_description": "Tamarinds, raw" + }, + { + "canonical_name": "tangerine juice", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169925, + "usda_description": "Tangerine juice, raw" + }, + { + "canonical_name": "tangerines", + "category": "other", + "density_g_per_ml": 0.824, + "default_unit_class": "volume", + "usda_fdc_id": 169105, + "usda_description": "Tangerines, (mandarin oranges), raw" + }, + { + "canonical_name": "tangerines, , canned, juice pack", + "category": "beverage", + "density_g_per_ml": 1.052, + "default_unit_class": "mass", + "usda_fdc_id": 169106, + "usda_description": "Tangerines, (mandarin oranges), canned, juice pack" + }, + { + "canonical_name": "tangerines, , canned, juice pack, drained", + "category": "beverage", + "density_g_per_ml": 0.799, + "default_unit_class": "volume", + "usda_fdc_id": 168184, + "usda_description": "Tangerines, (mandarin oranges), canned, juice pack, drained" + }, + { + "canonical_name": "tangerines, , canned, light syrup pack", + "category": "condiment", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 169924, + "usda_description": "Tangerines, (mandarin oranges), canned, light syrup pack" + }, + { + "canonical_name": "tapioca, pearl, dry", + "category": "produce-fruit", + "density_g_per_ml": 0.642, + "default_unit_class": "volume", + "usda_fdc_id": 169717, + "usda_description": "Tapioca, pearl, dry" + }, + { + "canonical_name": "taro", + "category": "other", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169308, + "usda_description": "Taro, raw" + }, + { + "canonical_name": "taro leaves", + "category": "other", + "density_g_per_ml": 0.118, + "default_unit_class": "volume", + "usda_fdc_id": 168487, + "usda_description": "Taro leaves, raw" + }, + { + "canonical_name": "taro leaves, cooked, steamed, without salt", + "category": "spice", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 168488, + "usda_description": "Taro leaves, cooked, steamed, without salt" + }, + { + "canonical_name": "taro shoots", + "category": "other", + "density_g_per_ml": 0.364, + "default_unit_class": "volume", + "usda_fdc_id": 168489, + "usda_description": "Taro shoots, raw" + }, + { + "canonical_name": "taro shoots, cooked, without salt", + "category": "spice", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169309, + "usda_description": "Taro shoots, cooked, without salt" + }, + { + "canonical_name": "taro, cooked, with salt", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170543, + "usda_description": "Taro, cooked, with salt" + }, + { + "canonical_name": "taro, cooked, without salt", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168486, + "usda_description": "Taro, cooked, without salt" + }, + { + "canonical_name": "taro, leaves, cooked, steamed, with salt", + "category": "spice", + "density_g_per_ml": 0.613, + "default_unit_class": "volume", + "usda_fdc_id": 170544, + "usda_description": "Taro, leaves, cooked, steamed, with salt" + }, + { + "canonical_name": "taro, shoots, cooked, with salt", + "category": "spice", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170135, + "usda_description": "Taro, shoots, cooked, with salt" + }, + { + "canonical_name": "taro, tahitian, cooked, with salt", + "category": "spice", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 170136, + "usda_description": "Taro, tahitian, cooked, with salt" + }, + { + "canonical_name": "taro, tahitian, cooked, without salt", + "category": "spice", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 170455, + "usda_description": "Taro, tahitian, cooked, without salt" + }, + { + "canonical_name": "tarragon spices", + "category": "other", + "density_g_per_ml": 0.223, + "default_unit_class": "volume", + "usda_fdc_id": 170937, + "usda_description": "Spices, tarragon, dried" + }, + { + "canonical_name": "tart cherry juice", + "category": "produce-fruit", + "density_g_per_ml": 1.101, + "default_unit_class": "mass", + "usda_fdc_id": 167807, + "usda_description": "Cherry juice, tart" + }, + { + "canonical_name": "tart sweetened cherries", + "category": "other", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 171708, + "usda_description": "Cherries, tart, dried, sweetened (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "teaseed oil", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171425, + "usda_description": "Oil, teaseed" + }, + { + "canonical_name": "tempeh", + "category": "legume", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 174272, + "usda_description": "Tempeh" + }, + { + "canonical_name": "thick chocolate milk shakes", + "category": "baking", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 170883, + "usda_description": "Milk shakes, thick chocolate" + }, + { + "canonical_name": "thick vanilla milk shakes", + "category": "baking", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 170884, + "usda_description": "Milk shakes, thick vanilla" + }, + { + "canonical_name": "thyme", + "category": "spice", + "density_g_per_ml": 0.162, + "default_unit_class": "volume", + "usda_fdc_id": 173470, + "usda_description": "Thyme, fresh" + }, + { + "canonical_name": "thyme spices", + "category": "spice", + "density_g_per_ml": 0.24, + "default_unit_class": "volume", + "usda_fdc_id": 170938, + "usda_description": "Spices, thyme, dried" + }, + { + "canonical_name": "tofu firm, prepared with calcium sulfate", + "category": "legume", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 172475, + "usda_description": "Tofu, raw, firm, prepared with calcium sulfate" + }, + { + "canonical_name": "tofu regular, prepared with calcium sulfate", + "category": "legume", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172476, + "usda_description": "Tofu, raw, regular, prepared with calcium sulfate" + }, + { + "canonical_name": "tofu yogurt", + "category": "dairy", + "density_g_per_ml": 1.107, + "default_unit_class": "mass", + "usda_fdc_id": 167722, + "usda_description": "Tofu yogurt" + }, + { + "canonical_name": "tofu, firm, prepared with calcium sulfate and magnesium chloride", + "category": "legume", + "density_g_per_ml": 1.065, + "default_unit_class": "mass", + "usda_fdc_id": 172448, + "usda_description": "Tofu, firm, prepared with calcium sulfate and magnesium chloride (nigari)" + }, + { + "canonical_name": "tofu, soft, prepared with calcium sulfate and magnesium chloride", + "category": "legume", + "density_g_per_ml": 1.048, + "default_unit_class": "volume", + "usda_fdc_id": 172449, + "usda_description": "Tofu, soft, prepared with calcium sulfate and magnesium chloride (nigari)" + }, + { + "canonical_name": "tomatillos", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168566, + "usda_description": "Tomatillos, raw" + }, + { + "canonical_name": "tomato juice, canned, with salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.026, + "default_unit_class": "volume", + "usda_fdc_id": 170458, + "usda_description": "Tomato juice, canned, with salt added" + }, + { + "canonical_name": "tomato juice, canned, without salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 170545, + "usda_description": "Tomato juice, canned, without salt added" + }, + { + "canonical_name": "tomato products, canned, paste, without salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.102, + "default_unit_class": "mass", + "usda_fdc_id": 170459, + "usda_description": "Tomato products, canned, paste, without salt added (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "tomato products, canned, puree, with salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 170546, + "usda_description": "Tomato products, canned, puree, with salt added" + }, + { + "canonical_name": "tomato products, canned, puree, without salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 170460, + "usda_description": "Tomato products, canned, puree, without salt added" + }, + { + "canonical_name": "tomato products, canned, sauce", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170054, + "usda_description": "Tomato products, canned, sauce" + }, + { + "canonical_name": "tomato products, canned, sauce, spanish style", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170085, + "usda_description": "Tomato products, canned, sauce, spanish style" + }, + { + "canonical_name": "tomato products, canned, sauce, with herbs and cheese", + "category": "dairy", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170057, + "usda_description": "Tomato products, canned, sauce, with herbs and cheese" + }, + { + "canonical_name": "tomato products, canned, sauce, with mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170055, + "usda_description": "Tomato products, canned, sauce, with mushrooms" + }, + { + "canonical_name": "tomato products, canned, sauce, with onions", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170056, + "usda_description": "Tomato products, canned, sauce, with onions" + }, + { + "canonical_name": "tomato products, canned, sauce, with onions, green peppers, and celery", + "category": "spice", + "density_g_per_ml": 1.057, + "default_unit_class": "mass", + "usda_fdc_id": 170462, + "usda_description": "Tomato products, canned, sauce, with onions, green peppers, and celery" + }, + { + "canonical_name": "tomato products, canned, sauce, with tomato tidbits", + "category": "produce-vegetable", + "density_g_per_ml": 1.031, + "default_unit_class": "volume", + "usda_fdc_id": 170463, + "usda_description": "Tomato products, canned, sauce, with tomato tidbits" + }, + { + "canonical_name": "tomato sauce, canned, no salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169074, + "usda_description": "Tomato sauce, canned, no salt added" + }, + { + "canonical_name": "tomatoes, crushed, canned", + "category": "produce-vegetable", + "density_g_per_ml": 1.023, + "default_unit_class": "volume", + "usda_fdc_id": 170501, + "usda_description": "Tomatoes, crushed, canned" + }, + { + "canonical_name": "tomatoes, red, ripe year round average", + "category": "produce-vegetable", + "density_g_per_ml": 0.695, + "default_unit_class": "volume", + "usda_fdc_id": 170457, + "usda_description": "Tomatoes, red, ripe, raw, year round average" + }, + { + "canonical_name": "tomatoes, red, ripe, canned, packed in tomato juice", + "category": "produce-vegetable", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170051, + "usda_description": "Tomatoes, red, ripe, canned, packed in tomato juice" + }, + { + "canonical_name": "tomatoes, red, ripe, canned, packed in tomato juice, no salt added", + "category": "produce-vegetable", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170138, + "usda_description": "Tomatoes, red, ripe, canned, packed in tomato juice, no salt added" + }, + { + "canonical_name": "tomatoes, red, ripe, canned, stewed", + "category": "produce-vegetable", + "density_g_per_ml": 1.078, + "default_unit_class": "mass", + "usda_fdc_id": 170052, + "usda_description": "Tomatoes, red, ripe, canned, stewed" + }, + { + "canonical_name": "tomatoes, red, ripe, canned, with green chilies", + "category": "produce-vegetable", + "density_g_per_ml": 1.019, + "default_unit_class": "volume", + "usda_fdc_id": 170053, + "usda_description": "Tomatoes, red, ripe, canned, with green chilies" + }, + { + "canonical_name": "tomatoes, red, ripe, cooked", + "category": "produce-vegetable", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170050, + "usda_description": "Tomatoes, red, ripe, cooked" + }, + { + "canonical_name": "tomatoes, red, ripe, cooked, stewed", + "category": "produce-vegetable", + "density_g_per_ml": 0.427, + "default_unit_class": "volume", + "usda_fdc_id": 170089, + "usda_description": "Tomatoes, red, ripe, cooked, stewed" + }, + { + "canonical_name": "tomatoes, red, ripe, cooked, with salt", + "category": "produce-vegetable", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170137, + "usda_description": "Tomatoes, red, ripe, cooked, with salt" + }, + { + "canonical_name": "tomatoes, sun-dried, packed in oil, drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.465, + "default_unit_class": "volume", + "usda_fdc_id": 169384, + "usda_description": "Tomatoes, sun-dried, packed in oil, drained" + }, + { + "canonical_name": "tomatoseed oil", + "category": "produce-vegetable", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171424, + "usda_description": "Oil, tomatoseed" + }, + { + "canonical_name": "tortellini, pasta with cheese filling, fresh-refrigerated, as purchased", + "category": "dairy", + "density_g_per_ml": 0.456, + "default_unit_class": "volume", + "usda_fdc_id": 172094, + "usda_description": "Tortellini, pasta with cheese filling, fresh-refrigerated, as purchased" + }, + { + "canonical_name": "tree fern, cooked, with salt", + "category": "spice", + "density_g_per_ml": 0.6, + "default_unit_class": "volume", + "usda_fdc_id": 168553, + "usda_description": "Tree fern, cooked, with salt" + }, + { + "canonical_name": "tree fern, cooked, without salt", + "category": "spice", + "density_g_per_ml": 0.6, + "default_unit_class": "volume", + "usda_fdc_id": 170464, + "usda_description": "Tree fern, cooked, without salt" + }, + { + "canonical_name": "triticale", + "category": "other", + "density_g_per_ml": 0.812, + "default_unit_class": "volume", + "usda_fdc_id": 169718, + "usda_description": "Triticale" + }, + { + "canonical_name": "tuna salad fish", + "category": "meat", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 175160, + "usda_description": "Fish, tuna salad" + }, + { + "canonical_name": "turbinado sugar", + "category": "baking", + "density_g_per_ml": 0.894, + "default_unit_class": "volume", + "usda_fdc_id": 170674, + "usda_description": "Sugar, turbinado" + }, + { + "canonical_name": "turkey breast, low salt, prepackaged or deli, luncheon meat", + "category": "meat", + "density_g_per_ml": 0.342, + "default_unit_class": "volume", + "usda_fdc_id": 174572, + "usda_description": "Turkey breast, low salt, prepackaged or deli, luncheon meat" + }, + { + "canonical_name": "turkey fat", + "category": "meat", + "density_g_per_ml": 0.868, + "default_unit_class": "volume", + "usda_fdc_id": 173571, + "usda_description": "Fat, turkey" + }, + { + "canonical_name": "turkey, all classes, back, meat and skin, cooked, roasted", + "category": "meat", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 171092, + "usda_description": "Turkey, all classes, back, meat and skin, cooked, roasted" + }, + { + "canonical_name": "turkey, canned, meat only, with broth", + "category": "meat", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 171101, + "usda_description": "Turkey, canned, meat only, with broth" + }, + { + "canonical_name": "turmeric spices", + "category": "spice", + "density_g_per_ml": 0.622, + "default_unit_class": "volume", + "usda_fdc_id": 172231, + "usda_description": "Spices, turmeric, ground" + }, + { + "canonical_name": "turnip greens", + "category": "other", + "density_g_per_ml": 0.232, + "default_unit_class": "volume", + "usda_fdc_id": 170061, + "usda_description": "Turnip greens, raw" + }, + { + "canonical_name": "turnip greens and turnips, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.708, + "default_unit_class": "volume", + "usda_fdc_id": 170141, + "usda_description": "Turnip greens and turnips, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "turnip greens and turnips, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.689, + "default_unit_class": "volume", + "usda_fdc_id": 170062, + "usda_description": "Turnip greens and turnips, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "turnip greens, canned, no salt added", + "category": "spice", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 168119, + "usda_description": "Turnip greens, canned, no salt added" + }, + { + "canonical_name": "turnip greens, canned, solids and liquids", + "category": "other", + "density_g_per_ml": 0.989, + "default_unit_class": "volume", + "usda_fdc_id": 170467, + "usda_description": "Turnip greens, canned, solids and liquids" + }, + { + "canonical_name": "turnip greens, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 170140, + "usda_description": "Turnip greens, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "turnip greens, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 170469, + "usda_description": "Turnip greens, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "turnip greens, frozen, unprepared", + "category": "other", + "density_g_per_ml": 0.693, + "default_unit_class": "volume", + "usda_fdc_id": 170468, + "usda_description": "Turnip greens, frozen, unprepared" + }, + { + "canonical_name": "turnips", + "category": "other", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 170465, + "usda_description": "Turnips, raw" + }, + { + "canonical_name": "turnips, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170548, + "usda_description": "Turnips, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "turnips, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170060, + "usda_description": "Turnips, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "ucuhuba butter oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 173570, + "usda_description": "Oil, ucuhuba butter" + }, + { + "canonical_name": "uncooked amaranth grain", + "category": "other", + "density_g_per_ml": 0.816, + "default_unit_class": "volume", + "usda_fdc_id": 170682, + "usda_description": "Amaranth grain, uncooked" + }, + { + "canonical_name": "uncooked quinoa", + "category": "grain", + "density_g_per_ml": 0.719, + "default_unit_class": "volume", + "usda_fdc_id": 168874, + "usda_description": "Quinoa, uncooked" + }, + { + "canonical_name": "uncooked spelt", + "category": "other", + "density_g_per_ml": 0.735, + "default_unit_class": "volume", + "usda_fdc_id": 169745, + "usda_description": "Spelt, uncooked" + }, + { + "canonical_name": "uncooked teff", + "category": "other", + "density_g_per_ml": 0.816, + "default_unit_class": "volume", + "usda_fdc_id": 169747, + "usda_description": "Teff, uncooked" + }, + { + "canonical_name": "unenriched semolina", + "category": "other", + "density_g_per_ml": 0.706, + "default_unit_class": "volume", + "usda_fdc_id": 168933, + "usda_description": "Semolina, unenriched" + }, + { + "canonical_name": "unsweetened cranberry juice", + "category": "beverage", + "density_g_per_ml": 1.069, + "default_unit_class": "mass", + "usda_fdc_id": 168117, + "usda_description": "Cranberry juice, unsweetened" + }, + { + "canonical_name": "valencia peanuts", + "category": "nut-seed", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 172432, + "usda_description": "Peanuts, valencia, raw" + }, + { + "canonical_name": "valencias oranges california", + "category": "produce-fruit", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169916, + "usda_description": "Oranges, raw, California, valencias" + }, + { + "canonical_name": "vanilla extract", + "category": "baking", + "density_g_per_ml": 0.87, + "default_unit_class": "volume", + "usda_fdc_id": 173471, + "usda_description": "Vanilla extract" + }, + { + "canonical_name": "vanilla extract, imitation, alcohol", + "category": "baking", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172235, + "usda_description": "Vanilla extract, imitation, alcohol" + }, + { + "canonical_name": "vanilla extract, imitation, no alcohol", + "category": "baking", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 172236, + "usda_description": "Vanilla extract, imitation, no alcohol" + }, + { + "canonical_name": "vegetable juice", + "category": "beverage", + "density_g_per_ml": 1.137, + "default_unit_class": "mass", + "usda_fdc_id": 169767, + "usda_description": "Vegetable juice, BOLTHOUSE FARMS, DAILY GREENS" + }, + { + "canonical_name": "vegetable juice cocktail, low sodium, canned", + "category": "beverage", + "density_g_per_ml": 1.05, + "default_unit_class": "mass", + "usda_fdc_id": 170473, + "usda_description": "Vegetable juice cocktail, low sodium, canned" + }, + { + "canonical_name": "vegetables, mixed canned, no salt added", + "category": "spice", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 169085, + "usda_description": "Vegetables, mixed (corn, lima beans, peas, green beans, carrots) canned, no salt added" + }, + { + "canonical_name": "vegetables, mixed, canned, drained solids", + "category": "other", + "density_g_per_ml": 0.689, + "default_unit_class": "volume", + "usda_fdc_id": 170065, + "usda_description": "Vegetables, mixed, canned, drained solids" + }, + { + "canonical_name": "vegetables, mixed, canned, solids and liquids", + "category": "other", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170064, + "usda_description": "Vegetables, mixed, canned, solids and liquids" + }, + { + "canonical_name": "vegetables, mixed, frozen drained, with salt", + "category": "spice", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 170142, + "usda_description": "Vegetables, mixed, frozen, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "vegetables, mixed, frozen drained, without salt", + "category": "spice", + "density_g_per_ml": 0.769, + "default_unit_class": "volume", + "usda_fdc_id": 170472, + "usda_description": "Vegetables, mixed, frozen, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "virginia peanuts", + "category": "nut-seed", + "density_g_per_ml": 0.617, + "default_unit_class": "volume", + "usda_fdc_id": 172434, + "usda_description": "Peanuts, virginia, raw" + }, + { + "canonical_name": "vitasoy , vitasoy light vanilla soymilk", + "category": "baking", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175214, + "usda_description": "Vitasoy USA, Vitasoy Light Vanilla Soymilk" + }, + { + "canonical_name": "vitasoy , vitasoy organic classic original soymilk", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175213, + "usda_description": "Vitasoy USA, Vitasoy Organic Classic Original Soymilk" + }, + { + "canonical_name": "vitasoy , vitasoy organic creamy original soymilk", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 175212, + "usda_description": "Vitasoy USA, Vitasoy Organic Creamy Original Soymilk" + }, + { + "canonical_name": "wakame seaweed", + "category": "other", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 170496, + "usda_description": "Seaweed, wakame, raw" + }, + { + "canonical_name": "walnut oil", + "category": "nut-seed", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171030, + "usda_description": "Oil, walnut" + }, + { + "canonical_name": "wasabi", + "category": "other", + "density_g_per_ml": 1.336, + "default_unit_class": "mass", + "usda_fdc_id": 171831, + "usda_description": "Wasabi" + }, + { + "canonical_name": "water convolvulus", + "category": "beverage", + "density_g_per_ml": 0.237, + "default_unit_class": "volume", + "usda_fdc_id": 169301, + "usda_description": "Water convolvulus,raw" + }, + { + "canonical_name": "water, bottled, generic", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 174158, + "usda_description": "Water, bottled, generic" + }, + { + "canonical_name": "water, bottled, non-carbonated", + "category": "beverage", + "density_g_per_ml": 1.001, + "default_unit_class": "volume", + "usda_fdc_id": 173657, + "usda_description": "Water, bottled, non-carbonated, NAYA" + }, + { + "canonical_name": "waterchestnuts, chinese, canned, solids and liquids", + "category": "beverage", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170067, + "usda_description": "Waterchestnuts, chinese, canned, solids and liquids" + }, + { + "canonical_name": "watercress", + "category": "beverage", + "density_g_per_ml": 0.144, + "default_unit_class": "volume", + "usda_fdc_id": 170068, + "usda_description": "Watercress, raw" + }, + { + "canonical_name": "watermelon", + "category": "produce-fruit", + "density_g_per_ml": 0.647, + "default_unit_class": "volume", + "usda_fdc_id": 167765, + "usda_description": "Watermelon, raw" + }, + { + "canonical_name": "watermelon seed kernels seeds", + "category": "produce-fruit", + "density_g_per_ml": 0.456, + "default_unit_class": "volume", + "usda_fdc_id": 169407, + "usda_description": "Seeds, watermelon seed kernels, dried" + }, + { + "canonical_name": "waxgourd", + "category": "other", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 170069, + "usda_description": "Waxgourd, (chinese preserving melon), raw" + }, + { + "canonical_name": "waxgourd, drained, with salt", + "category": "spice", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 170549, + "usda_description": "Waxgourd, (chinese preserving melon), cooked, boiled, drained, with salt" + }, + { + "canonical_name": "waxgourd, drained, without salt", + "category": "spice", + "density_g_per_ml": 0.74, + "default_unit_class": "volume", + "usda_fdc_id": 170475, + "usda_description": "Waxgourd, (chinese preserving melon), cooked, boiled, drained, without salt" + }, + { + "canonical_name": "wheat flour, white, all-purpose, enriched, bleached", + "category": "baking", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 168894, + "usda_description": "Wheat flour, white, all-purpose, enriched, bleached" + }, + { + "canonical_name": "wheat flour, white, all-purpose, enriched, unbleached", + "category": "baking", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 168936, + "usda_description": "Wheat flour, white, all-purpose, enriched, unbleached" + }, + { + "canonical_name": "wheat flour, white, all-purpose, self-rising, enriched", + "category": "baking", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 168895, + "usda_description": "Wheat flour, white, all-purpose, self-rising, enriched" + }, + { + "canonical_name": "wheat flour, white, all-purpose, unenriched", + "category": "baking", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169761, + "usda_description": "Wheat flour, white, all-purpose, unenriched" + }, + { + "canonical_name": "wheat flour, white, bread, enriched", + "category": "baking", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 168896, + "usda_description": "Wheat flour, white, bread, enriched" + }, + { + "canonical_name": "wheat flour, white, cake, enriched", + "category": "baking", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 169723, + "usda_description": "Wheat flour, white, cake, enriched" + }, + { + "canonical_name": "wheat flour, white, tortilla mix, enriched", + "category": "baking", + "density_g_per_ml": 0.469, + "default_unit_class": "volume", + "usda_fdc_id": 169724, + "usda_description": "Wheat flour, white, tortilla mix, enriched" + }, + { + "canonical_name": "wheat flours, bread, unenriched", + "category": "baking", + "density_g_per_ml": 0.579, + "default_unit_class": "volume", + "usda_fdc_id": 168913, + "usda_description": "Wheat flours, bread, unenriched" + }, + { + "canonical_name": "wheat germ oil", + "category": "oil-fat", + "density_g_per_ml": 0.918, + "default_unit_class": "volume", + "usda_fdc_id": 171014, + "usda_description": "Oil, wheat germ" + }, + { + "canonical_name": "wheat, khorasan, cooked", + "category": "other", + "density_g_per_ml": 0.727, + "default_unit_class": "volume", + "usda_fdc_id": 169744, + "usda_description": "Wheat, khorasan, cooked" + }, + { + "canonical_name": "wheat, khorasan, uncooked", + "category": "other", + "density_g_per_ml": 0.786, + "default_unit_class": "volume", + "usda_fdc_id": 169743, + "usda_description": "Wheat, khorasan, uncooked" + }, + { + "canonical_name": "whey, acid, fluid", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 170885, + "usda_description": "Whey, acid, fluid" + }, + { + "canonical_name": "whey, sweet, fluid", + "category": "other", + "density_g_per_ml": 1.04, + "default_unit_class": "volume", + "usda_fdc_id": 171282, + "usda_description": "Whey, sweet, fluid" + }, + { + "canonical_name": "whipped cream substitute, dietetic, made from powdered mix", + "category": "dairy", + "density_g_per_ml": 0.338, + "default_unit_class": "volume", + "usda_fdc_id": 169899, + "usda_description": "Whipped cream substitute, dietetic, made from powdered mix" + }, + { + "canonical_name": "whipped topping, frozen, low fat", + "category": "other", + "density_g_per_ml": 0.317, + "default_unit_class": "volume", + "usda_fdc_id": 167687, + "usda_description": "Whipped topping, frozen, low fat" + }, + { + "canonical_name": "whiskey sour mix, bottled, with added potassium and sodium", + "category": "other", + "density_g_per_ml": 1.092, + "default_unit_class": "mass", + "usda_fdc_id": 173661, + "usda_description": "Whiskey sour mix, bottled, with added potassium and sodium" + }, + { + "canonical_name": "white corn grain", + "category": "other", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 168920, + "usda_description": "Corn grain, white" + }, + { + "canonical_name": "white fresh egg", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 172183, + "usda_description": "Egg, white, raw, fresh" + }, + { + "canonical_name": "white grapefruit juice", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 173039, + "usda_description": "Grapefruit juice, white, raw" + }, + { + "canonical_name": "white icicle radishes", + "category": "other", + "density_g_per_ml": 0.423, + "default_unit_class": "volume", + "usda_fdc_id": 170081, + "usda_description": "Radishes, white icicle, raw" + }, + { + "canonical_name": "white mushrooms", + "category": "produce-vegetable", + "density_g_per_ml": 0.333, + "default_unit_class": "volume", + "usda_fdc_id": 169251, + "usda_description": "Mushrooms, white, raw" + }, + { + "canonical_name": "white-flowered gourd", + "category": "other", + "density_g_per_ml": 0.49, + "default_unit_class": "volume", + "usda_fdc_id": 169232, + "usda_description": "Gourd, white-flowered (calabash), raw" + }, + { + "canonical_name": "whole-grain sorghum flour", + "category": "baking", + "density_g_per_ml": 0.511, + "default_unit_class": "volume", + "usda_fdc_id": 168943, + "usda_description": "Sorghum flour, whole-grain" + }, + { + "canonical_name": "whole-grain triticale flour", + "category": "baking", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 168888, + "usda_description": "Triticale flour, whole-grain" + }, + { + "canonical_name": "whole-grain wheat flour", + "category": "baking", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168893, + "usda_description": "Wheat flour, whole-grain (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "whole-groat buckwheat flour", + "category": "baking", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 170687, + "usda_description": "Buckwheat flour, whole-groat" + }, + { + "canonical_name": "whole-wheat crackers", + "category": "other", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 172749, + "usda_description": "Crackers, whole-wheat" + }, + { + "canonical_name": "wild plums", + "category": "other", + "density_g_per_ml": 0.681, + "default_unit_class": "volume", + "usda_fdc_id": 169820, + "usda_description": "Plums, wild (Northern Plains Indians)" + }, + { + "canonical_name": "wild raspberries", + "category": "other", + "density_g_per_ml": 0.549, + "default_unit_class": "volume", + "usda_fdc_id": 168997, + "usda_description": "Raspberries, wild (Northern Plains Indians)" + }, + { + "canonical_name": "wild rice", + "category": "grain", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169726, + "usda_description": "Wild rice, raw" + }, + { + "canonical_name": "wild rose hips", + "category": "other", + "density_g_per_ml": 0.537, + "default_unit_class": "volume", + "usda_fdc_id": 168998, + "usda_description": "Rose Hips, wild (Northern Plains Indians)" + }, + { + "canonical_name": "winged bean, immature seeds drained, with salt", + "category": "spice", + "density_g_per_ml": 0.262, + "default_unit_class": "volume", + "usda_fdc_id": 170550, + "usda_description": "Winged bean, immature seeds, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "winged beans, immature seeds drained, without salt", + "category": "legume", + "density_g_per_ml": 0.262, + "default_unit_class": "volume", + "usda_fdc_id": 170477, + "usda_description": "Winged beans, immature seeds, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "with added vitamin d milk 3.25% milkfat", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 171265, + "usda_description": "Milk, whole, 3.25% milkfat, with added vitamin D" + }, + { + "canonical_name": "with peel cucumber", + "category": "produce-vegetable", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 168409, + "usda_description": "Cucumber, with peel, raw" + }, + { + "canonical_name": "with salt amaranth leaves drained", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 168492, + "usda_description": "Amaranth leaves, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt asparagus drained", + "category": "spice", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169313, + "usda_description": "Asparagus, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt bamboo shoots drained", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168497, + "usda_description": "Bamboo shoots, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt beet greens drained", + "category": "spice", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 168508, + "usda_description": "Beet greens, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt broccoli drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 168510, + "usda_description": "Broccoli, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt brussels sprouts drained", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 168513, + "usda_description": "Brussels sprouts, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt burdock root drained", + "category": "spice", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 169333, + "usda_description": "Burdock root, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt carrots drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.658, + "default_unit_class": "volume", + "usda_fdc_id": 169339, + "usda_description": "Carrots, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt cauliflower drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 168520, + "usda_description": "Cauliflower, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt celeriac drained", + "category": "spice", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169341, + "usda_description": "Celeriac, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt celery drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169342, + "usda_description": "Celery, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt collards drained", + "category": "oil-fat", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 168523, + "usda_description": "Collards, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt dandelion greens drained", + "category": "spice", + "density_g_per_ml": 0.444, + "default_unit_class": "volume", + "usda_fdc_id": 169351, + "usda_description": "Dandelion greens, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt drumstick leaves drained", + "category": "spice", + "density_g_per_ml": 0.178, + "default_unit_class": "volume", + "usda_fdc_id": 168531, + "usda_description": "Drumstick leaves, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt drumstick pods drained", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 168532, + "usda_description": "Drumstick pods, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt eggplant drained", + "category": "spice", + "density_g_per_ml": 0.418, + "default_unit_class": "volume", + "usda_fdc_id": 169352, + "usda_description": "Eggplant, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt kale drained", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169355, + "usda_description": "Kale, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt kohlrabi drained", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 169357, + "usda_description": "Kohlrabi, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt lambsquarters drained", + "category": "spice", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168534, + "usda_description": "Lambsquarters, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt lotus root drained", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168536, + "usda_description": "Lotus root, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt mustard greens drained", + "category": "condiment", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 170503, + "usda_description": "Mustard greens, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt new zealand spinach drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170506, + "usda_description": "New zealand spinach, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt okra drained", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 170098, + "usda_description": "Okra, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt onions drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 170100, + "usda_description": "Onions, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt parsnips drained", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170508, + "usda_description": "Parsnips, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt pumpkin drained", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170526, + "usda_description": "Pumpkin, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt pumpkin leaves drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.3, + "default_unit_class": "volume", + "usda_fdc_id": 170120, + "usda_description": "Pumpkin leaves, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt purslane drained", + "category": "spice", + "density_g_per_ml": 0.486, + "default_unit_class": "volume", + "usda_fdc_id": 170121, + "usda_description": "Purslane, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt rutabagas drained", + "category": "spice", + "density_g_per_ml": 1.014, + "default_unit_class": "volume", + "usda_fdc_id": 170528, + "usda_description": "Rutabagas, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt salsify drained", + "category": "spice", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 170529, + "usda_description": "Salsify, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt spinach drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 170531, + "usda_description": "Spinach, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt sweet potato without skin", + "category": "produce-vegetable", + "density_g_per_ml": 1.386, + "default_unit_class": "mass", + "usda_fdc_id": 170541, + "usda_description": "Sweet potato, cooked, boiled, without skin, with salt" + }, + { + "canonical_name": "with salt turnip greens drained", + "category": "spice", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170139, + "usda_description": "Turnip greens, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt turnips drained", + "category": "spice", + "density_g_per_ml": 0.816, + "default_unit_class": "volume", + "usda_fdc_id": 170547, + "usda_description": "Turnips, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt water convolvulus drained", + "category": "beverage", + "density_g_per_ml": 0.414, + "default_unit_class": "volume", + "usda_fdc_id": 170132, + "usda_description": "Water convolvulus, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with salt yardlong bean drained", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169359, + "usda_description": "Yardlong bean, cooked, boiled, drained, with salt" + }, + { + "canonical_name": "with skin apples fuji", + "category": "produce-fruit", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 167793, + "usda_description": "Apples, raw, fuji, with skin (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "with skin apples gala", + "category": "produce-fruit", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 168204, + "usda_description": "Apples, raw, gala, with skin (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "with skin apples golden delicious", + "category": "produce-fruit", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 168202, + "usda_description": "Apples, raw, golden delicious, with skin" + }, + { + "canonical_name": "with skin apples granny smith", + "category": "produce-fruit", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 168203, + "usda_description": "Apples, raw, granny smith, with skin (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "with skin apples red delicious", + "category": "produce-fruit", + "density_g_per_ml": 0.461, + "default_unit_class": "volume", + "usda_fdc_id": 168201, + "usda_description": "Apples, raw, red delicious, with skin (Includes foods for USDA's Food Distribution Program)" + }, + { + "canonical_name": "without salt amaranth leaves drained", + "category": "spice", + "density_g_per_ml": 0.558, + "default_unit_class": "volume", + "usda_fdc_id": 169202, + "usda_description": "Amaranth leaves, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt bamboo shoots drained", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 169211, + "usda_description": "Bamboo shoots, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt beet greens drained", + "category": "spice", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170376, + "usda_description": "Beet greens, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt broccoli drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169967, + "usda_description": "Broccoli, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt brussels sprouts drained", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 169971, + "usda_description": "Brussels sprouts, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt burdock root drained", + "category": "spice", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 170384, + "usda_description": "Burdock root, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt butter", + "category": "oil-fat", + "density_g_per_ml": 0.96, + "default_unit_class": "volume", + "usda_fdc_id": 173430, + "usda_description": "Butter, without salt" + }, + { + "canonical_name": "without salt cabbage drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169976, + "usda_description": "Cabbage, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt carrots drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.658, + "default_unit_class": "volume", + "usda_fdc_id": 170394, + "usda_description": "Carrots, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt cauliflower drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.524, + "default_unit_class": "volume", + "usda_fdc_id": 170397, + "usda_description": "Cauliflower, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt celeriac drained", + "category": "spice", + "density_g_per_ml": 0.655, + "default_unit_class": "volume", + "usda_fdc_id": 169987, + "usda_description": "Celeriac, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt celery drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 169989, + "usda_description": "Celery, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt collards drained", + "category": "oil-fat", + "density_g_per_ml": 0.803, + "default_unit_class": "volume", + "usda_fdc_id": 170407, + "usda_description": "Collards, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt dandelion greens drained", + "category": "spice", + "density_g_per_ml": 0.444, + "default_unit_class": "volume", + "usda_fdc_id": 169227, + "usda_description": "Dandelion greens, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt drumstick leaves drained", + "category": "spice", + "density_g_per_ml": 0.178, + "default_unit_class": "volume", + "usda_fdc_id": 168417, + "usda_description": "Drumstick leaves, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt drumstick pods drained", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 170484, + "usda_description": "Drumstick pods, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt eggplant drained", + "category": "spice", + "density_g_per_ml": 0.418, + "default_unit_class": "volume", + "usda_fdc_id": 169229, + "usda_description": "Eggplant, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt kale drained", + "category": "spice", + "density_g_per_ml": 0.499, + "default_unit_class": "volume", + "usda_fdc_id": 169238, + "usda_description": "Kale, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt kohlrabi drained", + "category": "spice", + "density_g_per_ml": 0.697, + "default_unit_class": "volume", + "usda_fdc_id": 168425, + "usda_description": "Kohlrabi, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt lambsquarters drained", + "category": "spice", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 169245, + "usda_description": "Lambsquarters, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt lotus root drained", + "category": "spice", + "density_g_per_ml": 0.507, + "default_unit_class": "volume", + "usda_fdc_id": 168430, + "usda_description": "Lotus root, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt mustard greens drained", + "category": "condiment", + "density_g_per_ml": 0.592, + "default_unit_class": "volume", + "usda_fdc_id": 169257, + "usda_description": "Mustard greens, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt new zealand spinach drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168441, + "usda_description": "New Zealand spinach, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt okra drained", + "category": "spice", + "density_g_per_ml": 0.676, + "default_unit_class": "volume", + "usda_fdc_id": 169261, + "usda_description": "Okra, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt onions drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.951, + "default_unit_class": "volume", + "usda_fdc_id": 170001, + "usda_description": "Onions, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt parsnips drained", + "category": "spice", + "density_g_per_ml": 0.659, + "default_unit_class": "volume", + "usda_fdc_id": 170009, + "usda_description": "Parsnips, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt pumpkin drained", + "category": "produce-vegetable", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 168449, + "usda_description": "Pumpkin, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt pumpkin flowers drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.566, + "default_unit_class": "volume", + "usda_fdc_id": 169271, + "usda_description": "Pumpkin flowers, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt pumpkin leaves drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.3, + "default_unit_class": "volume", + "usda_fdc_id": 168447, + "usda_description": "Pumpkin leaves, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt purslane drained", + "category": "spice", + "density_g_per_ml": 0.486, + "default_unit_class": "volume", + "usda_fdc_id": 169275, + "usda_description": "Purslane, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt rutabagas drained", + "category": "spice", + "density_g_per_ml": 0.866, + "default_unit_class": "volume", + "usda_fdc_id": 168455, + "usda_description": "Rutabagas, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt salsify drained", + "category": "spice", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169278, + "usda_description": "Salsify, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt spinach drained", + "category": "produce-vegetable", + "density_g_per_ml": 0.761, + "default_unit_class": "volume", + "usda_fdc_id": 168463, + "usda_description": "Spinach, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt turnip greens drained", + "category": "spice", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 170466, + "usda_description": "Turnip greens, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt turnips drained", + "category": "spice", + "density_g_per_ml": 0.816, + "default_unit_class": "volume", + "usda_fdc_id": 170058, + "usda_description": "Turnips, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt water convolvulus drained", + "category": "beverage", + "density_g_per_ml": 0.414, + "default_unit_class": "volume", + "usda_fdc_id": 169302, + "usda_description": "Water convolvulus, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "without salt yardlong bean drained", + "category": "spice", + "density_g_per_ml": 0.44, + "default_unit_class": "volume", + "usda_fdc_id": 169223, + "usda_description": "Yardlong bean, cooked, boiled, drained, without salt" + }, + { + "canonical_name": "witloof chicory", + "category": "other", + "density_g_per_ml": 0.38, + "default_unit_class": "volume", + "usda_fdc_id": 170404, + "usda_description": "Chicory, witloof, raw" + }, + { + "canonical_name": "yam", + "category": "other", + "density_g_per_ml": 0.634, + "default_unit_class": "volume", + "usda_fdc_id": 170071, + "usda_description": "Yam, raw" + }, + { + "canonical_name": "yam drained, or baked, with salt", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 170551, + "usda_description": "Yam, cooked, boiled, drained, or baked, with salt" + }, + { + "canonical_name": "yam drained, or baked, without salt", + "category": "spice", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 170072, + "usda_description": "Yam, cooked, boiled, drained, or baked, without salt" + }, + { + "canonical_name": "yambean", + "category": "other", + "density_g_per_ml": 0.528, + "default_unit_class": "volume", + "usda_fdc_id": 170073, + "usda_description": "Yambean (jicama), raw" + }, + { + "canonical_name": "yardlong bean", + "category": "other", + "density_g_per_ml": 0.385, + "default_unit_class": "volume", + "usda_fdc_id": 169222, + "usda_description": "Yardlong bean, raw" + }, + { + "canonical_name": "yautia", + "category": "other", + "density_g_per_ml": 0.571, + "default_unit_class": "volume", + "usda_fdc_id": 169401, + "usda_description": "Yautia (tannier), raw" + }, + { + "canonical_name": "yeast extract spread", + "category": "baking", + "density_g_per_ml": 1.217, + "default_unit_class": "mass", + "usda_fdc_id": 167717, + "usda_description": "Yeast extract spread" + }, + { + "canonical_name": "yellow corn grain", + "category": "other", + "density_g_per_ml": 0.702, + "default_unit_class": "volume", + "usda_fdc_id": 170288, + "usda_description": "Corn grain, yellow" + }, + { + "canonical_name": "yellow passion-fruit juice", + "category": "beverage", + "density_g_per_ml": 1.044, + "default_unit_class": "volume", + "usda_fdc_id": 169110, + "usda_description": "Passion-fruit juice, yellow, raw" + }, + { + "canonical_name": "yellow peaches", + "category": "produce-fruit", + "density_g_per_ml": 0.651, + "default_unit_class": "volume", + "usda_fdc_id": 169928, + "usda_description": "Peaches, yellow, raw" + }, + { + "canonical_name": "yellow plantains", + "category": "other", + "density_g_per_ml": 0.626, + "default_unit_class": "volume", + "usda_fdc_id": 169130, + "usda_description": "Plantains, yellow, raw" + }, + { + "canonical_name": "yellow tomatoes", + "category": "produce-vegetable", + "density_g_per_ml": 0.588, + "default_unit_class": "volume", + "usda_fdc_id": 170096, + "usda_description": "Tomatoes, yellow, raw" + }, + { + "canonical_name": "yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener", + "category": "baking", + "density_g_per_ml": 0.575, + "default_unit_class": "volume", + "usda_fdc_id": 173464, + "usda_description": "Yogurt, frozen, flavors not chocolate, nonfat milk, with low-calorie sweetener" + }, + { + "canonical_name": "yogurt, fruit variety, nonfat", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 169898, + "usda_description": "Yogurt, fruit variety, nonfat" + }, + { + "canonical_name": "yogurt, fruit, low fat, 10 grams protein per 8 ounce", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 171285, + "usda_description": "Yogurt, fruit, low fat, 10 grams protein per 8 ounce" + }, + { + "canonical_name": "yogurt, fruit, low fat,9 g protein/8 oz", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170889, + "usda_description": "Yogurt, fruit, low fat,9 g protein/8 oz" + }, + { + "canonical_name": "yogurt, fruit, lowfat, with low calorie sweetener", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 173451, + "usda_description": "Yogurt, fruit, lowfat, with low calorie sweetener" + }, + { + "canonical_name": "yogurt, greek, strawberry, lowfat", + "category": "produce-fruit", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 171300, + "usda_description": "Yogurt, Greek, strawberry, lowfat" + }, + { + "canonical_name": "yogurt, plain, low fat", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170886, + "usda_description": "Yogurt, plain, low fat" + }, + { + "canonical_name": "yogurt, plain, skim milk", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170887, + "usda_description": "Yogurt, plain, skim milk" + }, + { + "canonical_name": "yogurt, plain, whole milk", + "category": "dairy", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 171284, + "usda_description": "Yogurt, plain, whole milk" + }, + { + "canonical_name": "yogurt, vanilla, low fat.", + "category": "baking", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170888, + "usda_description": "Yogurt, vanilla, low fat." + }, + { + "canonical_name": "yogurt, vanilla, non-fat", + "category": "baking", + "density_g_per_ml": 1.036, + "default_unit_class": "volume", + "usda_fdc_id": 170906, + "usda_description": "Yogurt, vanilla, non-fat" + }, + { + "canonical_name": "yolk egg", + "category": "dairy", + "density_g_per_ml": 0.277, + "default_unit_class": "volume", + "usda_fdc_id": 173428, + "usda_description": "Egg, yolk, dried" + }, + { + "canonical_name": "yolk fresh egg", + "category": "dairy", + "density_g_per_ml": 1.027, + "default_unit_class": "volume", + "usda_fdc_id": 172184, + "usda_description": "Egg, yolk, raw, fresh" + }, + { + "canonical_name": "young pods with seeds cowpeas", + "category": "nut-seed", + "density_g_per_ml": 0.397, + "default_unit_class": "volume", + "usda_fdc_id": 168405, + "usda_description": "Cowpeas, young pods with seeds, raw" + }, + { + "canonical_name": "zante currants", + "category": "other", + "density_g_per_ml": 0.609, + "default_unit_class": "volume", + "usda_fdc_id": 171724, + "usda_description": "Currants, zante, dried" + } +] \ No newline at end of file diff --git a/cauldron/db.py b/cauldron/db.py index f76ba9d..9242461 100644 --- a/cauldron/db.py +++ b/cauldron/db.py @@ -146,6 +146,46 @@ MIGRATIONS = [ FOREIGN KEY (household_id) REFERENCES cauldron_households(id) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 """, + # 010 — canonical foods table for the unit-aware aggregator. Each row is + # ONE food (e.g. "rice", "butter", "onion") with density + unit class. + # Seeded from USDA SR Legacy via scripts/build_foods_seed.py; will be + # extended with claude-curated entries in v0.3 step 2. + """ + CREATE TABLE IF NOT EXISTS cauldron_foods ( + id BIGINT PRIMARY KEY AUTO_INCREMENT, + canonical_name VARCHAR(255) NOT NULL, + plural_name VARCHAR(255), + category VARCHAR(64), + density_g_per_ml DECIMAL(6,3), + common_size_g DECIMAL(8,2), + default_unit_class ENUM('mass','volume','count','mixed') NOT NULL DEFAULT 'mass', + usda_fdc_id INT, + usda_description VARCHAR(500), + notes JSON, + source ENUM('usda','claude','manual') NOT NULL DEFAULT 'usda', + last_updated DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + UNIQUE KEY uk_canonical (canonical_name), + INDEX idx_category (category), + INDEX idx_usda (usda_fdc_id) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 + """, + # 011 — Mealie food_id → cauldron food_id mapping per household. The + # foods dedupe step (v0.3 A2) populates this. Aggregator joins through + # this to group ingredients across recipes by canonical food. + """ + CREATE TABLE IF NOT EXISTS cauldron_food_mapping ( + household_id BIGINT NOT NULL, + mealie_food_id VARCHAR(64) NOT NULL, + cauldron_food_id BIGINT NOT NULL, + confidence DECIMAL(4,2) NOT NULL DEFAULT 1.00, + mapped_by ENUM('exact','fuzzy','claude','manual') NOT NULL DEFAULT 'fuzzy', + mapped_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (household_id, mealie_food_id), + INDEX idx_canonical (cauldron_food_id), + FOREIGN KEY (household_id) REFERENCES cauldron_households(id) ON DELETE CASCADE, + FOREIGN KEY (cauldron_food_id) REFERENCES cauldron_foods(id) ON DELETE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 + """, ] diff --git a/cauldron/foods.py b/cauldron/foods.py new file mode 100644 index 0000000..f62322d --- /dev/null +++ b/cauldron/foods.py @@ -0,0 +1,99 @@ +"""Foods catalog — canonical food rows + the seed loader. + +Phase A step 1 (v0.3): seed cauldron_foods from USDA SR Legacy via the +JSON file at cauldron/data/foods_seed_usda.json. Idempotent — running +multiple times is fine, INSERT IGNORE on the unique canonical_name key. + +Phase A step 2 (next commit): aggregator engine reads these rows + the +per-household cauldron_food_mapping to group recipe ingredients. + +Phase A step 3 (later): claude-curated cleanup of the USDA seed (better +names, missing common foods, count-based foods like 'egg' / 'onion'). +""" +import json +from pathlib import Path + + +SEED_PATH = Path(__file__).parent / "data" / "foods_seed_usda.json" + + +def seed_count(db) -> int: + with db.conn() as c, c.cursor() as cur: + cur.execute("SELECT COUNT(*) AS n FROM cauldron_foods") + return cur.fetchone()["n"] + + +def load_seed_if_empty(db) -> int: + """If cauldron_foods is empty, load the USDA seed JSON. Returns rows + inserted (0 if already populated). Called by app startup after migrate.""" + if not SEED_PATH.exists(): + return 0 + if seed_count(db) > 0: + return 0 + return _load_seed_file(db, SEED_PATH) + + +def reload_seed(db) -> int: + """Force-reload the seed file (used by /api/foods/reload-seed). Won't + overwrite existing rows — INSERT IGNORE on canonical_name. Returns + rows inserted on this run.""" + if not SEED_PATH.exists(): + return 0 + return _load_seed_file(db, SEED_PATH) + + +def _load_seed_file(db, path: Path) -> int: + with path.open() as f: + data = json.load(f) + inserted = 0 + with db.conn() as c, c.cursor() as cur: + for entry in data: + try: + cur.execute( + """ + INSERT IGNORE INTO cauldron_foods + (canonical_name, category, density_g_per_ml, + default_unit_class, usda_fdc_id, usda_description, source) + VALUES (%s, %s, %s, %s, %s, %s, 'usda') + """, + ( + entry["canonical_name"][:255], + entry.get("category"), + entry.get("density_g_per_ml"), + entry.get("default_unit_class") or "mass", + entry.get("usda_fdc_id"), + (entry.get("usda_description") or "")[:500], + ), + ) + inserted += cur.rowcount + except Exception: + # Skip malformed rows — seed cleanup is iterative + continue + return inserted + + +def search_food(db, name: str, *, limit: int = 5) -> list[dict]: + """Best-effort canonical food lookup by name (used by aggregator + UI).""" + with db.conn() as c, c.cursor() as cur: + cur.execute( + """ + SELECT id, canonical_name, category, density_g_per_ml, + default_unit_class, common_size_g + FROM cauldron_foods + WHERE canonical_name LIKE %s OR canonical_name LIKE %s + ORDER BY + (CASE WHEN canonical_name = %s THEN 0 + WHEN canonical_name LIKE %s THEN 1 + ELSE 2 END), + CHAR_LENGTH(canonical_name) + LIMIT %s + """, + (f"{name}%", f"%{name}%", name, f"{name}%", limit), + ) + return [dict(r) for r in cur.fetchall()] + + +def get_food(db, food_id: int) -> dict | None: + with db.conn() as c, c.cursor() as cur: + cur.execute("SELECT * FROM cauldron_foods WHERE id=%s", (food_id,)) + return cur.fetchone() diff --git a/cauldron/server.py b/cauldron/server.py index 39761f8..7b75536 100644 --- a/cauldron/server.py +++ b/cauldron/server.py @@ -30,6 +30,7 @@ from .config import load from .crypto import TokenCrypto from .db import DB from .forge import Forge +from . import foods from .mealie import Mealie, MealieError from .oidc import init_oauth from .recipe_index import flatten_recipe, refresh_household_index, search_index @@ -65,6 +66,14 @@ def create_app() -> Flask: if applied: app.logger.info("applied migrations: %s", applied) + # Seed cauldron_foods from the USDA snapshot if empty + try: + loaded = foods.load_seed_if_empty(db) + if loaded: + app.logger.info("loaded %d foods from USDA seed", loaded) + except Exception as e: + app.logger.warning("foods seed load failed: %s", e) + oauth = init_oauth( app, issuer=cfg.oidc_issuer, diff --git a/scripts/build_foods_seed.py b/scripts/build_foods_seed.py new file mode 100644 index 0000000..706780c --- /dev/null +++ b/scripts/build_foods_seed.py @@ -0,0 +1,331 @@ +#!/usr/bin/env python3 +"""Build cauldron's foods_seed.json from USDA SR Legacy. + +Usage: + python scripts/build_foods_seed.py > cauldron/data/foods_seed.json + +Steps: + 1. Load SR Legacy JSON dump + 2. For each food, extract foodPortions and derive density g/ml from + volume measurements (cup/tbsp/tsp/fl oz/ml/etc) + 3. Average densities across multiple portions of the same food + 4. Filter out non-cooking junk (branded items, weird stuff) + 5. Normalize description into a canonical_name (strip ", raw" suffixes, + parenthetical brand names, etc.) + 6. Categorize using simple keyword heuristics + 7. Emit JSON ready for the cauldron_foods loader +""" +import json +import re +import sys +from collections import defaultdict + + +VOL_TO_ML = { + 'cup': 236.588, + 'tablespoon': 14.787, 'tbsp': 14.787, + 'teaspoon': 4.929, 'tsp': 4.929, + 'fl oz': 29.574, 'fluid ounce': 29.574, 'fluid ounces': 29.574, + 'ml': 1.0, 'milliliter': 1.0, + 'liter': 1000.0, 'l': 1000.0, + 'pint': 473.176, 'quart': 946.353, 'gallon': 3785.41, +} + +# Description starts-with prefixes we drop entirely +DROP_PREFIXES = ( + "babyfood", + "infant formula", + "alcoholic beverage", + "snacks,", + "fast food", + "restaurant", + "school lunch", + "puddings,", + "frostings,", + "candies,", + "leavening agents,", # these are baking but USDA names are weird +) + +# Substrings anywhere → drop +DROP_KEYWORDS = [ + "fast food", "restaurant", "school lunch", + "MCDONALDS", "BURGER KING", "KFC", "PIZZA HUT", "STARBUCKS", + "SUBWAY", "TACO BELL", "WENDY'S", "DOMINOS", "PAPA JOHN", + "CHICK-FIL-A", "POPEYES", "CHIPOTLE", "DENNY'S", + "supplement", "weight control", "ready-to-drink", "ready to drink", + "ready-to-eat", "muscle milk", "ENSURE", "BOOST", + "nutrition bar", "meal replacement", "fortified", + "sulfured", "dry mix", "frozen meal", "frozen dinner", + "baby formula", "GERBER", "PILLSBURY", "KELLOGG", + "QUAKER", "GENERAL MILLS", "POST", "BETTY CROCKER", + "instant", "junior", "strained", "toddler", + "(yield from", "from raw", +] + +# Brand-like ALL-CAPS tokens to strip from description +BRAND_PATTERN = re.compile(r'\b[A-Z]{3,}(\s+[A-Z]{3,}|\s+[A-Z]{2,})*\b') + +CATEGORY_MAP = [ + # (keyword in description.lower(), cauldron category) + ("oil", "oil-fat"), + ("butter", "oil-fat"), + ("lard", "oil-fat"), + ("shortening", "oil-fat"), + ("flour", "baking"), + ("sugar", "baking"), + ("yeast", "baking"), + ("baking powder", "baking"), + ("baking soda", "baking"), + ("vanilla", "baking"), + ("cocoa", "baking"), + ("chocolate", "baking"), + ("salt", "spice"), + ("pepper", "spice"), + ("cinnamon", "spice"), + ("paprika", "spice"), + ("oregano", "spice"), + ("basil", "spice"), + ("thyme", "spice"), + ("rosemary", "spice"), + ("garlic powder", "spice"), + ("onion powder", "spice"), + ("cumin", "spice"), + ("turmeric", "spice"), + ("ginger", "spice"), + ("milk", "dairy"), + ("cream", "dairy"), + ("yogurt", "dairy"), + ("cheese", "dairy"), + ("rice", "grain"), + ("pasta", "grain"), + ("noodle", "grain"), + ("bread", "grain"), + ("oats", "grain"), + ("oatmeal", "grain"), + ("quinoa", "grain"), + ("barley", "grain"), + ("couscous", "grain"), + ("beans", "legume"), + ("lentil", "legume"), + ("chickpea", "legume"), + ("garbanzo", "legume"), + ("tofu", "legume"), + ("tempeh", "legume"), + ("almond", "nut-seed"), + ("walnut", "nut-seed"), + ("pecan", "nut-seed"), + ("cashew", "nut-seed"), + ("peanut", "nut-seed"), + ("pistachio", "nut-seed"), + ("hazelnut", "nut-seed"), + ("seed", "nut-seed"), + ("nut", "nut-seed"), + ("beef", "meat"), + ("pork", "meat"), + ("chicken", "meat"), + ("turkey", "meat"), + ("lamb", "meat"), + ("ham", "meat"), + ("bacon", "meat"), + ("sausage", "meat"), + ("fish", "meat"), + ("salmon", "meat"), + ("tuna", "meat"), + ("shrimp", "meat"), + ("egg", "dairy"), # close enough + ("juice", "beverage"), + ("water", "beverage"), + ("tea", "beverage"), + ("coffee", "beverage"), + ("beer", "beverage"), + ("wine", "beverage"), + ("alcoholic", "beverage"), + ("soda", "beverage"), + ("vinegar", "condiment"), + ("sauce", "condiment"), + ("ketchup", "condiment"), + ("mustard", "condiment"), + ("mayonnaise", "condiment"), + ("soy sauce", "condiment"), + ("dressing", "condiment"), + ("syrup", "condiment"), + ("honey", "condiment"), + ("jam", "condiment"), + ("jelly", "condiment"), + ("apple", "produce-fruit"), + ("banana", "produce-fruit"), + ("orange", "produce-fruit"), + ("strawberry", "produce-fruit"), + ("blueberry", "produce-fruit"), + ("raspberry", "produce-fruit"), + ("grape", "produce-fruit"), + ("lemon", "produce-fruit"), + ("lime", "produce-fruit"), + ("pineapple", "produce-fruit"), + ("mango", "produce-fruit"), + ("watermelon", "produce-fruit"), + ("cherry", "produce-fruit"), + ("peach", "produce-fruit"), + ("pear", "produce-fruit"), + ("avocado", "produce-fruit"), + ("tomato", "produce-vegetable"), # we know + ("onion", "produce-vegetable"), + ("garlic", "produce-vegetable"), + ("carrot", "produce-vegetable"), + ("potato", "produce-vegetable"), + ("spinach", "produce-vegetable"), + ("lettuce", "produce-vegetable"), + ("kale", "produce-vegetable"), + ("broccoli", "produce-vegetable"), + ("cauliflower", "produce-vegetable"), + ("celery", "produce-vegetable"), + ("cucumber", "produce-vegetable"), + ("zucchini", "produce-vegetable"), + ("pepper, sweet", "produce-vegetable"), + ("pepper, bell", "produce-vegetable"), + ("mushroom", "produce-vegetable"), + ("squash", "produce-vegetable"), + ("pumpkin", "produce-vegetable"), + ("cabbage", "produce-vegetable"), +] + + +def categorize(name: str) -> str: + """Match against the longest keyword first so 'soy sauce' beats 'sauce' + and 'pepper, black' beats 'pepper'. Score by keyword length.""" + n = name.lower() + best = (None, 0) + for kw, cat in CATEGORY_MAP: + if kw in n and len(kw) > best[1]: + best = (cat, len(kw)) + return best[0] or "other" + + +def normalize_name(desc: str) -> str: + """Pull a canonical name out of the verbose USDA description.""" + s = desc + # Strip everything after the first comma in many cases ("Salt, table" -> "Salt") + # but keep useful descriptors ("Pepper, black, ground" -> "black pepper" via reorder) + # First: drop preparation suffixes that don't matter for shopping + s = re.sub(r',\s*(raw|cooked, boiled|cooked, drained|prepared|whole|ground|fresh|dried|granulated|all)(\s*,|$)', '', s, flags=re.I) + # Drop branded all-caps tokens + s = BRAND_PATTERN.sub('', s) + # Drop parentheticals + s = re.sub(r'\([^)]*\)', '', s) + # Tidy whitespace + s = re.sub(r'\s+', ' ', s).strip(', ').strip() + # Reorder "X, Y" → "Y X" for spices/seasonings ("Pepper, black" → "black pepper") + if ',' in s and not any(s.lower().startswith(p) for p in ('alcoholic', 'beverage', 'soup', 'sauce')): + parts = [p.strip() for p in s.split(',') if p.strip()] + if len(parts) == 2 and len(parts[1]) <= 25: + s = f"{parts[1]} {parts[0]}" + return s.lower().strip() + + +_MODIFIER_VOL = re.compile( + r'^(?:[\d./\s]*\s*)?(cup|tablespoon|tbsp|teaspoon|tsp|fl oz|fluid ounce|fluid ounces|ml|milliliter|liter|pint|quart|gallon)\b', + re.I, +) +_MODIFIER_NORMALIZE = { + 'tbsp': 'tablespoon', + 'tsp': 'teaspoon', + 'fluid ounce': 'fl oz', + 'fluid ounces': 'fl oz', + 'milliliter': 'ml', + 'liter': 'liter', +} + + +def _modifier_to_unit(modifier: str) -> str | None: + """Pull a known volume unit out of a USDA modifier string. Handles + 'cup', 'cup (8 fl oz)', 'cup, chopped', 'tablespoon', etc.""" + m = _MODIFIER_VOL.match((modifier or '').strip().lower()) + if not m: + return None + raw = m.group(1).lower() + return _MODIFIER_NORMALIZE.get(raw, raw) + + +def derive_densities(food: dict) -> list[float]: + """Return list of derived g/ml density values from this food's portions. + + SR Legacy puts the actual unit in `modifier` (not measureUnit.name, + which is almost always 'undetermined'). We parse the modifier with a + regex tolerant of garnish phrases ('cup, chopped', 'cup (8 fl oz)').""" + out = [] + for p in (food.get('foodPortions') or []): + gw = p.get('gramWeight') + if not gw or gw <= 0: + continue + amount = p.get('amount') or 1 + unit_name = ((p.get('measureUnit') or {}).get('name') or '').lower().strip() + modifier = p.get('modifier') or '' + unit = unit_name if unit_name in VOL_TO_ML else _modifier_to_unit(modifier) + if unit not in VOL_TO_ML: + continue + ml = VOL_TO_ML[unit] * amount + if ml > 0: + density = gw / ml + if 0.1 < density < 3.0: + out.append(density) + return out + + +def main(): + src = sys.argv[1] + with open(src) as f: + data = json.load(f) + foods = data.get('SRLegacyFoods') or data.get('FoundationFoods') or [] + + out = [] + seen_canonical = {} + for f in foods: + desc = f.get('description') or '' + if not desc: + continue + # Drop junk by prefix + d_low = desc.lower() + if any(d_low.startswith(p) for p in DROP_PREFIXES): + continue + # Drop junk by substring + if any(kw.lower() in d_low for kw in DROP_KEYWORDS): + continue + densities = derive_densities(f) + if not densities: + continue + avg = round(sum(densities) / len(densities), 3) + + canonical = normalize_name(desc) + if not canonical or len(canonical) > 80: + continue + # If we've already seen this canonical name with a similar density, skip + if canonical in seen_canonical: + existing = seen_canonical[canonical] + existing['density_samples'].append(avg) + existing['density_g_per_ml'] = round( + sum(existing['density_samples']) / len(existing['density_samples']), 3 + ) + continue + seen_canonical[canonical] = { + 'canonical_name': canonical, + 'category': categorize(canonical), + 'density_g_per_ml': avg, + 'default_unit_class': 'volume' if avg < 1.05 else 'mass', + 'usda_fdc_id': f.get('fdcId'), + 'usda_description': desc, + 'density_samples': [avg], + } + + # Drop the working sample list before serializing + final = [] + for v in seen_canonical.values(): + v.pop('density_samples', None) + final.append(v) + + final.sort(key=lambda x: x['canonical_name']) + json.dump(final, sys.stdout, indent=2, ensure_ascii=False) + print(f'\n# {len(final)} foods', file=sys.stderr) + + +if __name__ == '__main__': + main()