From 17cfee17ba1ae366c12840482f348d85b43c7488 Mon Sep 17 00:00:00 2001 From: Jackie Date: Tue, 1 May 2018 20:32:05 -0700 Subject: [PATCH 01/21] Added rails and updated gem files --- .gitignore | 29 + .ruby-version | 1 + Gemfile | 83 ++ Gemfile.lock | 270 ++++++ README.md | 99 +- Rakefile | 6 + app/assets/config/manifest.js | 3 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 21 + app/assets/javascripts/cable.js | 13 + app/assets/javascripts/channels/.keep | 0 app/assets/stylesheets/_settings.scss | 869 ++++++++++++++++++ app/assets/stylesheets/application.css | 19 + app/assets/stylesheets/browserslist | 4 + .../stylesheets/foundation_and_overrides.scss | 61 ++ app/channels/application_cable/channel.rb | 4 + app/channels/application_cable/connection.rb | 4 + app/controllers/application_controller.rb | 2 + app/controllers/concerns/.keep | 0 app/helpers/application_helper.rb | 2 + app/jobs/application_job.rb | 2 + app/mailers/application_mailer.rb | 4 + app/models/application_record.rb | 3 + app/models/concerns/.keep | 0 app/views/layouts/application.html.erb | 19 + app/views/layouts/mailer.html.erb | 13 + app/views/layouts/mailer.text.erb | 1 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 36 + bin/spring | 17 + bin/update | 31 + bin/yarn | 11 + config.ru | 5 + config/application.rb | 26 + config/boot.rb | 4 + config/cable.yml | 10 + config/credentials.yml.enc | 1 + config/database.yml | 85 ++ config/environment.rb | 5 + config/environments/development.rb | 61 ++ config/environments/production.rb | 94 ++ config/environments/test.rb | 46 + .../application_controller_renderer.rb | 8 + config/initializers/assets.rb | 14 + config/initializers/backtrace_silencers.rb | 7 + .../initializers/content_security_policy.rb | 25 + config/initializers/cookies_serializer.rb | 5 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 + config/initializers/mime_types.rb | 4 + config/initializers/wrap_parameters.rb | 14 + config/locales/en.yml | 33 + config/puma.rb | 34 + config/routes.rb | 3 + config/spring.rb | 6 + config/storage.yml | 34 + db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 package.json | 5 + public/404.html | 67 ++ public/422.html | 67 ++ public/500.html | 66 ++ public/apple-touch-icon-precomposed.png | 0 public/apple-touch-icon.png | 0 public/favicon.ico | 0 public/robots.txt | 1 + test/application_system_test_case.rb | 5 + test/controllers/.keep | 0 test/fixtures/.keep | 0 test/fixtures/files/.keep | 0 test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/system/.keep | 0 test/test_helper.rb | 26 + tmp/.keep | 0 vendor/.keep | 0 82 files changed, 2350 insertions(+), 86 deletions(-) create mode 100644 .gitignore create mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 Rakefile create mode 100644 app/assets/config/manifest.js create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/javascripts/cable.js create mode 100644 app/assets/javascripts/channels/.keep create mode 100644 app/assets/stylesheets/_settings.scss create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/browserslist create mode 100644 app/assets/stylesheets/foundation_and_overrides.scss create mode 100644 app/channels/application_cable/channel.rb create mode 100644 app/channels/application_cable/connection.rb create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/helpers/application_helper.rb create mode 100644 app/jobs/application_job.rb create mode 100644 app/mailers/application_mailer.rb create mode 100644 app/models/application_record.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/layouts/mailer.html.erb create mode 100644 app/views/layouts/mailer.text.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100755 bin/update create mode 100755 bin/yarn create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/cable.yml create mode 100644 config/credentials.yml.enc create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/application_controller_renderer.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/content_security_policy.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/puma.rb create mode 100644 config/routes.rb create mode 100644 config/spring.rb create mode 100644 config/storage.yml create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 package.json create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/application_system_test_case.rb create mode 100644 test/controllers/.keep create mode 100644 test/fixtures/.keep create mode 100644 test/fixtures/files/.keep create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/system/.keep create mode 100644 test/test_helper.rb create mode 100644 tmp/.keep create mode 100644 vendor/.keep diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..f40baa451 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# See https://help.github.com/articles/ignoring-files for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile '~/.gitignore_global' + +# Ignore bundler config. +/.bundle + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Ignore uploaded files in development +/storage/* + +/node_modules +/yarn-error.log + +/public/assets +.byebug_history + +# Ignore master key for decrypting credentials and more. +/config/master.key + +# Ignore application configuration +/config/application.yml diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 000000000..fad066f80 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.5.0 \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..2f79e074e --- /dev/null +++ b/Gemfile @@ -0,0 +1,83 @@ +source 'https://rubygems.org' +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby '2.5.0' +gem 'httparty' +gem 'figaro' + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.2.0' +# Use postgresql as the database for Active Record +gem 'pg', '>= 0.18', '< 2.0' +# Use Puma as the app server +gem 'puma', '~> 3.11' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'mini_racer', platforms: :ruby + +# Use CoffeeScript for .coffee assets and views +# gem 'coffee-rails', '~> 4.2' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' +# Use Redis adapter to run Action Cable in production +# gem 'redis', '~> 4.0' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use ActiveStorage variant +# gem 'mini_magick', '~> 4.8' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +# Reduces boot times through caching; required in config/boot.rb +gem 'bootsnap', '>= 1.1.0', require: false + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] + gem 'dotenv-rails' +end + +group :development do + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '>= 3.0.5', '< 3.2' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +group :test do + # Adds support for Capybara system testing and selenium driver + gem 'capybara', '>= 2.15', '< 4.0' + gem 'selenium-webdriver' + # Easy installation and use of chromedriver to run system tests with Chrome + gem 'chromedriver-helper' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] + +gem 'jquery-turbolinks' +gem 'jquery-rails' +gem 'foundation-rails' +gem 'normalize-rails' +group :development, :test do + gem 'pry-rails' +end + +group :development do + gem 'better_errors' + gem 'binding_of_caller' +end + +group :test do + gem 'minitest-rails' + gem 'minitest-reporters' +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..f81a22b82 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,270 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.2.0) + actionpack (= 5.2.0) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailer (5.2.0) + actionpack (= 5.2.0) + actionview (= 5.2.0) + activejob (= 5.2.0) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.2.0) + actionview (= 5.2.0) + activesupport (= 5.2.0) + rack (~> 2.0) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.0) + activesupport (= 5.2.0) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.2.0) + activesupport (= 5.2.0) + globalid (>= 0.3.6) + activemodel (5.2.0) + activesupport (= 5.2.0) + activerecord (5.2.0) + activemodel (= 5.2.0) + activesupport (= 5.2.0) + arel (>= 9.0) + activestorage (5.2.0) + actionpack (= 5.2.0) + activerecord (= 5.2.0) + marcel (~> 0.3.1) + activesupport (5.2.0) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + ansi (1.5.0) + archive-zip (0.11.0) + io-like (~> 0.3.0) + arel (9.0.0) + babel-source (5.8.35) + babel-transpiler (0.7.0) + babel-source (>= 4.0, < 6) + execjs (~> 2.0) + better_errors (2.4.0) + coderay (>= 1.0.0) + erubi (>= 1.0.0) + rack (>= 0.9.0) + bindex (0.5.0) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + bootsnap (1.3.0) + msgpack (~> 1.0) + builder (3.2.3) + byebug (10.0.2) + capybara (3.0.3) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + xpath (~> 3.0) + childprocess (0.9.0) + ffi (~> 1.0, >= 1.0.11) + chromedriver-helper (1.2.0) + archive-zip (~> 0.10) + nokogiri (~> 1.8) + coderay (1.1.2) + concurrent-ruby (1.0.5) + crass (1.0.4) + debug_inspector (0.0.3) + dotenv (2.4.0) + dotenv-rails (2.4.0) + dotenv (= 2.4.0) + railties (>= 3.2, < 6.0) + erubi (1.7.1) + execjs (2.7.0) + ffi (1.9.23) + figaro (1.1.1) + thor (~> 0.14) + foundation-rails (6.4.3.0) + railties (>= 3.1.0) + sass (>= 3.3.0, < 3.5) + sprockets-es6 (>= 0.9.0) + globalid (0.4.1) + activesupport (>= 4.2.0) + httparty (0.16.2) + multi_xml (>= 0.5.2) + i18n (1.0.1) + concurrent-ruby (~> 1.0) + io-like (0.3.0) + jbuilder (2.7.0) + activesupport (>= 4.2.0) + multi_json (>= 1.2) + jquery-rails (4.3.3) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + jquery-turbolinks (2.1.0) + railties (>= 3.1.0) + turbolinks + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + loofah (2.2.2) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + mail (2.7.0) + mini_mime (>= 0.1.1) + marcel (0.3.2) + mimemagic (~> 0.3.2) + method_source (0.9.0) + mimemagic (0.3.2) + mini_mime (1.0.0) + mini_portile2 (2.3.0) + minitest (5.11.3) + minitest-rails (3.0.0) + minitest (~> 5.8) + railties (~> 5.0) + minitest-reporters (1.2.0) + ansi + builder + minitest (>= 5.0) + ruby-progressbar + msgpack (1.2.4) + multi_json (1.13.1) + multi_xml (0.6.0) + nio4r (2.3.0) + nokogiri (1.8.2) + mini_portile2 (~> 2.3.0) + normalize-rails (4.1.1) + pg (1.0.0) + pry (0.11.3) + coderay (~> 1.1.0) + method_source (~> 0.9.0) + pry-rails (0.3.6) + pry (>= 0.10.4) + public_suffix (3.0.2) + puma (3.11.4) + rack (2.0.5) + rack-test (1.0.0) + rack (>= 1.0, < 3) + rails (5.2.0) + actioncable (= 5.2.0) + actionmailer (= 5.2.0) + actionpack (= 5.2.0) + actionview (= 5.2.0) + activejob (= 5.2.0) + activemodel (= 5.2.0) + activerecord (= 5.2.0) + activestorage (= 5.2.0) + activesupport (= 5.2.0) + bundler (>= 1.3.0) + railties (= 5.2.0) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.0.4) + loofah (~> 2.2, >= 2.2.2) + railties (5.2.0) + actionpack (= 5.2.0) + activesupport (= 5.2.0) + method_source + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (12.3.1) + rb-fsevent (0.10.3) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + ruby-progressbar (1.9.0) + ruby_dep (1.5.0) + rubyzip (1.2.1) + sass (3.4.25) + sass-rails (5.0.7) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + selenium-webdriver (3.11.0) + childprocess (~> 0.5) + rubyzip (~> 1.2) + spring (2.0.2) + activesupport (>= 4.2) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (3.7.1) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-es6 (0.9.2) + babel-source (>= 5.8.11) + babel-transpiler + sprockets (>= 3.0.0) + sprockets-rails (3.2.1) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + thor (0.20.0) + thread_safe (0.3.6) + tilt (2.0.8) + turbolinks (5.1.1) + turbolinks-source (~> 5.1) + turbolinks-source (5.1.0) + tzinfo (1.2.5) + thread_safe (~> 0.1) + uglifier (4.1.10) + execjs (>= 0.3.0, < 3) + web-console (3.6.2) + actionview (>= 5.0) + activemodel (>= 5.0) + bindex (>= 0.4.0) + railties (>= 5.0) + websocket-driver (0.7.0) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.3) + xpath (3.0.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + better_errors + binding_of_caller + bootsnap (>= 1.1.0) + byebug + capybara (>= 2.15, < 4.0) + chromedriver-helper + dotenv-rails + figaro + foundation-rails + httparty + jbuilder (~> 2.5) + jquery-rails + jquery-turbolinks + listen (>= 3.0.5, < 3.2) + minitest-rails + minitest-reporters + normalize-rails + pg (>= 0.18, < 2.0) + pry-rails + puma (~> 3.11) + rails (~> 5.2.0) + sass-rails (~> 5.0) + selenium-webdriver + spring + spring-watcher-listen (~> 2.0.0) + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +RUBY VERSION + ruby 2.5.0p0 + +BUNDLED WITH + 1.16.1 diff --git a/README.md b/README.md index 584ee6c89..7db80e4ca 100644 --- a/README.md +++ b/README.md @@ -1,97 +1,24 @@ -# Recipe API Consumer +# README -## Purpose -Create a web application that will display recipes based on a search term. We will utilize an API from Edamam called the [Recipe Search API](https://developer.edamam.com/edamam-recipe-api). +This README would normally document whatever steps are necessary to get the +application up and running. -This project will require some research into techniques we have not taught in class. +Things you may want to cover: -This is an individual, [stage 2](https://github.com/Ada-Developers-Academy/pedagogy/blob/master/rule-of-three.md) project. +* Ruby version -## Learning Goals: -- Configure an API for consumption -- Create authenticated API requests using HTTParty -- Consume JSON responses from an API -- Map response to application-specific data -- Separate API logic from application logic +* System dependencies +* Configuration -### Baseline -Before you start writing _any_ code: +* Database creation -- Explore the API documentation to become familiar with the request(s) you can make -- Create a Trello Board listing the features you will need to add and use it to track the progress of your app. +* Database initialization -Once you've explored the API docs, this project: +* How to run the test suite -- requires you to create a Rails application - - conform to Rails conventions on naming and inflection - - by using `rails new .` you will create a new rails app _inside_ of the fork folder instead of creating a _new_ folder for your rails app -- Use better_errors for debugging purposes -- Deploy your completed app to Heroku +* Services (job queues, cache servers, search engines, etc.) +* Deployment instructions -### Detailed Requirements -**Search**: -- The user shall type in a search term that will: - - Make a request to the API using the search term - - Display the results in a list to the user - -**List View**: -- This shall show a **paged** list of recipes for a given search term, _ten at a time_ - - Pagination of the recipies is a feature you will need to research including a concept called query parameters. -- This view shall show the name of the recipe and the corresponding photo -- The view shall have a link from the recipe to a recipe show view - -**Show View**: -- This shall show the details about a given recipe. These details include: - - Name - - Link to the original recipe (opens in a new tab) - - Ingredients - - Dietary information - -**Additional Requirements**: -- One of the things that permits us to use this API, it providing attribution to the API's created. We must provide this somewhere on our site. Example locations include the footer or an about page. - - [Examples from the API site](./images/attribution.png) -- You must also create tests for your API Wrapper & any classes as well as controller tests using VCR -- Your site must have a responsive design, must be usable on mobile devices, and must use semantic HTML - -### Important Notes: -- Using this API as a developer limits the number of API calls in a month to 5000. This means that we must try to minimize API calls for testing purposes as much as possible, to ensure you do not exceed this number of API calls in the one week of development we have. - - -### Optionals: -- Keep track of most recent search terms and allow user's to return to those searches -- Implement an OAuth strategy using Google - - Allow users to save recipes to a "favorites" section that they can return to -- Provide checkboxes or other controls to limit the search to options such as: - - Peanut Free - - Soy Free - - High Protein - - Etc - - -### Optional Wireframes: -You have creative control over the design and layout of this project. Below are optional wireframes you may use. It is not a requirement that you do. - -**Homepage:** - - ![Splash Page Wireframe](assets/Muncher_splash_wireframe.png ) - - **Results Page:** - - ![Results Page Wireframe](assets/muncher_results_wireframe.png ) - - **Recipe Show Page:** - - ![Results Page Wireframe](assets/muncher_recipe_wireframe.png ) - - -Reminder: Make sure all content is still easy to read when the width of a screen is shrunk. Use flexible measurements like width and REM. - -These should be responsive. When the screen width shrinks to a medium screen, have a row with only two recipes. On a small screen width, have only a single recipe per line. - -## What We're Looking For - -Check the [feedback template](./feedback.md) to see how we will evaluate your project. - -This project is due **Monday May 7th** +* ... diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..e85f91391 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 000000000..b16e53d6d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..183604ee9 --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,21 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's +// vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. JavaScript code in this file should be added after the last require_* statement. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +//= require jquery + +// +//= require rails-ujs +//= require foundation +//= require activestorage +//= require turbolinks +//= require_tree . + +$(function(){ $(document).foundation(); }); diff --git a/app/assets/javascripts/cable.js b/app/assets/javascripts/cable.js new file mode 100644 index 000000000..739aa5f02 --- /dev/null +++ b/app/assets/javascripts/cable.js @@ -0,0 +1,13 @@ +// Action Cable provides the framework to deal with WebSockets in Rails. +// You can generate new channels where WebSocket features live using the `rails generate channel` command. +// +//= require action_cable +//= require_self +//= require_tree ./channels + +(function() { + this.App || (this.App = {}); + + App.cable = ActionCable.createConsumer(); + +}).call(this); diff --git a/app/assets/javascripts/channels/.keep b/app/assets/javascripts/channels/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/stylesheets/_settings.scss b/app/assets/stylesheets/_settings.scss new file mode 100644 index 000000000..26f74f949 --- /dev/null +++ b/app/assets/stylesheets/_settings.scss @@ -0,0 +1,869 @@ +// Foundation for Sites Settings +// ----------------------------- +// +// Table of Contents: +// +// 1. Global +// 2. Breakpoints +// 3. The Grid +// 4. Base Typography +// 5. Typography Helpers +// 6. Abide +// 7. Accordion +// 8. Accordion Menu +// 9. Badge +// 10. Breadcrumbs +// 11. Button +// 12. Button Group +// 13. Callout +// 14. Card +// 15. Close Button +// 16. Drilldown +// 17. Dropdown +// 18. Dropdown Menu +// 19. Flexbox Utilities +// 20. Forms +// 21. Label +// 22. Media Object +// 23. Menu +// 24. Meter +// 25. Off-canvas +// 26. Orbit +// 27. Pagination +// 28. Progress Bar +// 29. Prototype Arrow +// 30. Prototype Border-Box +// 31. Prototype Border-None +// 32. Prototype Bordered +// 33. Prototype Display +// 34. Prototype Font-Styling +// 35. Prototype List-Style-Type +// 36. Prototype Overflow +// 37. Prototype Position +// 38. Prototype Rounded +// 39. Prototype Separator +// 40. Prototype Shadow +// 41. Prototype Sizing +// 42. Prototype Spacing +// 43. Prototype Text-Decoration +// 44. Prototype Text-Transformation +// 45. Prototype Text-Utilities +// 46. Responsive Embed +// 47. Reveal +// 48. Slider +// 49. Switch +// 50. Table +// 51. Tabs +// 52. Thumbnail +// 53. Title Bar +// 54. Tooltip +// 55. Top Bar +// 56. Xy Grid + +@import 'util/util'; + +// 1. Global +// --------- + +$global-font-size: 100%; +$global-width: rem-calc(1200); +$global-lineheight: 1.5; +$foundation-palette: ( + primary: #1779ba, + secondary: #767676, + success: #3adb76, + warning: #ffae00, + alert: #cc4b37, +); +$light-gray: #e6e6e6; +$medium-gray: #cacaca; +$dark-gray: #8a8a8a; +$black: #0a0a0a; +$white: #fefefe; +$body-background: $white; +$body-font-color: $black; +$body-font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif; +$body-antialiased: true; +$global-margin: 1rem; +$global-padding: 1rem; +$global-position: 1rem; +$global-weight-normal: normal; +$global-weight-bold: bold; +$global-radius: 0; +$global-menu-padding: 0.7rem 1rem; +$global-menu-nested-margin: 1rem; +$global-text-direction: ltr; +$global-flexbox: true; +$global-prototype-breakpoints: false; +$global-button-cursor: auto; +$global-color-pick-contrast-tolerance: 0; +$print-transparent-backgrounds: true; + +@include add-foundation-colors; + +// 2. Breakpoints +// -------------- + +$breakpoints: ( + small: 0, + medium: 640px, + large: 1024px, + xlarge: 1200px, + xxlarge: 1440px, +); +$print-breakpoint: large; +$breakpoint-classes: (small medium large); + +// 3. The Grid +// ----------- + +$grid-row-width: $global-width; +$grid-column-count: 12; +$grid-column-gutter: ( + small: 20px, + medium: 30px, +); +$grid-column-align-edge: true; +$grid-column-alias: 'columns'; +$block-grid-max: 8; + +// 4. Base Typography +// ------------------ + +$header-font-family: $body-font-family; +$header-font-weight: $global-weight-normal; +$header-font-style: normal; +$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace; +$header-color: inherit; +$header-lineheight: 1.4; +$header-margin-bottom: 0.5rem; +$header-styles: ( + small: ( + 'h1': ('font-size': 24), + 'h2': ('font-size': 20), + 'h3': ('font-size': 19), + 'h4': ('font-size': 18), + 'h5': ('font-size': 17), + 'h6': ('font-size': 16), + ), + medium: ( + 'h1': ('font-size': 48), + 'h2': ('font-size': 40), + 'h3': ('font-size': 31), + 'h4': ('font-size': 25), + 'h5': ('font-size': 20), + 'h6': ('font-size': 16), + ), +); +$header-text-rendering: optimizeLegibility; +$small-font-size: 80%; +$header-small-font-color: $medium-gray; +$paragraph-lineheight: 1.6; +$paragraph-margin-bottom: 1rem; +$paragraph-text-rendering: optimizeLegibility; +$code-color: $black; +$code-font-family: $font-family-monospace; +$code-font-weight: $global-weight-normal; +$code-background: $light-gray; +$code-border: 1px solid $medium-gray; +$code-padding: rem-calc(2 5 1); +$anchor-color: $primary-color; +$anchor-color-hover: scale-color($anchor-color, $lightness: -14%); +$anchor-text-decoration: none; +$anchor-text-decoration-hover: none; +$hr-width: $global-width; +$hr-border: 1px solid $medium-gray; +$hr-margin: rem-calc(20) auto; +$list-lineheight: $paragraph-lineheight; +$list-margin-bottom: $paragraph-margin-bottom; +$list-style-type: disc; +$list-style-position: outside; +$list-side-margin: 1.25rem; +$list-nested-side-margin: 1.25rem; +$defnlist-margin-bottom: 1rem; +$defnlist-term-weight: $global-weight-bold; +$defnlist-term-margin-bottom: 0.3rem; +$blockquote-color: $dark-gray; +$blockquote-padding: rem-calc(9 20 0 19); +$blockquote-border: 1px solid $medium-gray; +$cite-font-size: rem-calc(13); +$cite-color: $dark-gray; +$cite-pseudo-content: '\2014 \0020'; +$keystroke-font: $font-family-monospace; +$keystroke-color: $black; +$keystroke-background: $light-gray; +$keystroke-padding: rem-calc(2 4 0); +$keystroke-radius: $global-radius; +$abbr-underline: 1px dotted $black; + +// 5. Typography Helpers +// --------------------- + +$lead-font-size: $global-font-size * 1.25; +$lead-lineheight: 1.6; +$subheader-lineheight: 1.4; +$subheader-color: $dark-gray; +$subheader-font-weight: $global-weight-normal; +$subheader-margin-top: 0.2rem; +$subheader-margin-bottom: 0.5rem; +$stat-font-size: 2.5rem; + +// 6. Abide +// -------- + +$abide-inputs: true; +$abide-labels: true; +$input-background-invalid: get-color(alert); +$form-label-color-invalid: get-color(alert); +$input-error-color: get-color(alert); +$input-error-font-size: rem-calc(12); +$input-error-font-weight: $global-weight-bold; + +// 7. Accordion +// ------------ + +$accordion-background: $white; +$accordion-plusminus: true; +$accordion-title-font-size: rem-calc(12); +$accordion-item-color: $primary-color; +$accordion-item-background-hover: $light-gray; +$accordion-item-padding: 1.25rem 1rem; +$accordion-content-background: $white; +$accordion-content-border: 1px solid $light-gray; +$accordion-content-color: $body-font-color; +$accordion-content-padding: 1rem; + +// 8. Accordion Menu +// ----------------- + +$accordionmenu-padding: $global-menu-padding; +$accordionmenu-nested-margin: $global-menu-nested-margin; +$accordionmenu-submenu-padding: $accordionmenu-padding; +$accordionmenu-arrows: true; +$accordionmenu-arrow-color: $primary-color; +$accordionmenu-item-background: null; +$accordionmenu-border: null; +$accordionmenu-submenu-toggle-background: null; +$accordion-submenu-toggle-border: $accordionmenu-border; +$accordionmenu-submenu-toggle-width: 40px; +$accordionmenu-submenu-toggle-height: $accordionmenu-submenu-toggle-width; +$accordionmenu-arrow-size: 6px; + +// 9. Badge +// -------- + +$badge-background: $primary-color; +$badge-color: $white; +$badge-color-alt: $black; +$badge-palette: $foundation-palette; +$badge-padding: 0.3em; +$badge-minwidth: 2.1em; +$badge-font-size: 0.6rem; + +// 10. Breadcrumbs +// --------------- + +$breadcrumbs-margin: 0 0 $global-margin 0; +$breadcrumbs-item-font-size: rem-calc(11); +$breadcrumbs-item-color: $primary-color; +$breadcrumbs-item-color-current: $black; +$breadcrumbs-item-color-disabled: $medium-gray; +$breadcrumbs-item-margin: 0.75rem; +$breadcrumbs-item-uppercase: true; +$breadcrumbs-item-separator: true; +$breadcrumbs-item-separator-item: '/'; +$breadcrumbs-item-separator-item-rtl: '\\'; +$breadcrumbs-item-separator-color: $medium-gray; + +// 11. Button +// ---------- + +$button-font-family: inherit; +$button-padding: 0.85em 1em; +$button-margin: 0 0 $global-margin 0; +$button-fill: solid; +$button-background: $primary-color; +$button-background-hover: scale-color($button-background, $lightness: -15%); +$button-color: $white; +$button-color-alt: $black; +$button-radius: $global-radius; +$button-hollow-border-width: 1px; +$button-sizes: ( + tiny: 0.6rem, + small: 0.75rem, + default: 0.9rem, + large: 1.25rem, +); +$button-palette: $foundation-palette; +$button-opacity-disabled: 0.25; +$button-background-hover-lightness: -20%; +$button-hollow-hover-lightness: -50%; +$button-transition: background-color 0.25s ease-out, color 0.25s ease-out; + +// 12. Button Group +// ---------------- + +$buttongroup-margin: 1rem; +$buttongroup-spacing: 1px; +$buttongroup-child-selector: '.button'; +$buttongroup-expand-max: 6; +$buttongroup-radius-on-each: true; + +// 13. Callout +// ----------- + +$callout-background: $white; +$callout-background-fade: 85%; +$callout-border: 1px solid rgba($black, 0.25); +$callout-margin: 0 0 1rem 0; +$callout-padding: 1rem; +$callout-font-color: $body-font-color; +$callout-font-color-alt: $body-background; +$callout-radius: $global-radius; +$callout-link-tint: 30%; + +// 14. Card +// -------- + +$card-background: $white; +$card-font-color: $body-font-color; +$card-divider-background: $light-gray; +$card-border: 1px solid $light-gray; +$card-shadow: none; +$card-border-radius: $global-radius; +$card-padding: $global-padding; +$card-margin-bottom: $global-margin; + +// 15. Close Button +// ---------------- + +$closebutton-position: right top; +$closebutton-offset-horizontal: ( + small: 0.66rem, + medium: 1rem, +); +$closebutton-offset-vertical: ( + small: 0.33em, + medium: 0.5rem, +); +$closebutton-size: ( + small: 1.5em, + medium: 2em, +); +$closebutton-lineheight: 1; +$closebutton-color: $dark-gray; +$closebutton-color-hover: $black; + +// 16. Drilldown +// ------------- + +$drilldown-transition: transform 0.15s linear; +$drilldown-arrows: true; +$drilldown-padding: $global-menu-padding; +$drilldown-nested-margin: 0; +$drilldown-background: $white; +$drilldown-submenu-padding: $drilldown-padding; +$drilldown-submenu-background: $white; +$drilldown-arrow-color: $primary-color; +$drilldown-arrow-size: 6px; + +// 17. Dropdown +// ------------ + +$dropdown-padding: 1rem; +$dropdown-background: $body-background; +$dropdown-border: 1px solid $medium-gray; +$dropdown-font-size: 1rem; +$dropdown-width: 300px; +$dropdown-radius: $global-radius; +$dropdown-sizes: ( + tiny: 100px, + small: 200px, + large: 400px, +); + +// 18. Dropdown Menu +// ----------------- + +$dropdownmenu-arrows: true; +$dropdownmenu-arrow-color: $anchor-color; +$dropdownmenu-arrow-size: 6px; +$dropdownmenu-arrow-padding: 1.5rem; +$dropdownmenu-min-width: 200px; +$dropdownmenu-background: $white; +$dropdownmenu-submenu-background: $dropdownmenu-background; +$dropdownmenu-padding: $global-menu-padding; +$dropdownmenu-nested-margin: 0; +$dropdownmenu-submenu-padding: $dropdownmenu-padding; +$dropdownmenu-border: 1px solid $medium-gray; +$dropdown-menu-item-color-active: get-color(primary); +$dropdown-menu-item-background-active: transparent; + +// 19. Flexbox Utilities +// --------------------- + +$flex-source-ordering-count: 6; +$flexbox-responsive-breakpoints: true; + +// 20. Forms +// --------- + +$fieldset-border: 1px solid $medium-gray; +$fieldset-padding: rem-calc(20); +$fieldset-margin: rem-calc(18 0); +$legend-padding: rem-calc(0 3); +$form-spacing: rem-calc(16); +$helptext-color: $black; +$helptext-font-size: rem-calc(13); +$helptext-font-style: italic; +$input-prefix-color: $black; +$input-prefix-background: $light-gray; +$input-prefix-border: 1px solid $medium-gray; +$input-prefix-padding: 1rem; +$form-label-color: $black; +$form-label-font-size: rem-calc(14); +$form-label-font-weight: $global-weight-normal; +$form-label-line-height: 1.8; +$select-background: $white; +$select-triangle-color: $dark-gray; +$select-radius: $global-radius; +$input-color: $black; +$input-placeholder-color: $medium-gray; +$input-font-family: inherit; +$input-font-size: rem-calc(16); +$input-font-weight: $global-weight-normal; +$input-line-height: $global-lineheight; +$input-background: $white; +$input-background-focus: $white; +$input-background-disabled: $light-gray; +$input-border: 1px solid $medium-gray; +$input-border-focus: 1px solid $dark-gray; +$input-padding: $form-spacing / 2; +$input-shadow: inset 0 1px 2px rgba($black, 0.1); +$input-shadow-focus: 0 0 5px $medium-gray; +$input-cursor-disabled: not-allowed; +$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out; +$input-number-spinners: true; +$input-radius: $global-radius; +$form-button-radius: $global-radius; + +// 21. Label +// --------- + +$label-background: $primary-color; +$label-color: $white; +$label-color-alt: $black; +$label-palette: $foundation-palette; +$label-font-size: 0.8rem; +$label-padding: 0.33333rem 0.5rem; +$label-radius: $global-radius; + +// 22. Media Object +// ---------------- + +$mediaobject-margin-bottom: $global-margin; +$mediaobject-section-padding: $global-padding; +$mediaobject-image-width-stacked: 100%; + +// 23. Menu +// -------- + +$menu-margin: 0; +$menu-nested-margin: $global-menu-nested-margin; +$menu-items-padding: $global-menu-padding; +$menu-simple-margin: 1rem; +$menu-item-color-active: $white; +$menu-item-background-active: get-color(primary); +$menu-icon-spacing: 0.25rem; +$menu-item-background-hover: $light-gray; +$menu-state-back-compat: true; +$menu-centered-back-compat: true; +$menu-icons-back-compat: true; + +// 24. Meter +// --------- + +$meter-height: 1rem; +$meter-radius: $global-radius; +$meter-background: $medium-gray; +$meter-fill-good: $success-color; +$meter-fill-medium: $warning-color; +$meter-fill-bad: $alert-color; + +// 25. Off-canvas +// -------------- + +$offcanvas-sizes: ( + small: 250px, +); +$offcanvas-vertical-sizes: ( + small: 250px, +); +$offcanvas-background: $light-gray; +$offcanvas-shadow: 0 0 10px rgba($black, 0.7); +$offcanvas-inner-shadow-size: 20px; +$offcanvas-inner-shadow-color: rgba($black, 0.25); +$offcanvas-overlay-zindex: 11; +$offcanvas-push-zindex: 12; +$offcanvas-overlap-zindex: 13; +$offcanvas-reveal-zindex: 12; +$offcanvas-transition-length: 0.5s; +$offcanvas-transition-timing: ease; +$offcanvas-fixed-reveal: true; +$offcanvas-exit-background: rgba($white, 0.25); +$maincontent-class: 'off-canvas-content'; + +// 26. Orbit +// --------- + +$orbit-bullet-background: $medium-gray; +$orbit-bullet-background-active: $dark-gray; +$orbit-bullet-diameter: 1.2rem; +$orbit-bullet-margin: 0.1rem; +$orbit-bullet-margin-top: 0.8rem; +$orbit-bullet-margin-bottom: 0.8rem; +$orbit-caption-background: rgba($black, 0.5); +$orbit-caption-padding: 1rem; +$orbit-control-background-hover: rgba($black, 0.5); +$orbit-control-padding: 1rem; +$orbit-control-zindex: 10; + +// 27. Pagination +// -------------- + +$pagination-font-size: rem-calc(14); +$pagination-margin-bottom: $global-margin; +$pagination-item-color: $black; +$pagination-item-padding: rem-calc(3 10); +$pagination-item-spacing: rem-calc(1); +$pagination-radius: $global-radius; +$pagination-item-background-hover: $light-gray; +$pagination-item-background-current: $primary-color; +$pagination-item-color-current: $white; +$pagination-item-color-disabled: $medium-gray; +$pagination-ellipsis-color: $black; +$pagination-mobile-items: false; +$pagination-mobile-current-item: false; +$pagination-arrows: true; + +// 28. Progress Bar +// ---------------- + +$progress-height: 1rem; +$progress-background: $medium-gray; +$progress-margin-bottom: $global-margin; +$progress-meter-background: $primary-color; +$progress-radius: $global-radius; + +// 29. Prototype Arrow +// ------------------- + +$prototype-arrow-directions: ( + down, + up, + right, + left +); +$prototype-arrow-size: 0.4375rem; +$prototype-arrow-color: $black; + +// 30. Prototype Border-Box +// ------------------------ + +$prototype-border-box-breakpoints: $global-prototype-breakpoints; + +// 31. Prototype Border-None +// ------------------------- + +$prototype-border-none-breakpoints: $global-prototype-breakpoints; + +// 32. Prototype Bordered +// ---------------------- + +$prototype-bordered-breakpoints: $global-prototype-breakpoints; +$prototype-border-width: rem-calc(1); +$prototype-border-type: solid; +$prototype-border-color: $medium-gray; + +// 33. Prototype Display +// --------------------- + +$prototype-display-breakpoints: $global-prototype-breakpoints; +$prototype-display: ( + inline, + inline-block, + block, + table, + table-cell +); + +// 34. Prototype Font-Styling +// -------------------------- + +$prototype-font-breakpoints: $global-prototype-breakpoints; +$prototype-wide-letter-spacing: rem-calc(4); +$prototype-font-normal: $global-weight-normal; +$prototype-font-bold: $global-weight-bold; + +// 35. Prototype List-Style-Type +// ----------------------------- + +$prototype-list-breakpoints: $global-prototype-breakpoints; +$prototype-style-type-unordered: ( + disc, + circle, + square +); +$prototype-style-type-ordered: ( + decimal, + lower-alpha, + lower-latin, + lower-roman, + upper-alpha, + upper-latin, + upper-roman +); + +// 36. Prototype Overflow +// ---------------------- + +$prototype-overflow-breakpoints: $global-prototype-breakpoints; +$prototype-overflow: ( + visible, + hidden, + scroll +); + +// 37. Prototype Position +// ---------------------- + +$prototype-position-breakpoints: $global-prototype-breakpoints; +$prototype-position: ( + static, + relative, + absolute, + fixed +); +$prototype-position-z-index: 975; + +// 38. Prototype Rounded +// --------------------- + +$prototype-rounded-breakpoints: $global-prototype-breakpoints; +$prototype-border-radius: rem-calc(3); + +// 39. Prototype Separator +// ----------------------- + +$prototype-separator-breakpoints: $global-prototype-breakpoints; +$prototype-separator-align: center; +$prototype-separator-height: rem-calc(2); +$prototype-separator-width: 3rem; +$prototype-separator-background: $primary-color; +$prototype-separator-margin-top: $global-margin; + +// 40. Prototype Shadow +// -------------------- + +$prototype-shadow-breakpoints: $global-prototype-breakpoints; +$prototype-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), + 0 2px 10px 0 rgba(0,0,0,.12); + +// 41. Prototype Sizing +// -------------------- + +$prototype-sizing-breakpoints: $global-prototype-breakpoints; +$prototype-sizing: ( + width, + height +); +$prototype-sizes: ( + 25: 25%, + 50: 50%, + 75: 75%, + 100: 100% +); + +// 42. Prototype Spacing +// --------------------- + +$prototype-spacing-breakpoints: $global-prototype-breakpoints; +$prototype-spacers-count: 3; + +// 43. Prototype Text-Decoration +// ----------------------------- + +$prototype-decoration-breakpoints: $global-prototype-breakpoints; +$prototype-text-decoration: ( + overline, + underline, + line-through, +); + +// 44. Prototype Text-Transformation +// --------------------------------- + +$prototype-transformation-breakpoints: $global-prototype-breakpoints; +$prototype-text-transformation: ( + lowercase, + uppercase, + capitalize +); + +// 45. Prototype Text-Utilities +// ---------------------------- + +$prototype-utilities-breakpoints: $global-prototype-breakpoints; +$prototype-text-overflow: ellipsis; + +// 46. Responsive Embed +// -------------------- + +$responsive-embed-margin-bottom: rem-calc(16); +$responsive-embed-ratios: ( + default: 4 by 3, + widescreen: 16 by 9, +); + +// 47. Reveal +// ---------- + +$reveal-background: $white; +$reveal-width: 600px; +$reveal-max-width: $global-width; +$reveal-padding: $global-padding; +$reveal-border: 1px solid $medium-gray; +$reveal-radius: $global-radius; +$reveal-zindex: 1005; +$reveal-overlay-background: rgba($black, 0.45); + +// 48. Slider +// ---------- + +$slider-width-vertical: 0.5rem; +$slider-transition: all 0.2s ease-in-out; +$slider-height: 0.5rem; +$slider-background: $light-gray; +$slider-fill-background: $medium-gray; +$slider-handle-height: 1.4rem; +$slider-handle-width: 1.4rem; +$slider-handle-background: $primary-color; +$slider-opacity-disabled: 0.25; +$slider-radius: $global-radius; + +// 49. Switch +// ---------- + +$switch-background: $medium-gray; +$switch-background-active: $primary-color; +$switch-height: 2rem; +$switch-height-tiny: 1.5rem; +$switch-height-small: 1.75rem; +$switch-height-large: 2.5rem; +$switch-radius: $global-radius; +$switch-margin: $global-margin; +$switch-paddle-background: $white; +$switch-paddle-offset: 0.25rem; +$switch-paddle-radius: $global-radius; +$switch-paddle-transition: all 0.25s ease-out; + +// 50. Table +// --------- + +$table-background: $white; +$table-color-scale: 5%; +$table-border: 1px solid smart-scale($table-background, $table-color-scale); +$table-padding: rem-calc(8 10 10); +$table-hover-scale: 2%; +$table-row-hover: darken($table-background, $table-hover-scale); +$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale); +$table-is-striped: true; +$table-striped-background: smart-scale($table-background, $table-color-scale); +$table-stripe: even; +$table-head-background: smart-scale($table-background, $table-color-scale / 2); +$table-head-row-hover: darken($table-head-background, $table-hover-scale); +$table-foot-background: smart-scale($table-background, $table-color-scale); +$table-foot-row-hover: darken($table-foot-background, $table-hover-scale); +$table-head-font-color: $body-font-color; +$table-foot-font-color: $body-font-color; +$show-header-for-stacked: false; +$table-stack-breakpoint: medium; + +// 51. Tabs +// -------- + +$tab-margin: 0; +$tab-background: $white; +$tab-color: $primary-color; +$tab-background-active: $light-gray; +$tab-active-color: $primary-color; +$tab-item-font-size: rem-calc(12); +$tab-item-background-hover: $white; +$tab-item-padding: 1.25rem 1.5rem; +$tab-expand-max: 6; +$tab-content-background: $white; +$tab-content-border: $light-gray; +$tab-content-color: $body-font-color; +$tab-content-padding: 1rem; + +// 52. Thumbnail +// ------------- + +$thumbnail-border: solid 4px $white; +$thumbnail-margin-bottom: $global-margin; +$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2); +$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5); +$thumbnail-transition: box-shadow 200ms ease-out; +$thumbnail-radius: $global-radius; + +// 53. Title Bar +// ------------- + +$titlebar-background: $black; +$titlebar-color: $white; +$titlebar-padding: 0.5rem; +$titlebar-text-font-weight: bold; +$titlebar-icon-color: $white; +$titlebar-icon-color-hover: $medium-gray; +$titlebar-icon-spacing: 0.25rem; + +// 54. Tooltip +// ----------- + +$has-tip-cursor: help; +$has-tip-font-weight: $global-weight-bold; +$has-tip-border-bottom: dotted 1px $dark-gray; +$tooltip-background-color: $black; +$tooltip-color: $white; +$tooltip-padding: 0.75rem; +$tooltip-max-width: 10rem; +$tooltip-font-size: $small-font-size; +$tooltip-pip-width: 0.75rem; +$tooltip-pip-height: $tooltip-pip-width * 0.866; +$tooltip-radius: $global-radius; + +// 55. Top Bar +// ----------- + +$topbar-padding: 0.5rem; +$topbar-background: $light-gray; +$topbar-submenu-background: $topbar-background; +$topbar-title-spacing: 0.5rem 1rem 0.5rem 0; +$topbar-input-width: 200px; +$topbar-unstack-breakpoint: medium; + +// 56. Xy Grid +// ----------- + +$xy-grid: true; +$grid-container: $global-width; +$grid-columns: 12; +$grid-margin-gutters: ( + small: 20px, + medium: 30px +); +$grid-padding-gutters: $grid-margin-gutters; +$grid-container-padding: $grid-padding-gutters; +$grid-container-max: $global-width; +$xy-block-grid-max: 8; + diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..3a3841832 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,19 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's + * vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + *= require normalize-rails + + * + *= require_tree . + *= require_self + *= require foundation_and_overrides + + */ diff --git a/app/assets/stylesheets/browserslist b/app/assets/stylesheets/browserslist new file mode 100644 index 000000000..6019618a9 --- /dev/null +++ b/app/assets/stylesheets/browserslist @@ -0,0 +1,4 @@ +last 2 versions +ie >= 9 +Android >= 2.3 +ios >= 7 diff --git a/app/assets/stylesheets/foundation_and_overrides.scss b/app/assets/stylesheets/foundation_and_overrides.scss new file mode 100644 index 000000000..ed4c5a0ec --- /dev/null +++ b/app/assets/stylesheets/foundation_and_overrides.scss @@ -0,0 +1,61 @@ +@charset 'utf-8'; + +@import 'settings'; +@import 'foundation'; + +// If you'd like to include motion-ui the foundation-rails gem comes prepackaged with it, uncomment the 3 @imports, if you are not using the gem you need to install the motion-ui sass package. +// +// @import 'motion-ui/motion-ui'; + +// We include everything by default. To slim your CSS, remove components you don't use. + +@include foundation-global-styles; +@include foundation-xy-grid-classes; +//@include foundation-grid; +//@include foundation-flex-grid; +@include foundation-flex-classes; +@include foundation-typography; +@include foundation-forms; +@include foundation-button; +@include foundation-accordion; +@include foundation-accordion-menu; +@include foundation-badge; +@include foundation-breadcrumbs; +@include foundation-button-group; +@include foundation-callout; +@include foundation-card; +@include foundation-close-button; +@include foundation-menu; +@include foundation-menu-icon; +@include foundation-drilldown-menu; +@include foundation-dropdown; +@include foundation-dropdown-menu; +@include foundation-responsive-embed; +@include foundation-label; +@include foundation-media-object; +@include foundation-off-canvas; +@include foundation-orbit; +@include foundation-pagination; +@include foundation-progress-bar; +@include foundation-slider; +@include foundation-sticky; +@include foundation-reveal; +@include foundation-switch; +@include foundation-table; +@include foundation-tabs; +@include foundation-thumbnail; +@include foundation-title-bar; +@include foundation-tooltip; +@include foundation-top-bar; +@include foundation-visibility-classes; +@include foundation-float-classes; + +// If you'd like to include motion-ui the foundation-rails gem comes prepackaged with it, uncomment the 3 @imports, if you are not using the gem you need to install the motion-ui sass package. +// +// @include motion-ui-transitions; +// @include motion-ui-animations; +@import 'motion-ui/motion-ui'; +@include motion-ui-transitions; +@include motion-ui-animations; + + diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 000000000..d67269728 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 000000000..0ff5442f4 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..09705d12a --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,2 @@ +class ApplicationController < ActionController::Base +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 000000000..a009ace51 --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,2 @@ +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 000000000..286b2239d --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 000000000..10a4cba84 --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..cd6000489 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,19 @@ + + + + + + + <%= content_for?(:title) ? yield(:title) : "Untitled" %> + + <%= stylesheet_link_tag "application" %> + <%= javascript_include_tag "application", 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + + + <%= yield %> + + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 000000000..cbd34d2e9 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 000000000..37f0bddbd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..f19acf5b5 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..5badb2fde --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..94fd4d797 --- /dev/null +++ b/bin/setup @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..fb2ec2ebb --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == "spring" } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 000000000..58bfaed51 --- /dev/null +++ b/bin/update @@ -0,0 +1,31 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/yarn b/bin/yarn new file mode 100755 index 000000000..460dd565b --- /dev/null +++ b/bin/yarn @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +APP_ROOT = File.expand_path('..', __dir__) +Dir.chdir(APP_ROOT) do + begin + exec "yarnpkg", *ARGV + rescue Errno::ENOENT + $stderr.puts "Yarn executable was not detected in the system." + $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" + exit 1 + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..f7ba0b527 --- /dev/null +++ b/config.ru @@ -0,0 +1,5 @@ +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..b64f3b3da --- /dev/null +++ b/config/application.rb @@ -0,0 +1,26 @@ +require_relative 'boot' + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module ApiMuncher + class Application < Rails::Application + config.generators do |g| + # Force new test files to be generated in the minitest-spec style + g.test_framework :minitest, spec: true + + # Always use .js files, never .coffee + g.javascript_engine :js + end + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 5.2 + + # Settings in config/environments/* take precedence over those specified here. + # Application configuration can go into files in config/initializers + # -- all .rb files in that directory are automatically loaded after loading + # the framework and any gems in your application. + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..b9e460cef --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,4 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. +require 'bootsnap/setup' # Speed up boot time by caching expensive operations. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 000000000..cf3ce7efa --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,10 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> + channel_prefix: api-muncher_production diff --git a/config/credentials.yml.enc b/config/credentials.yml.enc new file mode 100644 index 000000000..e0eeced95 --- /dev/null +++ b/config/credentials.yml.enc @@ -0,0 +1 @@ +etWhgguR3B28fl5JRUPowcpISiBC+nXIyfTo+bkM7gga6qTN0kk0xo3toSYrScnt0xc7nTHe8Ue49vwcbz4QqYFpvSSnzR8+BW6xEe6D2WdS8IPMBxM76+r4fnbGthnSzgbzVWCvXioFCt+EhFjDG+itjopow/bGkl/wUUMZBrfdDxCgACjL7zl0U9HFgtyPbM5FJOBoeShaAZ5wW+/xo0zUqfYrZKOR26/Ixxf+pInE8PXKmadlPfBjuJF9WGY8kFvJbKS528617nyERHw30VnngoHp47b7jzGH/CA7vjyCsnjR+iDZn+YKPVXyADRENlDEUNMp23EA24or+wYb6jDHyK4eScBTPchE6cS29XjpYCF6OXoNyToOCcqhoj8bOxiA5ugAGMit775/bnZf/FzcF88BT70XxQWX--tkocQ/6oh4G1K3hS--THhxu2JOxK/Xisjw9aDRxw== \ No newline at end of file diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..4cb63a555 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,85 @@ +# PostgreSQL. Versions 9.1 and up are supported. +# +# Install the pg driver: +# gem install pg +# On OS X with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On OS X with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem 'pg' +# +default: &default + adapter: postgresql + encoding: unicode + # For details on connection pooling, see Rails configuration guide + # http://guides.rubyonrails.org/configuring.html#database-pooling + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +development: + <<: *default + database: api-muncher_development + + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user that initialized the database. + #username: api-muncher + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: api-muncher_test + +# As with config/secrets.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password as a unix environment variable when you boot +# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full rundown on how to provide these environment variables in a +# production deployment. +# +# On Heroku and other platform providers, you may have a full connection URL +# available as an environment variable. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# You can use this database configuration with: +# +# production: +# url: <%= ENV['DATABASE_URL'] %> +# +production: + <<: *default + database: api-muncher_production + username: api-muncher + password: <%= ENV['API-MUNCHER_DATABASE_PASSWORD'] %> diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..426333bb4 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..1311e3e4e --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,61 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + # Run rails dev:cache to toggle caching. + if Rails.root.join('tmp', 'caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{2.days.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..1d8a23cbf --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,94 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] + # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). + # config.require_master_key = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Mount Action Cable outside main process or domain + # config.action_cable.mount_path = nil + # config.action_cable.url = 'wss://example.com/cable' + # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "api-muncher_#{Rails.env}" + + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..0a38fd3ce --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,46 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{1.hour.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Store uploaded files on the local file system in a temporary directory + config.active_storage.service = :test + + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 000000000..89d2efab2 --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# ActiveSupport::Reloader.to_prepare do +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) +# end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..4b828e80c --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path +# Add Yarn node_modules folder to the asset load path. +Rails.application.config.assets.paths << Rails.root.join('node_modules') + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in the app/assets +# folder are already added. +# Rails.application.config.assets.precompile += %w( admin.js admin.css ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb new file mode 100644 index 000000000..d3bcaa5ec --- /dev/null +++ b/config/initializers/content_security_policy.rb @@ -0,0 +1,25 @@ +# Be sure to restart your server when you modify this file. + +# Define an application-wide content security policy +# For further information see the following documentation +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy + +# Rails.application.config.content_security_policy do |policy| +# policy.default_src :self, :https +# policy.font_src :self, :https, :data +# policy.img_src :self, :https, :data +# policy.object_src :none +# policy.script_src :self, :https +# policy.style_src :self, :https + +# # Specify URI for violation reports +# # policy.report_uri "/csp-violation-report-endpoint" +# end + +# If you are using UJS then enable automatic nonce generation +# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) } + +# Report CSP violations to a specified URI +# For further information see the following documentation: +# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only +# Rails.application.config.content_security_policy_report_only = true diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..5a6a32d37 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..bbfc3961b --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..decc5a857 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# 'true': 'foo' +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 000000000..a5eccf816 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,34 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. +# +# preload_app! + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..787824f88 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,3 @@ +Rails.application.routes.draw do + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html +end diff --git a/config/spring.rb b/config/spring.rb new file mode 100644 index 000000000..9fa7863f9 --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,6 @@ +%w[ + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +].each { |path| Spring.watch(path) } diff --git a/config/storage.yml b/config/storage.yml new file mode 100644 index 000000000..d32f76e8f --- /dev/null +++ b/config/storage.yml @@ -0,0 +1,34 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %> + +# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) +# amazon: +# service: S3 +# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> +# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> +# region: us-east-1 +# bucket: your_own_bucket + +# Remember not to checkin your GCS keyfile to a repository +# google: +# service: GCS +# project: your_project +# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> +# bucket: your_own_bucket + +# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) +# microsoft: +# service: AzureStorage +# storage_account_name: your_account_name +# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> +# container: your_container_name + +# mirror: +# service: Mirror +# primary: local +# mirrors: [ amazon, google, microsoft ] diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..1beea2acc --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/package.json b/package.json new file mode 100644 index 000000000..5da55eadc --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "name": "api-muncher", + "private": true, + "dependencies": {} +} diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..2be3af26f --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 000000000..c08eac0d1 --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 000000000..78a030af2 --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..37b576a4a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb new file mode 100644 index 000000000..d19212abd --- /dev/null +++ b/test/application_system_test_case.rb @@ -0,0 +1,5 @@ +require "test_helper" + +class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + driven_by :selenium, using: :chrome, screen_size: [1400, 1400] +end diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/system/.keep b/test/system/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..10594a324 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,26 @@ +ENV["RAILS_ENV"] = "test" +require File.expand_path("../../config/environment", __FILE__) +require "rails/test_help" +require "minitest/rails" +require "minitest/reporters" # for Colorized output + +# For colorful output! +Minitest::Reporters.use!( + Minitest::Reporters::SpecReporter.new, + ENV, + Minitest.backtrace_filter +) + + +# To add Capybara feature tests add `gem "minitest-rails-capybara"` +# to the test group in the Gemfile and uncomment the following: +# require "minitest/rails/capybara" + +# Uncomment for awesome colorful output +# require "minitest/pride" + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + # Add more helper methods to be used by all tests here... +end diff --git a/tmp/.keep b/tmp/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/.keep b/vendor/.keep new file mode 100644 index 000000000..e69de29bb From 1fb6a354053503735fc2c554adbc0a5403b228a7 Mon Sep 17 00:00:00 2001 From: Jackie Date: Wed, 2 May 2018 11:22:53 -0700 Subject: [PATCH 02/21] Added files to git ignore file --- .gitignore | 2 ++ Gemfile | 1 - Gemfile.lock | 3 --- app/assets/javascripts/recipes.js | 2 ++ app/assets/stylesheets/recipes.scss | 3 +++ app/controllers/recipes_controller.rb | 17 +++++++++++++++ app/helpers/recipes_helper.rb | 2 ++ app/views/recipes/create.html.erb | 2 ++ app/views/recipes/home.html.erb | 5 +++++ app/views/recipes/index.html.erb | 2 ++ app/views/recipes/new.html.erb | 2 ++ app/views/recipes/show.html.erb | 2 ++ config/routes.rb | 5 +++++ test/controllers/recipes_controller_test.rb | 24 +++++++++++++++++++++ 14 files changed, 68 insertions(+), 4 deletions(-) create mode 100644 app/assets/javascripts/recipes.js create mode 100644 app/assets/stylesheets/recipes.scss create mode 100644 app/controllers/recipes_controller.rb create mode 100644 app/helpers/recipes_helper.rb create mode 100644 app/views/recipes/create.html.erb create mode 100644 app/views/recipes/home.html.erb create mode 100644 app/views/recipes/index.html.erb create mode 100644 app/views/recipes/new.html.erb create mode 100644 app/views/recipes/show.html.erb create mode 100644 test/controllers/recipes_controller_test.rb diff --git a/.gitignore b/.gitignore index f40baa451..882594a47 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,5 @@ # Ignore application configuration /config/application.yml + +.env diff --git a/Gemfile b/Gemfile index 2f79e074e..c0b3aaec1 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.5.0' gem 'httparty' -gem 'figaro' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 5.2.0' diff --git a/Gemfile.lock b/Gemfile.lock index f81a22b82..c1d5e64e1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -86,8 +86,6 @@ GEM erubi (1.7.1) execjs (2.7.0) ffi (1.9.23) - figaro (1.1.1) - thor (~> 0.14) foundation-rails (6.4.3.0) railties (>= 3.1.0) sass (>= 3.3.0, < 3.5) @@ -240,7 +238,6 @@ DEPENDENCIES capybara (>= 2.15, < 4.0) chromedriver-helper dotenv-rails - figaro foundation-rails httparty jbuilder (~> 2.5) diff --git a/app/assets/javascripts/recipes.js b/app/assets/javascripts/recipes.js new file mode 100644 index 000000000..dee720fac --- /dev/null +++ b/app/assets/javascripts/recipes.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/stylesheets/recipes.scss b/app/assets/stylesheets/recipes.scss new file mode 100644 index 000000000..1e10ffa50 --- /dev/null +++ b/app/assets/stylesheets/recipes.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the recipes controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb new file mode 100644 index 000000000..c821c401e --- /dev/null +++ b/app/controllers/recipes_controller.rb @@ -0,0 +1,17 @@ +class RecipesController < ApplicationController + + def home + end + + def index + end + + def new + end + + def create + end + + def show + end +end diff --git a/app/helpers/recipes_helper.rb b/app/helpers/recipes_helper.rb new file mode 100644 index 000000000..f526316e2 --- /dev/null +++ b/app/helpers/recipes_helper.rb @@ -0,0 +1,2 @@ +module RecipesHelper +end diff --git a/app/views/recipes/create.html.erb b/app/views/recipes/create.html.erb new file mode 100644 index 000000000..c3982a70a --- /dev/null +++ b/app/views/recipes/create.html.erb @@ -0,0 +1,2 @@ +

Recipes#create

+

Find me in app/views/recipes/create.html.erb

diff --git a/app/views/recipes/home.html.erb b/app/views/recipes/home.html.erb new file mode 100644 index 000000000..1ff852f74 --- /dev/null +++ b/app/views/recipes/home.html.erb @@ -0,0 +1,5 @@ +

Muncher

+ +
+

Search

+
diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb new file mode 100644 index 000000000..a55bf9993 --- /dev/null +++ b/app/views/recipes/index.html.erb @@ -0,0 +1,2 @@ +

Recipes#index

+

Find me in app/views/recipes/index.html.erb

diff --git a/app/views/recipes/new.html.erb b/app/views/recipes/new.html.erb new file mode 100644 index 000000000..4590c48fc --- /dev/null +++ b/app/views/recipes/new.html.erb @@ -0,0 +1,2 @@ +

Recipes#new

+

Find me in app/views/recipes/new.html.erb

diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb new file mode 100644 index 000000000..3c5ef29cd --- /dev/null +++ b/app/views/recipes/show.html.erb @@ -0,0 +1,2 @@ +

Recipes#show

+

Find me in app/views/recipes/show.html.erb

diff --git a/config/routes.rb b/config/routes.rb index 787824f88..809cdeacd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,3 +1,8 @@ Rails.application.routes.draw do + root 'recipes#home' + get 'recipes/index' + get 'recipes/new' + get 'recipes/create' + get 'recipes/show' # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end diff --git a/test/controllers/recipes_controller_test.rb b/test/controllers/recipes_controller_test.rb new file mode 100644 index 000000000..d1ce4e739 --- /dev/null +++ b/test/controllers/recipes_controller_test.rb @@ -0,0 +1,24 @@ +require "test_helper" + +describe RecipesController do + it "should get index" do + get recipes_index_url + value(response).must_be :success? + end + + it "should get new" do + get recipes_new_url + value(response).must_be :success? + end + + it "should get create" do + get recipes_create_url + value(response).must_be :success? + end + + it "should get show" do + get recipes_show_url + value(response).must_be :success? + end + +end From f65be01552f0622abfd258ffda6f9db21daf8b15 Mon Sep 17 00:00:00 2001 From: Jackie Date: Wed, 2 May 2018 15:54:07 -0700 Subject: [PATCH 03/21] Created form for search, updated recipes controller, updated index and show --- app/controllers/recipes_controller.rb | 4 +++ app/views/recipes/home.html.erb | 8 +++-- app/views/recipes/index.html.erb | 15 ++++++++-- app/views/recipes/show.html.erb | 43 +++++++++++++++++++++++++-- config/application.rb | 2 ++ config/routes.rb | 10 ++++--- lib/edamam_api_wrapper.rb | 29 ++++++++++++++++++ lib/recipe.rb | 13 ++++++++ 8 files changed, 113 insertions(+), 11 deletions(-) create mode 100644 lib/edamam_api_wrapper.rb create mode 100644 lib/recipe.rb diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb index c821c401e..ea4b36454 100644 --- a/app/controllers/recipes_controller.rb +++ b/app/controllers/recipes_controller.rb @@ -4,6 +4,8 @@ def home end def index + @query = params[:search] + @recipes = EdamamApiWrapper.list_recipes(@query) end def new @@ -13,5 +15,7 @@ def create end def show + recipe_id = params[:id] + @recipe = EdamamApiWrapper.find_recipe(recipe_id) end end diff --git a/app/views/recipes/home.html.erb b/app/views/recipes/home.html.erb index 1ff852f74..21c1cd2d6 100644 --- a/app/views/recipes/home.html.erb +++ b/app/views/recipes/home.html.erb @@ -1,5 +1,7 @@

Muncher

-
-

Search

-
+<%= form_tag recipes_path, method: :get do %> + <%= label_tag(:search, "Search for Recipe") %> + <%= text_field_tag(:search) %> + <%= submit_tag("Search") %> +<% end %> diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index a55bf9993..64208aca6 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -1,2 +1,13 @@ -

Recipes#index

-

Find me in app/views/recipes/index.html.erb

+ +
+

Results for <%= @query %>

+ <% if @recipes %> +
    + <% @recipes.each do |recipe| %> +
  • + <%= link_to recipe.name, recipe_path(recipe.id) %> +
  • + <% end %> +
+ <% end %> +
diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 3c5ef29cd..07bed2a97 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -1,2 +1,41 @@ -

Recipes#show

-

Find me in app/views/recipes/show.html.erb

+

<%= @recipe.name %>

+

By: <%= @recipe.contributer %>

+ +
+ <%= image_tag @recipe.image %> + +
+ +
+

Ingredients

+
    + <% @recipe.ingredients.each do |ingredient| %> +
  • + <%= ingredient %> +
  • + <% end %> +
+
+ + +
+

Dietary Labels

+
    + <% @recipe.dietary_labels.each do |label| %> +
  • + <%= label %> +
  • + <% end %> +
+
+ +
+

Health Labels

+
    + <% @recipe.health_labels.each do |label| %> +
  • + <%= label %> +
  • + <% end %> +
+
diff --git a/config/application.rb b/config/application.rb index b64f3b3da..77e33f4cb 100644 --- a/config/application.rb +++ b/config/application.rb @@ -22,5 +22,7 @@ class Application < Rails::Application # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. + config.autoload_paths << Rails.root.join('lib') + end end diff --git a/config/routes.rb b/config/routes.rb index 809cdeacd..b7125b81b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,8 +1,10 @@ Rails.application.routes.draw do root 'recipes#home' - get 'recipes/index' - get 'recipes/new' - get 'recipes/create' - get 'recipes/show' + # get 'recipes/index' + # get 'recipes/new' + # get 'recipes/create' + # get 'recipes/show' + resources :recipes, only: [:index, :show] + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end diff --git a/lib/edamam_api_wrapper.rb b/lib/edamam_api_wrapper.rb new file mode 100644 index 000000000..f1a931525 --- /dev/null +++ b/lib/edamam_api_wrapper.rb @@ -0,0 +1,29 @@ +require 'httparty' + +class EdamamApiWrapper + URL = "https://api.edamam.com/search" + APP_ID = ENV["EDAMAM_ID"] + APP_KEY = ENV["EDAMAM_KEY"] + + @recipe_list = [] + + def self.list_recipes(search) + if !@recipe_list.empty? + @recipe_list = [] + end + + response = HTTParty.get("#{URL}?q=#{search}&app_id=#{APP_ID}&app_key=#{APP_KEY}") + + + if response["hits"] + response["hits"].each do |recipe| + @recipe_list << Recipe.new(recipe["recipe"]) + end + end + return @recipe_list + end + + def self.find_recipe(id) + @recipe_list.find {|recipe| recipe.id == id } + end +end diff --git a/lib/recipe.rb b/lib/recipe.rb new file mode 100644 index 000000000..515e68049 --- /dev/null +++ b/lib/recipe.rb @@ -0,0 +1,13 @@ +class Recipe + attr_reader :name, :id, :image, :contributer, :ingredients, :dietary_labels, :health_labels + + def initialize(recipe) + @id = recipe["uri"].partition('_').last + @name = recipe["label"] + @image = recipe["image"] + @contributer = recipe["source"] + @ingredients = recipe["ingredientLines"] + @dietary_labels = recipe["dietLabels"] + @health_labels = recipe["healthLabels"] + end +end From 08e995b6f359e2a55f591811df2cd1d39648cd3a Mon Sep 17 00:00:00 2001 From: Jackie Date: Wed, 2 May 2018 16:58:01 -0700 Subject: [PATCH 04/21] Updated show controller --- app/controllers/application_controller.rb | 5 +++++ app/controllers/recipes_controller.rb | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 09705d12a..b29444a5b 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,2 +1,7 @@ class ApplicationController < ActionController::Base + + def render_404 + render file: "/public/404.html", status: :not_found, :layout => false + end + end diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb index ea4b36454..fc0e5ff62 100644 --- a/app/controllers/recipes_controller.rb +++ b/app/controllers/recipes_controller.rb @@ -16,6 +16,12 @@ def create def show recipe_id = params[:id] - @recipe = EdamamApiWrapper.find_recipe(recipe_id) + recipe = EdamamApiWrapper.find_recipe(recipe_id) + if recipe.nil? + flash[:alert] = "Recipe does not exist" + redirect_back(fallback_location: root_path) + else + @recipe = recipe + end end end From 9f84a0cc3ced706d0ef01e2d32fb1411b49d76a3 Mon Sep 17 00:00:00 2001 From: Jackie Date: Thu, 3 May 2018 10:17:51 -0700 Subject: [PATCH 05/21] Added VCR to gemfile and test helper, added lib test recipe.rb --- Gemfile | 3 +++ Gemfile.lock | 17 +++++++++++++++++ db/schema.rb | 18 ++++++++++++++++++ test/lib/recipe_test.rb | 19 +++++++++++++++++++ test/test_helper.rb | 22 ++++++++++++++++++++++ 5 files changed, 79 insertions(+) create mode 100644 db/schema.rb create mode 100644 test/lib/recipe_test.rb diff --git a/Gemfile b/Gemfile index c0b3aaec1..1986c02a7 100644 --- a/Gemfile +++ b/Gemfile @@ -41,6 +41,8 @@ group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] gem 'dotenv-rails' + gem 'minitest-vcr' + gem 'webmock' end group :development do @@ -74,6 +76,7 @@ end group :development do gem 'better_errors' gem 'binding_of_caller' + gem 'dotenv-rails' end group :test do diff --git a/Gemfile.lock b/Gemfile.lock index c1d5e64e1..79c219caa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -77,6 +77,8 @@ GEM nokogiri (~> 1.8) coderay (1.1.2) concurrent-ruby (1.0.5) + crack (0.4.3) + safe_yaml (~> 1.0.0) crass (1.0.4) debug_inspector (0.0.3) dotenv (2.4.0) @@ -92,6 +94,7 @@ GEM sprockets-es6 (>= 0.9.0) globalid (0.4.1) activesupport (>= 4.2.0) + hashdiff (0.3.7) httparty (0.16.2) multi_xml (>= 0.5.2) i18n (1.0.1) @@ -122,6 +125,8 @@ GEM mimemagic (0.3.2) mini_mime (1.0.0) mini_portile2 (2.3.0) + minispec-metadata (2.0.0) + minitest minitest (5.11.3) minitest-rails (3.0.0) minitest (~> 5.8) @@ -131,6 +136,10 @@ GEM builder minitest (>= 5.0) ruby-progressbar + minitest-vcr (1.4.0) + minispec-metadata (~> 2.0) + minitest (>= 4.7.5) + vcr (>= 2.9) msgpack (1.2.4) multi_json (1.13.1) multi_xml (0.6.0) @@ -180,6 +189,7 @@ GEM ruby-progressbar (1.9.0) ruby_dep (1.5.0) rubyzip (1.2.1) + safe_yaml (1.0.4) sass (3.4.25) sass-rails (5.0.7) railties (>= 4.0.0, < 6) @@ -216,11 +226,16 @@ GEM thread_safe (~> 0.1) uglifier (4.1.10) execjs (>= 0.3.0, < 3) + vcr (4.0.0) web-console (3.6.2) actionview (>= 5.0) activemodel (>= 5.0) bindex (>= 0.4.0) railties (>= 5.0) + webmock (3.4.1) + addressable (>= 2.3.6) + crack (>= 0.3.2) + hashdiff websocket-driver (0.7.0) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.3) @@ -246,6 +261,7 @@ DEPENDENCIES listen (>= 3.0.5, < 3.2) minitest-rails minitest-reporters + minitest-vcr normalize-rails pg (>= 0.18, < 2.0) pry-rails @@ -259,6 +275,7 @@ DEPENDENCIES tzinfo-data uglifier (>= 1.3.0) web-console (>= 3.3.0) + webmock RUBY VERSION ruby 2.5.0p0 diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..2611543b3 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,18 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 0) do + + # These are extensions that must be enabled in order to support this database + enable_extension "plpgsql" + +end diff --git a/test/lib/recipe_test.rb b/test/lib/recipe_test.rb new file mode 100644 index 000000000..fa91a8477 --- /dev/null +++ b/test/lib/recipe_test.rb @@ -0,0 +1,19 @@ +require 'test_helper' + +# downloads configuration and gems +# not using must respond to since we are not testing a controller + +describe Recipe do + + it "raises an error if it does not have 1 parameter (recipe hash)" do + proc { + Recipe.new + }.must_raise ArgumentError + end + + # it "Must initialize name & id properly" do + # channel = Channel.new("Name", "ID") + # channel.name.must_equal "Name" + # channel.id.must_equal "ID" + # end +end diff --git a/test/test_helper.rb b/test/test_helper.rb index 10594a324..7ace230b2 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -3,6 +3,8 @@ require "rails/test_help" require "minitest/rails" require "minitest/reporters" # for Colorized output +require 'vcr' +require 'webmock/minitest' # For colorful output! Minitest::Reporters.use!( @@ -11,6 +13,11 @@ Minitest.backtrace_filter ) +if ActionPack::VERSION::STRING >= "5.2.0" + Minitest::Rails::TestUnit = Rails::TestUnit +end + + # To add Capybara feature tests add `gem "minitest-rails-capybara"` # to the test group in the Gemfile and uncomment the following: @@ -19,6 +26,21 @@ # Uncomment for awesome colorful output # require "minitest/pride" + + +VCR.configure do |config| + config.cassette_library_dir = 'test/cassettes' # folder where casettes will be located + config.hook_into :webmock # tie into this other tool called webmock + config.default_cassette_options = { + :record => :new_episodes, # record new data when we don't have it yet + :match_requests_on => [:method, :uri, :body] # The http method, URI and body of a request all need to match + } + # Don't leave our Slack token lying around in a cassette file. + config.filter_sensitive_data("") do + ENV['SLACK_TOKEN'] + end +end + class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all From 295743db23588aa574a390bd488a5a0cdfd63f8f Mon Sep 17 00:00:00 2001 From: Jackie Date: Thu, 3 May 2018 13:25:31 -0700 Subject: [PATCH 06/21] Added tests --- lib/recipe.rb | 4 ++-- test/lib/recipe_test.rb | 44 ++++++++++++++++++++++++++++++++++++----- 2 files changed, 41 insertions(+), 7 deletions(-) diff --git a/lib/recipe.rb b/lib/recipe.rb index 515e68049..d6e36ac1a 100644 --- a/lib/recipe.rb +++ b/lib/recipe.rb @@ -1,11 +1,11 @@ class Recipe - attr_reader :name, :id, :image, :contributer, :ingredients, :dietary_labels, :health_labels + attr_reader :name, :id, :image, :contributor, :ingredients, :dietary_labels, :health_labels def initialize(recipe) @id = recipe["uri"].partition('_').last @name = recipe["label"] @image = recipe["image"] - @contributer = recipe["source"] + @contributor = recipe["source"] @ingredients = recipe["ingredientLines"] @dietary_labels = recipe["dietLabels"] @health_labels = recipe["healthLabels"] diff --git a/test/lib/recipe_test.rb b/test/lib/recipe_test.rb index fa91a8477..912b0fb98 100644 --- a/test/lib/recipe_test.rb +++ b/test/lib/recipe_test.rb @@ -5,15 +5,49 @@ describe Recipe do + before do + recipe = { + "uri" => "http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2", + "label" => "Teriyaki Chicken", + "image" => "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg", + "source" => "David Lebovitz", + "ingredientLines" => [ + "1/2 cup (125ml) mirin", + "1/2 cup (125ml) soy sauce" + ], + "dietLabels" => [ + "Low-Carb" + ], + "healthLabels" => [ + "Sugar-Conscious", + "Peanut-Free"] + } + + @new_recipe = Recipe.new(recipe) + end + it "raises an error if it does not have 1 parameter (recipe hash)" do proc { Recipe.new }.must_raise ArgumentError end - # it "Must initialize name & id properly" do - # channel = Channel.new("Name", "ID") - # channel.name.must_equal "Name" - # channel.id.must_equal "ID" - # end + it "Must initialize properly with a hash" do + @new_recipe.id.must_equal "7bf4a371c6884d809682a72808da7dc2" + end + + it "must initialize with name, image, contributor, ingredients, dietary label and health labels" do + @new_recipe.name.must_equal "Teriyaki Chicken" + @new_recipe.image.must_equal "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg" + @new_recipe.contributor.must_equal "David Lebovitz" + @new_recipe.ingredients.must_equal [ + "1/2 cup (125ml) mirin", + "1/2 cup (125ml) soy sauce" + ] + @new_recipe.dietary_labels.must_equal ["Low-Carb"] + @new_recipe.health_labels.must_equal [ + "Sugar-Conscious", + "Peanut-Free" + ] + end end From fd3788cc11899215661d04533301c64b176d5b5b Mon Sep 17 00:00:00 2001 From: Jackie Date: Thu, 3 May 2018 16:42:54 -0700 Subject: [PATCH 07/21] Added VCR and created first test for EdamamApiWrapper --- app/views/recipes/show.html.erb | 2 +- test/cassettes/recipes.yml | 47 +++++++++++++++++++++++++++++ test/lib/edamam_api_wrapper_test.rb | 30 ++++++++++++++++++ test/test_helper.rb | 8 +++-- 4 files changed, 83 insertions(+), 4 deletions(-) create mode 100644 test/cassettes/recipes.yml create mode 100644 test/lib/edamam_api_wrapper_test.rb diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 07bed2a97..8251338b8 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -1,5 +1,5 @@

<%= @recipe.name %>

-

By: <%= @recipe.contributer %>

+

By: <%= @recipe.contributor %>

<%= image_tag @recipe.image %> diff --git a/test/cassettes/recipes.yml b/test/cassettes/recipes.yml new file mode 100644 index 000000000..409fc76d5 --- /dev/null +++ b/test/cassettes/recipes.yml @@ -0,0 +1,47 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&q=chicken + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Thu, 03 May 2018 20:35:42 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: ASCII-8BIT + string: !binary |- + ewogICJxIiA6ICJjaGlja2VuIiwKICAiZnJvbSIgOiAwLAogICJ0byIgOiAxMCwKICAicGFyYW1zIiA6IHsKICAgICJzYW5lIiA6IFsgXSwKICAgICJxIiA6IFsgImNoaWNrZW4iIF0sCiAgICAiYXBwX2tleSIgOiBbICI8QVBQX0tFWT4iIF0sCiAgICAiYXBwX2lkIiA6IFsgIjxBUFBfSUQ+IiBdCiAgfSwKICAibW9yZSIgOiB0cnVlLAogICJjb3VudCIgOiAxOTEwNTgsCiAgImhpdHMiIDogWyB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfN2JmNGEzNzFjNjg4NGQ4MDk2ODJhNzI4MDhkYTdkYzIiLAogICAgICAibGFiZWwiIDogIlRlcml5YWtpIENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy8yNjIvMjYyYjQzNTNjYTI1MDc0MTc4ZWFkMmEwN2NkZjdkYzEuanBnIiwKICAgICAgInNvdXJjZSIgOiAiRGF2aWQgTGVib3ZpdHoiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmRhdmlkbGVib3ZpdHouY29tLzIwMTIvMTIvY2hpY2tlbi10ZXJpeWFraS1yZWNpcGUtamFwYW5lc2UtZmFybS1mb29kLyIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL3Rlcml5YWtpLWNoaWNrZW4tN2JmNGEzNzFjNjg4NGQ4MDk2ODJhNzI4MDhkYTdkYzIvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA2LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxLzIgY3VwICgxMjVtbCkgbWlyaW4iLCAiMS8yIGN1cCAoMTI1bWwpIHNveSBzYXVjZSIsICJPbmUgMi1pbmNoICg1Y20pIHBpZWNlIG9mIGZyZXNoIGdpbmdlciwgcGVlbGVkIGFuZCBncmF0ZWQiLCAiMi1wb3VuZHMgKDkwMGcpIGJvbmVsZXNzIGNoaWNrZW4gdGhpZ2hzICg0LTggdGhpZ2hzLCBkZXBlbmRpbmcgb24gc2l6ZSkiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCAoMTI1bWwpIG1pcmluIiwKICAgICAgICAid2VpZ2h0IiA6IDEyMi45OTg1MDc1Nzc5NTM5MgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgKDEyNW1sKSBzb3kgc2F1Y2UiLAogICAgICAgICJ3ZWlnaHQiIDogMTM0LjcyNzc0NjcwMjY1NTY4CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiT25lIDItaW5jaCAoNWNtKSBwaWVjZSBvZiBmcmVzaCBnaW5nZXIsIHBlZWxlZCBhbmQgZ3JhdGVkIiwKICAgICAgICAid2VpZ2h0IiA6IDE1LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyLXBvdW5kcyAoOTAwZykgYm9uZWxlc3MgY2hpY2tlbiB0aGlnaHMgKDQtOCB0aGlnaHMsIGRlcGVuZGluZyBvbiBzaXplKSIsCiAgICAgICAgIndlaWdodCIgOiA5MDcuMTg0NzQKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogMjI1My4xMDE5ODEzMDY4NjYsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAxMTc5LjkxMDk5NDI4MDYwOTcsCiAgICAgICJ0b3RhbFRpbWUiIDogMC4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjUzLjEwMTk4MTMwNjg2NiwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTUxLjU2MzgzMzQ3MDIwNTE3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQxLjE2OTgzODg5MjY5Mjk0NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzcxMTA3MDI5MDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjEwMDI4MTM3MzA5ODM1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzEuODI5NTI4OTA5NjI3OTksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuNzI1NDY1MTQxMzM4NjIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjM3NzgyMTk3MzYyMTI0NTYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43OTM5MTA5ODY4MTA2MjI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYxLjcyMTc1MDE2NzQ4NTk2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODg5LjA0MTA0NTIwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxMzkuODI0NzM1OTI4NDM2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE2LjUxMzAxMzU5MDc3NDA4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzYuODIxNjk2MjE0NjQyNDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUyOS43MjIxOTQ2NTEwNDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjMzNTQwNzA2Njc2NjQ2MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyLjk1MDQxNDI0MzgyODY5NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY2MC40MDgwMTE3ODEwODU5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMDguNjUyNDkwMjAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43MTA0NTUwMTY2MTE4NzY0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNTQyODE4NjU1MDU5MzgyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NS4wMjg0MTU1NDI1OTAzMjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy4zNzEzMjgxMTI5MTk5MzA0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ3LjcyNzQyNjczODM3MTgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuNzI3NDI2NzM4MzcxOCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNjI0NTQ1Mzg4MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45MDcxODQ3NDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuOTQ0MDg3OTU0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOS4wNjU4Nzk1NDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTIuNjU1MDk5MDY1MzQzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjMzLjE3NTEyODQxNTcwMDI3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwNS44NDkxOTQ0NjM0NjQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuOTA4NDg4MzgwNDQ2MjA3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS41MTEyODc4OTQ0ODQ5ODIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMjMuNDQzNTAwMzM0OTcxOTMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOTYuMzQ3MDE1MDY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMzkuMTU5MzYzOTk3MDE4MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTEuNjUxMzAxMzU5MDc3NDA4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDY5LjIwNTQyNDA1MzY2MDYxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzIuMjc3Nzc2OTkwMDI5NzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2LjMwNzgxNzAzNzU5MTQ1NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODYuMzM2MDk0OTU4ODU3OTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM3LjIwMTE0NDU0MDE1NTEzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjE4MzYxMDAyMjIyMjIyNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ny4zNjM2Njc3NzQxMjUxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTAuNzU0MDM4NTMyOTA0ODMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjI1LjE0MjA3NzcxMjk1MTYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjguNTY2NDA1NjQ1OTk2NTMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS45MzE4NTY2ODQ1OTI5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5My43NDI0MjMxMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjI2Nzk2MTg1MDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuNzIwNDM5NzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjMuODMyMzQ5NDI1MDAwMDA3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNTEuNTYzODMzNDcwMjA1MTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMzMuMTc1MTI4NDE1NzAwMjcsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA0MS4xNjk4Mzg4OTI2OTI5NDQsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMjA1Ljg0OTE5NDQ2MzQ2NDcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC43NzExMDcwMjkwMDAwMDAyLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA2My4xMDAyODEzNzMwOTgzNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzEuODI5NTI4OTA5NjI3OTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTcuNzI1NDY1MTQxMzM4NjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1LjkwODQ4ODM4MDQ0NjIwNywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTYuMzQ3NjQzMTY3NzE3Mzc2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4zNzc4MjE5NzM2MjEyNDU2LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDUuNTExMjg3ODk0NDg0OTgyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjc5MzkxMDk4NjgxMDYyMjgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE2MS43MjE3NTAxNjc0ODU5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMyMy40NDM1MDAzMzQ5NzE5MywKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA4ODkuMDQxMDQ1MjAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI5Ni4zNDcwMTUwNjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxMzkuODI0NzM1OTI4NDM2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzM5LjE1OTM2Mzk5NzAxODIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTYuNTEzMDEzNTkwNzc0MDgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMS42NTEzMDEzNTkwNzc0MDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI3Ni44MjE2OTYyMTQ2NDI0MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY5LjIwNTQyNDA1MzY2MDYxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI1MjkuNzIyMTk0NjUxMDQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzIuMjc3Nzc2OTkwMDI5NzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4LjMzNTQwNzA2Njc2NjQ2MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2LjMwNzgxNzAzNzU5MTQ1NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyLjk1MDQxNDI0MzgyODY5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDg2LjMzNjA5NDk1ODg1Nzk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNjYwLjQwODAxMTc4MTA4NTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMzcuMjAxMTQ0NTQwMTU1MTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIwOC42NTI0OTAyMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjE4MzYxMDAyMjIyMjIyNiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEuMjUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43MTA0NTUwMTY2MTE4NzY0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDcuMzYzNjY3Nzc0MTI1MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjU0MjgxODY1NTA1OTM4MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkwLjc1NDAzODUzMjkwNDgzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0NS4wMjg0MTU1NDI1OTAzMjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMjUuMTQyMDc3NzEyOTUxNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzLjM3MTMyODExMjkxOTkzMDQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNjguNTY2NDA1NjQ1OTk2NTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDcuNzI3NDI2NzM4MzcxOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExLjkzMTg1NjY4NDU5Mjk1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ3LjcyNzQyNjczODM3MTgsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICJ0YWciIDogIlZJVEIxMiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1LjYyNDU0NTM4ODAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5My43NDI0MjMxMzMzMzMzMywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC45MDcxODQ3NDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4yMjY3OTYxODUwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjk0NDA4Nzk1NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkuNzIwNDM5NzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE5LjA2NTg3OTU0MDAwMDAwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjgzMjM0OTQyNTAwMDAwNywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfYjc5MzI3ZDA1YjhlNWI4MzhhZDZjZmQ5NTc2YjMwYjYiLAogICAgICAibGFiZWwiIDogIkNoaWNrZW4gVmVzdXZpbyIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nL2U0Mi9lNDJmOTExOTgxM2U4OTBhZjM0YzI1OTc4NWFlMWNmYi5qcGciLAogICAgICAic291cmNlIiA6ICJTZXJpb3VzIEVhdHMiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LnNlcmlvdXNlYXRzLmNvbS9yZWNpcGVzLzIwMTEvMTIvY2hpY2tlbi12ZXN1dmlvLXJlY2lwZS5odG1sIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi12ZXN1dmlvLWI3OTMyN2QwNWI4ZTViODM4YWQ2Y2ZkOTU3NmIzMGI2L2NoaWNrZW4iLAogICAgICAieWllbGQiIDogNC4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJTdWdhci1Db25zY2lvdXMiLCAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxLzIgY3VwIG9saXZlIG9pbCIsICI1IGNsb3ZlcyBnYXJsaWMsIHBlZWxlZCIsICIyIGxhcmdlIHJ1c3NldCBwb3RhdG9lcywgcGVlbGVkIGFuZCBjdXQgaW50byBjaHVua3MiLCAiMSAzLTQgcG91bmQgY2hpY2tlbiwgY3V0IGludG8gOCBwaWVjZXMgKG9yIDMgcG91bmQgY2hpY2tlbiBsZWdzKSIsICIzLzQgY3VwIHdoaXRlIHdpbmUiLCAiMy80IGN1cCBjaGlja2VuIHN0b2NrIiwgIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwgIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwgIlNhbHQgYW5kIHBlcHBlciIsICIxIGN1cCBmcm96ZW4gcGVhcywgdGhhd2VkIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDEwOC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNSBjbG92ZXMgZ2FybGljLCBwZWVsZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTUuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgbGFyZ2UgcnVzc2V0IHBvdGF0b2VzLCBwZWVsZWQgYW5kIGN1dCBpbnRvIGNodW5rcyIsCiAgICAgICAgIndlaWdodCIgOiA3MzguMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgMy00IHBvdW5kIGNoaWNrZW4sIGN1dCBpbnRvIDggcGllY2VzIChvciAzIHBvdW5kIGNoaWNrZW4gbGVncykiLAogICAgICAgICJ3ZWlnaHQiIDogMTU4Ny41NzMyOTUwMDAwMDAxCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy80IGN1cCB3aGl0ZSB3aW5lIiwKICAgICAgICAid2VpZ2h0IiA6IDExMC4yNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMvNCBjdXAgY2hpY2tlbiBzdG9jayIsCiAgICAgICAgIndlaWdodCIgOiAxODAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwKICAgICAgICAid2VpZ2h0IiA6IDExLjM5OTk5OTk5OTk5OTk5OQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwKICAgICAgICAid2VpZ2h0IiA6IDYuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiAxNy4zNDEzMzk3NwogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiA4LjY3MDY2OTg4NQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgY3VwIGZyb3plbiBwZWFzLCB0aGF3ZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTM0LjAKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogNDE4MS4yNzQ1Mzg3MDEzNTEsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAyOTEzLjE1MzY2NDU5ODc3MiwKICAgICAgInRvdGFsVGltZSIgOiA2MC4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MTgxLjI3NDUzODcwMTM1MSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjc0LjU3MTEyOTgzMjYxMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Mi41NDE1MTE4NTQ2NTkyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wNDcxNjMzNDUzODIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQU1TIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDcuNDEwNjg2MzAzODkwMTIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ny4zODk2OTkxMzY4MzIzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3Ni4xODg2MTMzOTE0NTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuMDU4ODc5NDgwOTA1MDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjcyNTc5MjI4NzI2NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzMC45MzA5MDc5NTI2NTE1MiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjc0MS4zMTk5Mzc0NjA3NjksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NDEuMTA4Mzc3OTg3ODU1MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDc5LjMzNDQxMDYyMDQ4NzcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTkwNi40NjY2Nzc0ODI3NTMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMy40NTIyMDI2MjAyODg5NDcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOC4zNDAyMjM1ODMyMDUyNzIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyMjMuMzA0OTI0MTAwMywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjM3Ljg3MDUxNTUxNDk1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDMuNzk4Nzk3NDQ5NjAwMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS43MjgyNTA3Mjc4MzU4MDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuOTE3NDk2NTE0NTEzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ni45Njk3NjI0MTU5OTE1NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljg4NDA1MTA5MTQ2NTM0OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODIuNjg3NTA0MzE2NDUwMDMsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy4zNDY2MDQ1MDU4NiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi4xNTkwOTk2ODEyMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjE3NDUyNDQ4ODYwNDAwMywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzcxLjM5MTEzNDIxMDc0NTA3LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJ0b3RhbERhaWx5IiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjA5LjA2MzcyNjkzNTA2NzU2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjIuNDE3MTIyODE5NDAxNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTIuNzA3NTU5MjczMjk2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU4LjcyOTUzNzc5NzE1MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4NC4yMzU1MTc5MjM2MjAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2MS44NjE4MTU5MDUzMDMxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcxLjY4NzQ2MDE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4MC44ODgzMzA3Mjc1MzIwNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDQuMTEwODM3Nzk4Nzg1NTIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE5LjgzMzYwMjY1NTEyMTkyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4Ljc1NjE5MDc4NTIyMTUyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuMjkwMDE0NTU3MTYwODIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyMi4yNjgxNTcyMjEzNjg0OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTcuNjE0OTg5MTU3MTg1NzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzAuODc0NTAxNzIzODgzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzIuOTk3OTk1NzQ5MzMzMzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuMjE2NzE1MTg5MDUzMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTIuNzkzOTEyNjE4NDExNzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDM0Ljg0ODgxMjA3OTk1NzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNDQuMjAyNTU0NTczMjY3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcwLjY3MTg3NjA3OTExMjUxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU1Ljc3Njc0MTc2NDMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41Mzk3NzQ5MjAzMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDAuODcyNjIyNDQzMDIwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDY0LjIzODkxNzc2MzQzMTM1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNzQuNTcxMTI5ODMyNjExLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDIyLjQxNzEyMjgxOTQwMTUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA2Mi41NDE1MTE4NTQ2NTkyLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDMxMi43MDc1NTkyNzMyOTYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4wNDcxNjMzNDUzODIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE0Ny40MTA2ODYzMDM4OTAxMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDcuMzg5Njk5MTM2ODMyMywKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNzYuMTg4NjEzMzkxNDU3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU4LjcyOTUzNzc5NzE1MjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE1NS4xMjk3MzM5MTA1NTI1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMjEuMDU4ODc5NDgwOTA1MDAyLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDg0LjIzNTUxNzkyMzYyMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxNS43MjU3OTIyODcyNjQsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIzMC45MzA5MDc5NTI2NTE1MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2MS44NjE4MTU5MDUzMDMxLAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI3MS42ODc0NjAxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2NzQxLjMxOTkzNzQ2MDc2OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4MC44ODgzMzA3Mjc1MzIwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0MS4xMDgzNzc5ODc4NTUyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDQuMTEwODM3Nzk4Nzg1NTIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ3OS4zMzQ0MTA2MjA0ODc3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE5LjgzMzYwMjY1NTEyMTkyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDU5MDYuNDY2Njc3NDgyNzUzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTY4Ljc1NjE5MDc4NTIyMTUyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjMuNDUyMjAyNjIwMjg4OTQ3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMwLjI5MDAxNDU1NzE2MDgyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTguMzQwMjIzNTgzMjA1MjcyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTIyLjI2ODE1NzIyMTM2ODQ4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMjIzLjMwNDkyNDEwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMTcuNjE0OTg5MTU3MTg1NzMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDYzNy44NzA1MTU1MTQ5NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcwLjg3NDUwMTcyMzg4MzMzLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDMuNzk4Nzk3NDQ5NjAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzIuOTk3OTk1NzQ5MzMzMzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS43MjgyNTA3Mjc4MzU4MDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE1LjIxNjcxNTE4OTA1MzM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuOTE3NDk2NTE0NTEzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTEyLjc5MzkxMjYxODQxMTc3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4Ni45Njk3NjI0MTU5OTE1NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQzNC44NDg4MTIwNzk5NTc4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDYuODg0MDUxMDkxNDY1MzQ5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzQ0LjIwMjU1NDU3MzI2NzUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzAuNjcxODc2MDc5MTEyNTEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgInRhZyIgOiAiRk9MRkQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy4zNDY2MDQ1MDU4NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU1Ljc3Njc0MTc2NDMzMzMzLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjE1OTA5OTY4MTIwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAwLjUzOTc3NDkyMDMwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjAuMTc0NTI0NDg4NjA0MDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTAwLjg3MjYyMjQ0MzAyMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzNzEuMzkxMTM0MjEwNzQ1MDcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0NjQuMjM4OTE3NzYzNDMxMzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzBhM2Y0OWEzZGEwN2NkODM3OWQ0ZTM1ZjdhMWE3MmZjIiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFRlcml5YWtpIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvODI3LzgyNzVjYzMzZTlmMGY0MzE0NjE3ZDVhMzU2OTAwYWE3LmpwZyIsCiAgICAgICJzb3VyY2UiIDogIk5vIFJlY2lwZXMiLAogICAgICAidXJsIiA6ICJodHRwOi8vbm9yZWNpcGVzLmNvbS9ibG9nLzIwMDkvMDcvMTYvY2hpY2tlbi10ZXJpeWFraS1yZWNpcGUvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi10ZXJpeWFraS0wYTNmNDlhM2RhMDdjZDgzNzlkNGUzNWY3YTFhNzJmYy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDguMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMS8yIGN1cCB3YXRlciIsICIyIHRhYmxlc3Bvb25zIEphcGFuZXNlIHNveSBzYXVjZSIsICIyIHRhYmxlc3Bvb25zIGRhcmsgYnJvd24gc3VnYXIiLCAiMiB0YWJsZXNwb29ucyBtaXJpbiIsICI0LTYgc2tpbi1vbiBmaWxsZXRlZCAoYm9uZWxlc3MpIGNoaWNrZW4gdGhpZ2hzIiwgIjIgdGFibGVzcG9vbnMgbWlsZCBmbGF2b3JlZCBob25leSAob3IgbWFsdG9zZSkiLCAiMiB0YWJsZXNwb29ucyBkYXJrIHNveSBzYXVjZSIsICIyIHRhYmxlc3Bvb25zIHNha2UiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCB3YXRlciIsCiAgICAgICAgIndlaWdodCIgOiAxMTguNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgSmFwYW5lc2Ugc295IHNhdWNlIiwKICAgICAgICAid2VpZ2h0IiA6IDMyLjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIGRhcmsgYnJvd24gc3VnYXIiLAogICAgICAgICJ3ZWlnaHQiIDogMTguMTI1MDAwMDAwMDAwMDA0CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBtaXJpbiIsCiAgICAgICAgIndlaWdodCIgOiAyOS44CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNC02IHNraW4tb24gZmlsbGV0ZWQgKGJvbmVsZXNzKSBjaGlja2VuIHRoaWdocyIsCiAgICAgICAgIndlaWdodCIgOiA3NDUuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgbWlsZCBmbGF2b3JlZCBob25leSAob3IgbWFsdG9zZSkiLAogICAgICAgICJ3ZWlnaHQiIDogNDIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgZGFyayBzb3kgc2F1Y2UiLAogICAgICAgICJ3ZWlnaHQiIDogMzIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgc2FrZSIsCiAgICAgICAgIndlaWdodCIgOiAyOS4xCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDE5NTUuODUxLAogICAgICAidG90YWxXZWlnaHQiIDogMTA0Ni41MjQ5OTk5OTk5OTk5LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTk1NS44NTEsCiAgICAgICAgICAidW5pdCIgOiAia2NhbCIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNC4xMDkzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzLjc1MDUxOTk5OTk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNjMzMjUwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUxLjc1OTMyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuOTk3NDcwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYwLjM0OTUxMjUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjU5NjAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTIuMzMxMjc1MDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIuYWRkZWQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4wNzUyNzUwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjguNzI1ODUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MzAuMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDEzMS42NDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5Ny4zMzM3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTg4LjY1MDI1MDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4NTguODcxMjUwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzU3OTg3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjI4ODc2NzQ5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI4MS44MjkwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuMzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NjQ5NywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjIwMTgwOTk5OTk5OTk5OTgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjkzMjQ0NzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi42OTczODEyNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMi4zMzEyNTAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMzMxMjUwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC42MTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzQ1MDAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjU2NDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjY0NTAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3Ljc5MjU1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTAuOTM3Mzg0NjE1Mzg0NjIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4Ljc1MjU5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjExNjUwNDE2NjY2NjY2NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMzg0MDAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI1Ny40NTE3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQzLjM2NjY2NjY2NjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3Mi4xNTE3OTE2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOS43MzMzNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuMTYyNTYyNTAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1My4xMTA2MDcxNDI4NTcxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUuMzIyMTUyNzc3Nzc3NzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY4LjU5MTc4MzMzMzMzMzMyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4My4xMTg0Mjg1NzE0Mjg2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5LjAzODg4ODg4ODg4ODg4OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy42NjQ2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcwLjY5NDcwNTg4MjM1MjkzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3OS42NjIyMzc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTM0Ljg2OTA2MjQ5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4wODI4MTI1MDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuOTgzMzMzMzMzMzMzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjE4NjI1MDAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjgyMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuNTU2MjUwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjQuMTA5MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE5MC45MzczODQ2MTUzODQ2MiwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDMzLjc1MDUxOTk5OTk5OTk5NSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxNjguNzUyNTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC42MzMyNTAwMDAwMDAwMDAxLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA1MS43NTkzMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjUuOTk3NDcwMDAwMDAwMDAzLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDYwLjM0OTUxMjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC4xMTY1MDQxNjY2NjY2NjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU5Ljc1MzUxMjUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjU5NjAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMi4zODQwMDAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA1Mi4zMzEyNzUwMDAwMDAwMDUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNTIuMDc1Mjc1MDAwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDEyOC43MjU4NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1Ny40NTE3LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDczMC4xLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjQzLjM2NjY2NjY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDQxMzEuNjQzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcyLjE1MTc5MTY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOTcuMzMzNzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5LjczMzM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTg4LjY1MDI1MDAwMDAwMDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDcuMTYyNTYyNTAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTg1OC44NzEyNTAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTMuMTEwNjA3MTQyODU3MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjM1Nzk4NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNS4zMjIxNTI3Nzc3Nzc3OCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEwLjI4ODc2NzQ5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY4LjU5MTc4MzMzMzMzMzMyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMjgxLjgyOTAwMDAwMDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxODMuMTE4NDI4NTcxNDI4NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTcxLjM1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuMDM4ODg4ODg4ODg4ODg4LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjIxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4zNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjU2NDk3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuNjY0NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4yMDE4MDk5OTk5OTk5OTk4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzAuNjk0NzA1ODgyMzUyOTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDM1LjkzMjQ0NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzkuNjYyMjM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjY5NzM4MTI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTM0Ljg2OTA2MjQ5OTk5OTk4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjMzMTI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguMDgyODEyNTAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjMzMTI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuNjE5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzYuOTgzMzMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNzQ1MDAwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMTg2MjUwMDAwMDAwMDAwMDMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS41NjQ1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNy44MjI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNS42NDUwMDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxOS41NTYyNTAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzg4OGU5ZmM0YTgwOGU5ZTRjY2RiMmFjMjRhNmEyZjQ2IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFRlcml5YWtpIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvNTUxLzU1MWI5MDZiYWZkNGM0NWQ1MDAzMzc0MmVhZjAwYzAyLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIlNhdmV1ciIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly93d3cuc2F2ZXVyLmNvbS9hcnRpY2xlL1JlY2lwZXMvQ2hpY2tlbi1UZXJpeWFraSIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2NoaWNrZW4tdGVyaXlha2ktODg4ZTlmYzRhODA4ZTllNGNjZGIyYWMyNGE2YTJmNDYvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiAyLjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjEgdGJzcC4gdmVnZXRhYmxlIG9pbCIsICI0IHBpZWNlcyBjaGlja2VuLCB0cmltbWVkLCBza2luIHBpZXJjZWQgd2l0aCBhIGZvcmsiLCAiwr0gY3VwIFRlcml5YWtpIFNhdWNlIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEgdGJzcC4gdmVnZXRhYmxlIG9pbCIsCiAgICAgICAgIndlaWdodCIgOiAxNC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNCBwaWVjZXMgY2hpY2tlbiwgdHJpbW1lZCwgc2tpbiBwaWVyY2VkIHdpdGggYSBmb3JrIiwKICAgICAgICAid2VpZ2h0IiA6IDM1Ny42CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiwr0gY3VwIFRlcml5YWtpIFNhdWNlIiwKICAgICAgICAid2VpZ2h0IiA6IDE0NC4wCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEwMjAuNzYsCiAgICAgICJ0b3RhbFdlaWdodCIgOiA1MTUuNiwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMjAuNzYwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjcuODgzMzYwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYuMzI0MSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNDU0MjUyMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjM5Mjk4MDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMuOTQ0MjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjQwNjQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjE0NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMC4zMDQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NS4wNTI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY4LjIwMDAwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1NzY5LjgzOTk5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDc1LjMzNjAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTkuMzYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTk5Ljg2NDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjY2NjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjgyODU2MDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzQ3LjQzMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ2LjYxNiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS43MjE2MDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4yNTc3NjAwMDAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjUyOTkyMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2LjE0OTE3NjAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjM5NTYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuOTc2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjk3NiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMTA4NTYwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43MTUyMDAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMTI0ODAwMDAwMDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS4zNjQwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MS4wMzgwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNC40MzU5Mzg0NjE1Mzg0OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4MS42MjA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuNDY4ODAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTAuMTA1NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg5LjQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQwLjQwOTk5OTk5OTk5OTk0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjUzMzYwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzOS44NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4LjU2NzU0Mjg1NzE0Mjg2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMS40OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMTkwNDAwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNi43NzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYuMjkwNjY2NjY2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5LjUzNjAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3LjE4NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMxLjE3MTc2NDcwNTg4MjM1NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuNzQ1ODgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2OS43OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguMjQ0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4LjQ3NjAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMTc4ODAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjYyNDAwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjcwNTAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogNjcuODgzMzYwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMDQuNDM1OTM4NDYxNTM4NDgsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxNi4zMjQxLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDgxLjYyMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC40NTQyNTIwMDAwMDAwMDAxLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAzMi4zOTI5ODAwMDAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTMuOTQ0MjAwMDAwMDAwMDAyLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIyLjQwNjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3LjQ2ODgwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjIuMjYyNDAwMDAwMDAwMDAzLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4xNDQsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMC41NzYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIwLjMwNCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNzUuMDUyOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE1MC4xMDU2LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI2OC4yMDAwMDAwMDAwMDAwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDg5LjQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNTc2OS44Mzk5OTk5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNDAuNDA5OTk5OTk5OTk5OTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3NS4zMzYwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuNTMzNjAwMDAwMDAwMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTkuMzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOS44NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA5OTkuODY0MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4LjU2NzU0Mjg1NzE0Mjg2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS42NjY0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzEuNDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjgyODU2MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMyLjE5MDQwMDAwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNzQ3LjQzMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEwNi43NzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE0Ni42MTYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNi4yOTA2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS43MjE2MDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5LjUzNjAwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjI1Nzc2MDAwMDAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcuMTg0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNTI5OTIwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMxLjE3MTc2NDcwNTg4MjM1NywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjYuMTQ5MTc2MDAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMwLjc0NTg4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMzk1NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY5Ljc4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjk3NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguMjQ0LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjk3NiwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMTA4NTYwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4LjQ3NjAwMDAwMDAwMDAwMywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43MTUyMDAwMDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4xNzg4MDAwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjEyNDgwMDAwMDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC42MjQwMDAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuMzY0MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi43MDUwMDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzE0ZWJkN2Q2ZDY1Zjc2MTg0M2RiYTM1MjAyZGU0YjM3IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFNhdGF5IiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvYmE2L2JhNmY2NmQ4ODVlNGQ2MmE5ODA1NWIwODhhNWE4NWEzLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIkJCQyBHb29kIEZvb2QiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmJiY2dvb2Rmb29kLmNvbS9yZWNpcGVzLzM2NDUvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi1zYXRheS0xNGViZDdkNmQ2NWY3NjE4NDNkYmEzNTIwMmRlNGIzNy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiSGlnaC1Qcm90ZWluIiwgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLCAiNC4wIHRic3Agc21vb3RoIHBlYW51dCBidXR0ZXIiLCAiNCBza2lubGVzcyBjaGlja2VuIGJyZWFzdHMgZmlsbGV0cyIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLAogICAgICAgICJ3ZWlnaHQiIDogMTA3Ljc4MjE5NzM2MjEyNDU1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNC4wIHRic3Agc21vb3RoIHBlYW51dCBidXR0ZXIiLAogICAgICAgICJ3ZWlnaHQiIDogNjQuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjQgc2tpbmxlc3MgY2hpY2tlbiBicmVhc3RzIGZpbGxldHMiLAogICAgICAgICJ3ZWlnaHQiIDogMTA4OC4wCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDE3NDUuNDQ0NTY0NjAxOTI2MiwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDEyNTkuNzgyMTk3MzYyMTI0NiwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3NDUuNDQ0NTY0NjAxOTI2MiwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjEuOTkwMzU4NTI0OTY0MTIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuODEyMTIxMDA0MDc0MzUxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4xMjQxNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI0LjE5MzQwODMzMzY3ODY3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuOTE4OTg3MTc5MDYyMzksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuNTkyMDYyMzI5OTUyNzQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjA2MjI1NzU3ODg5Njk5NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjE0NDcyODc4OTQ0ODQ5OCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2Ny43ODc4NzA4NjUyNzY5NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc5NC4yNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQyMC45NTYxMDExMDE1MDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjEuMzI4MTI1MTI5NTAxMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDkxLjkxODgyNjA0Nzk3MjIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDQ1OS44OTI1NTg1MjUyNDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjcwMjA0MTg2MTc1MDgwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuOTQyNTA1MTE3MDUwNDg1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzEwLjc1ODQ0NzYyMTEyNywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuMTYwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMTU0Mjg4MTI1MTI5NTAxMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjIyNjQ4MDYyNTY0NzUwNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE1LjIwNjU3NzA1NDA3MjI3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuMjY1NDM3NjUyMDk1OTQ2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjguNjg5NTA3NjMwNjk3NDUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjI4NDgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjg4LAogICAgICAgICAgInVuaXQiIDogIklVIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTEuOTE2ODAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjM2ODAwMDAwMDAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ny4yNzIyMjgyMzAwOTYzMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTUuMzY5NzgyMzQ2MDk4NjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQuMDYwNjA1MDIwMzcxNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNi41MzA2ODc0NDMzMTc1NzksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNi4yNDkwMzAzMTU1ODc5ODcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MzUuNTc1NzQxNzMwNTUzOSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2NC43NDY2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNjcuNTM5ODM3NTQ1ODk1OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuMTMyODEyNTEyOTUwMTEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIyLjk3OTcwNjUxMTk5MzA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3LjQyNTUwMTY3MjE0OTc2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4yMzM1NjU4OTg2MTU1OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjYuMjgzMzY3NDQ3MDAzMjQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzg3LjI1MTIwNjgwMzAxODE0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguNDYyMjIyMjIyMjIyMjIzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuOTUyNTQxNjc1MzAwMDgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuOTY5NDQ4NTY3NTAwMzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTc2LjAzMjg4NTI3MDM2MTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NjMuMjcxODgyNjA0Nzk3MjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Mi4xNzIzNzY5MDc2NzQzNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzOC4wODAwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjcyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OS41ODQwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjk2MDAwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDYxLjk5MDM1ODUyNDk2NDEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTUuMzY5NzgyMzQ2MDk4NjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxMi44MTIxMjEwMDQwNzQzNTEsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogNjQuMDYwNjA1MDIwMzcxNzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4xMjQxNiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjQuMTkzNDA4MzMzNjc4NjcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEyLjkxODk4NzE3OTA2MjM5LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE5LjU5MjA2MjMyOTk1Mjc0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi41MzA2ODc0NDMzMTc1NzksCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE1LjUyOTgwNDc1MTA1NTc0MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDQuMDYyMjU3NTc4ODk2OTk3LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDE2LjI0OTAzMDMxNTU4Nzk4NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNy4xNDQ3Mjg3ODk0NDg0OTgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI2Ny43ODc4NzA4NjUyNzY5NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUzNS41NzU3NDE3MzA1NTM5LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDc5NC4yNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2NC43NDY2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2NDIwLjk1NjEwMTEwMTUwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2Ny41Mzk4Mzc1NDU4OTU5LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIxLjMyODEyNTEyOTUwMTEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMi4xMzI4MTI1MTI5NTAxMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDkxLjkxODgyNjA0Nzk3MjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjIuOTc5NzA2NTExOTkzMDQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDQ1OS44OTI1NTg1MjUyNDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjcuNDI1NTAxNjcyMTQ5NzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjcwMjA0MTg2MTc1MDgwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM3LjIzMzU2NTg5ODYxNTU4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOS45NDI1MDUxMTcwNTA0ODUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2Ni4yODMzNjc0NDcwMDMyNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjcxMC43NTg0NDc2MjExMjcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzODcuMjUxMjA2ODAzMDE4MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2LjE2MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOC40NjIyMjIyMjIyMjIyMjMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4xNTQyODgxMjUxMjk1MDEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzYuOTUyNTQxNjc1MzAwMDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi4yMjY0ODA2MjU2NDc1MDYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMzAuOTY5NDQ4NTY3NTAwMzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExNS4yMDY1NzcwNTQwNzIyNywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU3Ni4wMzI4ODUyNzAzNjE0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDkuMjY1NDM3NjUyMDk1OTQ2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDYzLjI3MTg4MjYwNDc5NzI3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyLjE3MjM3NjkwNzY3NDM2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMjg0OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM4LjA4MDAwMDAwMDAwMDAwNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTAuODgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyLjcyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgInRhZyIgOiAiVE9DUEhBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExLjkxNjgwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU5LjU4NDAwMDAwMDAwMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjM2ODAwMDAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyLjk2MDAwMDAwMDAwMDAwMDQsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2UyOWZlZWIyNTBjM2NjMGY2ZWI0ODdiN2NhZTVkOGIxIiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFBpY2NhdGEiLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy85M2UvOTNlNWUyMmM4NzkyYmZiYzlmYTM2NTQyMDczNDdjOWMuanBnIiwKICAgICAgInNvdXJjZSIgOiAiTGVpdGUncyBDdWxpbmFyaWEiLAogICAgICAidXJsIiA6ICJodHRwOi8vbGVpdGVzY3VsaW5hcmlhLmNvbS81MzU0L3JlY2lwZXMtY2hpY2tlbi1waWNjYXRhLmh0bWwiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9jaGlja2VuLXBpY2NhdGEtZTI5ZmVlYjI1MGMzY2MwZjZlYjQ4N2I3Y2FlNWQ4YjEvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwgIjEvMiBjdXAgYWxsLXB1cnBvc2UgZmxvdXIiLCAiMiB0YWJsZXNwb29ucyBvbGl2ZSBvaWwiLCAiNCB0YWJsZXNwb29ucyB1bnNhbHRlZCBidXR0ZXIiLCAiMiB0YWJsZXNwb29ucyBmcmVzaCBsZW1vbiBqdWljZSIsICIxIHRhYmxlc3Bvb24gY2FwZXJzLCBkcmFpbmVkIiwgIjIgdGFibGVzcG9vbnMgY2hvcHBlZCBmcmVzaCBmbGF0LWxlYWYgcGFyc2xleSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsCiAgICAgICAgIndlaWdodCIgOiAzNDguMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIktvc2hlciBzYWx0IGFuZCBmcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLAogICAgICAgICJ3ZWlnaHQiIDogMy4yMzEKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDEuNjE1NQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgYWxsLXB1cnBvc2UgZmxvdXIiLAogICAgICAgICJ3ZWlnaHQiIDogNjIuNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDI3LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI0IHRhYmxlc3Bvb25zIHVuc2FsdGVkIGJ1dHRlciIsCiAgICAgICAgIndlaWdodCIgOiA1Ni44CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBmcmVzaCBsZW1vbiBqdWljZSIsCiAgICAgICAgIndlaWdodCIgOiAyOC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMSB0YWJsZXNwb29uIGNhcGVycywgZHJhaW5lZCIsCiAgICAgICAgIndlaWdodCIgOiA4LjYKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIGNob3BwZWQgZnJlc2ggZmxhdC1sZWFmIHBhcnNsZXkiLAogICAgICAgICJ3ZWlnaHQiIDogNy42CiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEzMDUuOTY0OTA1MDAwMDAwMywKICAgICAgInRvdGFsV2VpZ2h0IiA6IDU0Mi4zOTc4NzQ0NTkzMTE3LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMwNS45NjQ5MDUwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4My4wNTQ0NDUzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjAyNTA1Njc2MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuODg2MjYzOTk5OTk5OTk5NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0LjEzMjk0OTU0NDk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzYwODQ5NjksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTEuNTk0NTYyMjUwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjcwNjIyMTUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wMTg2MjkyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODUuOTMzNTgwNDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNzYuMTU5OTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNTYuMDI3NzkyOTQwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjMuNDI5MzI4NzQ0NTkzMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzM5LjEzMzU4NDk1Njc0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMTUxNzc2ODg1NzE1NzI4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi45OTkzNjY4MjQ0NTkzMTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4MzIuNDMyNDksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ0NS45MDYxODQ5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMS4zMTM4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuODM3MTMzNzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45NzA1MzE4OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4zMjE2NjExNjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi44Nzc4ODMxMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM0LjMwMzYzNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC41NTM2MzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEFDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTYuMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjgyNzM2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjg1MTk5OTk5OTk5OTk5OTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy40NzYyOTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTAuNTEzNjczNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY1LjI5ODI0NTI1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjcuNzc2MDY5NjkyMzA3NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzUuMTI1MjgzODAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuMTk4MTg3NDE2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMC44MjQ4ODYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuODY3MTYwOSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNS4zODY2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4zMzQ0OTEzNzI1MDAwMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMwLjg1NzMzMjE4NjE0ODI3NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4LjI2MDk1OTU3MDE5MjcyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOC42MjA5ODI2OTg0MjA3MTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5Ljk5NTc3ODgyOTcyODc0MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTguOTE4OTI3MTQyODU3MTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDkuNTQ1MTMxNjY2NjY2NjU2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUuNTIzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTUuODA4OTE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTcuMDkwMTExNzY0NzA1ODc0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4Ni42MDgzMDU4MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDMuODk0MTU1MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OC41NzU5MDg3NTAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMy43ODkzMzMzMzMzMzMzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjIxMjk5OTk5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4zODE0NTYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTg4LjE0MjA5MTg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogODMuMDU0NDQ1MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNy43NzYwNjk2OTIzMDc3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMzUuMDI1MDU2NzYwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDE3NS4xMjUyODM4MDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInRhZyIgOiAiRkFUUk4iLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAidHJhbnNGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxLjg4NjI2Mzk5OTk5OTk5OTcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDM0LjEzMjk0OTU0NDk5OTk5NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNi4zNjA4NDk2OSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA1MS41OTQ1NjIyNTAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE3LjE5ODE4NzQxNjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA0OC44ODgzNDA3NTAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIuNzA2MjIxNSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxMC44MjQ4ODYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDEuMDE4NjI5MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogODUuOTMzNTgwNDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzEuODY3MTYwOSwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAzNzYuMTU5OTk5OTk5OTk5OTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjUuMzg2NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTI1Ni4wMjc3OTI5NDAwMDA2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTIuMzM0NDkxMzcyNTAwMDI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjMuOTg5NDM0ODcwMjM0NzksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2LjM5ODk0MzQ4NzAyMzQ3OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIzLjQyOTMyODc0NDU5MzEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMC44NTczMzIxODYxNDgyNzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTMzOS4xMzM1ODQ5NTY3NDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOC4yNjA5NTk1NzAxOTI3MiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuMTUxNzc2ODg1NzE1NzI4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjguNjIwOTgyNjk4NDIwNzE1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi45OTkzNjY4MjQ0NTkzMTEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuOTk1Nzc4ODI5NzI4NzQyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4MzIuNDMyNDksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMTguOTE4OTI3MTQyODU3MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0NS45MDYxODQ5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDkuNTQ1MTMxNjY2NjY2NjU2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMS4zMTM4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzUuNTIzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODM3MTMzNzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1NS44MDg5MTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC45NzA1MzE4OTk5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTcuMDkwMTExNzY0NzA1ODc0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzNy4zMjE2NjExNjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxODYuNjA4MzA1ODI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuODc3ODgzMTA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTQzLjg5NDE1NTI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIzNC4zMDM2MzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1OC41NzU5MDg3NTAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3MC41NTM2MzUsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDk2LjI1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODI3MzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMy43ODkzMzMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODUxOTk5OTk5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMjEyOTk5OTk5OTk5OTk5OTcsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNy40NzYyOTEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuMzgxNDU2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTAuNTEzNjczNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4OC4xNDIwOTE4NzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2JlM2JhMDg3ZTIxMmYxMzY3MmI1NTNlY2ZhODc2MzMzIiwKICAgICAgImxhYmVsIiA6ICJCYWtlZCBDaGlja2VuIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvMDFjLzAxY2FjYjcwODkwMjc0ZmI3YjdjZWJiOTc1YTkzMjMxLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIk1hcnRoYSBTdGV3YXJ0IiwKICAgICAgInVybCIgOiAiaHR0cDovL3d3dy5tYXJ0aGFzdGV3YXJ0LmNvbS8zMTg5ODEvYmFrZWQtY2hpY2tlbiIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2Jha2VkLWNoaWNrZW4tYmUzYmEwODdlMjEyZjEzNjcyYjU1M2VjZmE4NzYzMzMvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICI2IGJvbmUtaW4gY2hpY2tlbiBicmVhc3QgaGFsdmVzLCBvciA2IGNoaWNrZW4gdGhpZ2hzIGFuZCB3aW5ncywgc2tpbi1vbiIsICIxLzIgdGVhc3Bvb24gY29hcnNlIHNhbHQiLCAiMS8yIHRlYXNwb29uIE1ycy4gRGFzaCBzZWFzb25pbmciLCAiMS80IHRlYXNwb29uIGZyZXNobHkgZ3JvdW5kIGJsYWNrIHBlcHBlciIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICI2IGJvbmUtaW4gY2hpY2tlbiBicmVhc3QgaGFsdmVzLCBvciA2IGNoaWNrZW4gdGhpZ2hzIGFuZCB3aW5ncywgc2tpbi1vbiIsCiAgICAgICAgIndlaWdodCIgOiA1MjIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiB0ZWFzcG9vbiBjb2Fyc2Ugc2FsdCIsCiAgICAgICAgIndlaWdodCIgOiAyLjQyNzA4MzMzMzMzMzMzMzUKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIxLzIgdGVhc3Bvb24gTXJzLiBEYXNoIHNlYXNvbmluZyIsCiAgICAgICAgIndlaWdodCIgOiAwLjc1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMS80IHRlYXNwb29uIGZyZXNobHkgZ3JvdW5kIGJsYWNrIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiAwLjU3NQogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiA5MDEuNTg1NzUsCiAgICAgICJ0b3RhbFdlaWdodCIgOiA1MjUuNjE1NjM1MDE5ODY2OSwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkwMS41ODU3NSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDguMzYwMjIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMuOTE3ODc5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NDgwOTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuOTUzNjk0MjQ5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAuMjUxNDU4NDk5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuODU5NjM3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjMwMjI1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDE3MTgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDguOTY4NjY3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzNC4wOCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIxNi45ODE4MjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ny45ODcwMDI0MDQ3NjgwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMzLjE4NjE1NjM1MDE5ODY3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDExNjEuMzU1MDAwODAxNTg5MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMTkwOTQxNTk1NTY1NTYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjIwODY4MzEzNTAxOTg2OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTEwLjQ3MSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI2LjQyNTI0OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjA5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMzMxNDYwOTk5OTk5OTk5OTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC40NDYxNjc1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MS43NDg2MDcyNDk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjc3ODE3MzI1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjAxMjc1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjAxMjc1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS43NzQ4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjA4OCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjQyNTI4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljk4MTc3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ1LjA3OTI4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc0LjQwMDMzODQ2MTUzODQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY5LjU4OTM5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjI4NjU0NTgzMzMzMzMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45MjA5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjE3LjkzNzMzNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMS4zNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MC43MDc1NzU4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuNzk4NzAwMjQwNDc2ODA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzLjI5NjUzOTA4NzU0OTY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzMuMTgxNTcxNDUxNDczOTgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjI4MzAwODg2NDI1MzExMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjguMDU3ODg3NTY2Nzk5MTIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMwLjA2NzI4NTcxNDI4NTczLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE0LjA0NzI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4xNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjA5NzM5OTk5OTk5OTk5NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2LjI0NTE0NzA1ODgyMzUyNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNTguNzQzMDM2MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzguOTA4NjYyNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNTAzMTg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOS41OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNTIyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjEyNjQwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjcyNzIxODc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA0OC4zNjAyMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDc0LjQwMDMzODQ2MTUzODQ3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTMuOTE3ODc5LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDY5LjU4OTM5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInRhZyIgOiAiRkFUUk4iLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAidHJhbnNGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjU0ODA5OTk5OTk5OTk5OTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE5Ljk1MzY5NDI0OTk5OTk5OCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTAuMjUxNDU4NDk5OTk5OTk4LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDAuODU5NjM3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMjg2NTQ1ODMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuNjI5NDEyNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMjMwMjI1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDAuOTIwOSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4wMTcxOCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTA4Ljk2ODY2NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMTcuOTM3MzM1LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDMzNC4wOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExMS4zNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjE2Ljk4MTgyMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUwLjcwNzU3NTg3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDY3Ljk4NzAwMjQwNDc2ODA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi43OTg3MDAyNDA0NzY4MDUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEzMy4xODYxNTYzNTAxOTg2NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMzLjI5NjUzOTA4NzU0OTY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExNjEuMzU1MDAwODAxNTg5MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMzLjE4MTU3MTQ1MTQ3Mzk4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4xOTA5NDE1OTU1NjU1NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjI4MzAwODg2NDI1MzExMiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuMjA4NjgzMTM1MDE5ODY4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjguMDU3ODg3NTY2Nzk5MTIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDkxMC40NzEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMzAuMDY3Mjg1NzE0Mjg1NzMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyNi40MjUyNDk5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE0LjA0NzI1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjA5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4xNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjMzMTQ2MDk5OTk5OTk5OTk1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjIuMDk3Mzk5OTk5OTk5OTk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNDQ2MTY3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2LjI0NTE0NzA1ODgyMzUyNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNTEuNzQ4NjA3MjQ5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNTguNzQzMDM2MjUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi43NzgxNzMyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEzOC45MDg2NjI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyLjAxMjc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNS41MDMxODc1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyLjAxMjc1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS43NzQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjkuNTgsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMDg4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC41MjIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS40MjUyOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuMTI2NDAwMDAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2Ljk4MTc3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguNzI3MjE4NzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzI0NjNmMjQ4MjYwOWQ3YTQ3MWRiYmYzYjI2OGJkOTU2IiwKICAgICAgImxhYmVsIiA6ICJDYXRhbGFuIENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy80ZDkvNGQ5MDg0Y2JjMTcwNzg5Y2FhOWU5OTcxMDhiNTk1ZGUuanBnIiwKICAgICAgInNvdXJjZSIgOiAiQm9uIEFwcGV0aXQiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmJvbmFwcGV0aXQuY29tL2NvbHVtbnMvYnJlYWR3aW5uZXIvYXJ0aWNsZS9ob3ctdG8tZ2V0LXlvdXIta2lkcy10by1lYXQtc2F1Y2UtbGV0LXRoZW0tY29vay1pdC10aGVtc2VsdmVzIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2F0YWxhbi1jaGlja2VuLTI0NjNmMjQ4MjYwOWQ3YTQ3MWRiYmYzYjI2OGJkOTU2L2NoaWNrZW4iLAogICAgICAieWllbGQiIDogMTIuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiU3VnYXItQ29uc2Npb3VzIiwgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMSB3aG9sZSA0LXBvdW5kIGNoaWNrZW4sIHF1YXJ0ZXJlZCIsICI4IHNsaWNlcyBiYWNvbiIsICIzMCBjbG92ZXMgZ2FybGljIiwgIjMgbGVtb25zLCBwZWVsZWQsIHJpbmRzIHRoaW5seSBzbGljZWQgYW5kIHJlc2VydmVkIiwgIsK9IGN1cCBCYW55dWxzIG9yIGFub3RoZXIgZm9ydGlmaWVkIGRlc3NlcnQgd2luZSIsICIxIGN1cCB2ZWFsIG9yIGNoaWNrZW4gc3RvY2siIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMSB3aG9sZSA0LXBvdW5kIGNoaWNrZW4sIHF1YXJ0ZXJlZCIsCiAgICAgICAgIndlaWdodCIgOiA5MjAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjggc2xpY2VzIGJhY29uIiwKICAgICAgICAid2VpZ2h0IiA6IDIyNC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMzAgY2xvdmVzIGdhcmxpYyIsCiAgICAgICAgIndlaWdodCIgOiA5MC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMyBsZW1vbnMsIHBlZWxlZCwgcmluZHMgdGhpbmx5IHNsaWNlZCBhbmQgcmVzZXJ2ZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTc0LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICLCvSBjdXAgQmFueXVscyBvciBhbm90aGVyIGZvcnRpZmllZCBkZXNzZXJ0IHdpbmUiLAogICAgICAgICJ3ZWlnaHQiIDogNTEuNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgY3VwIHZlYWwgb3IgY2hpY2tlbiBzdG9jayIsCiAgICAgICAgIndlaWdodCIgOiAyNDAuMAogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAzMjY1LjQ0LAogICAgICAidG90YWxXZWlnaHQiIDogMTY5OS41LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzI2NS40NDAwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMzEuMzA5NiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC4zNTM0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4xOTAzMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3Ljg5NzIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NS4wNjMxMjAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQuMzYwMzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljc2MjAwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTUuMjg4NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIxMy4xNzc4MDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg0NS4wNDAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNDkzLjQ5NTAwMDAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMzEuODYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2MS41MzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzA4Mi43MjAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2LjIxNTY1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTA5LjkzNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDA1Ljk4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzUuNDk5OTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS41MTMxMTAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNjMyNTEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc2LjI5Mzc3NTAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMjEyOTQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODkuMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODkuMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjk3MjAwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuNzM2MDAwMDAwMDAwMDAwNywKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjEyODIwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjgxLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJ0b3RhbERhaWx5IiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYzLjI3MjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTUuODYwOTIzMDc2OTIzMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTEuNzY2OTk5OTk5OTk5OTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuNDUzNDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNy4wNDgwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjYuMzU1NjAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODEuNjgwMDAwMDAwMDAwMDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAzLjg5NTYyNTAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMy4xODYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjUuMzgzNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4OC4wNzc3MTQyODU3MTQyOCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjguODg4ODg4ODg4ODg4ODksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwOC4xMDQzMzMzMzMzMzMzNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzIuODQ3ODU3MTQyODU3MTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDUuMTA4ODg4ODg4ODg4ODksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjUuODMzMzMzMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMC44NzQwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk2LjAyOTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4MS40Njg4NzUwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYwLjY0NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjI2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY2LjIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjY4NDAwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjY0MTAwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOS43NjI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyMzEuMzA5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1NS44NjA5MjMwNzY5MjMxLAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNzAuMzUzNCwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAzNTEuNzY2OTk5OTk5OTk5OTQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4xOTAzMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogOTcuODk3MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDUuMDYzMTIwMDAwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDY0LjM2MDM1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjEuNDUzNDUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU3LjU5ODM0OTk5OTk5OTk5NiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDYuNzYyMDAwMDAwMDAwMDAwNSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAyNy4wNDgwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDE1LjI4ODcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIxMy4xNzc4MDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyNi4zNTU2MDAwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA4NDUuMDQwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4MS42ODAwMDAwMDAwMDAwNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNDkzLjQ5NTAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMDMuODk1NjI1MDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMzEuODYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMy4xODYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI2MS41MzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2NS4zODM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMDgyLjcyMDAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4OC4wNzc3MTQyODU3MTQyOCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyLjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2OC44ODg4ODg4ODg4ODg4OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2LjIxNTY1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTA4LjEwNDMzMzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxOTA5LjkzNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI3Mi44NDc4NTcxNDI4NTcxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDA1Ljk4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDUuMTA4ODg4ODg4ODg4ODksCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEzNS40OTk5OTk5OTk5OTk5NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIyNS44MzMzMzMzMzMzMzMzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuNTEzMTEwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEwMC44NzQwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjYzMjUxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTYuMDI5OTk5OTk5OTk5OTksCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2LjI5Mzc3NTAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzgxLjQ2ODg3NTAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS4yMTI5NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2MC42NDcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogODkuMDQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMi4yNiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4OS4wNCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuOTcyMDAwMDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY2LjIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuNzM2MDAwMDAwMDAwMDAwNywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuNjg0MDAwMDAwMDAwMDAwMiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjEyODIwMDAwMDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC42NDEwMDAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE1LjgxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuNzYyNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfNmI3MTUwNmVhZWQ0MTAyYzBiOTdkY2UxZWFkZGQ5YTYiLAogICAgICAibGFiZWwiIDogIlJvYXN0IENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy81MmMvNTJjZGQ4N2I2N2IxNjFjY2U4ZThhM2YxNTIzNzM2OGYuanBnIiwKICAgICAgInNvdXJjZSIgOiAiUGlvbmVlciBXb21hbiIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly90aGVwaW9uZWVyd29tYW4uY29tL2Nvb2tpbmcvMjAxMi8wOC9yb2FzdC1jaGlja2VuLyIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL3JvYXN0LWNoaWNrZW4tNmI3MTUwNmVhZWQ0MTAyYzBiOTdkY2UxZWFkZGQ5YTYvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxIHdob2xlIENoaWNrZW4sIFJpbnNlZCBBbmQgUGF0dGVkIERyeSIsICIzLzQgY3VwcyBCdXR0ZXIsIFNvZnRlbmVkIiwgIjMgd2hvbGUgTGVtb25zIiwgIjQgc3ByaWdzIFJvc2VtYXJ5IiwgIlNhbHQgQW5kIFBlcHBlciwgdG8gdGFzdGUiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMSB3aG9sZSBDaGlja2VuLCBSaW5zZWQgQW5kIFBhdHRlZCBEcnkiLAogICAgICAgICJ3ZWlnaHQiIDogOTIwLjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIzLzQgY3VwcyBCdXR0ZXIsIFNvZnRlbmVkIiwKICAgICAgICAid2VpZ2h0IiA6IDE3MC4yNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMgd2hvbGUgTGVtb25zIiwKICAgICAgICAid2VpZ2h0IiA6IDE3NC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNCBzcHJpZ3MgUm9zZW1hcnkiLAogICAgICAgICJ3ZWlnaHQiIDogMjAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgQW5kIFBlcHBlciwgdG8gdGFzdGUiLAogICAgICAgICJ3ZWlnaHQiIDogNy43MDU1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiU2FsdCBBbmQgUGVwcGVyLCB0byB0YXN0ZSIsCiAgICAgICAgIndlaWdodCIgOiAzLjg1Mjc1CiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDMyODUuMDIyOTAyNDk5OTk5NCwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDEyOTQuMDk3MDcxNTE1NzM4NywKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyODUuMDIyOTAyNSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjc4LjQ2MTM3NDY1MDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3Ljc5NTExMDI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNi40NzMxOTUwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTMuNDc1ODY0MzIyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjI3MDIxNzk0NTAwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMi45MjI3ODM2MjUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjY2Njc0NTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuNDc2ODA3NiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3NS41NDM0MjU3MjUwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNTYuMDM3NTAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjk5NS40NTcxODMwNzAwMDA2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY5LjIwNjMxOTY2Mzc3NzMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyNi4xNzMxNDU3MTUxNTczNywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjA1LjA2MjU5MzIyMTI1OTIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS4wODE5MzMyODYwMDE5NDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi41NDc0NjcwNDY1MTU3NCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ0MC4zODczNDQ5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTczLjY5MDI0MjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMS4zLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNjQxNDczNDcwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjIzNDAxOTk1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2My4wNDExNDE5MzI1MDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjQ0MjcxOTAwMjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAxLjkwMjQ2NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAxLjkwMjQ2NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjE0MTQyNTAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMzkzNzUwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuMDEwODY4NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMDI0NDUxNzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjQuMjUxMTQ1MTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjguNDAyMTE0ODQ2MTU0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzOC45NzU1NTE0MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuNjQwOTI3ODc1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzQuNjY2OTgzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUxLjA4Njg1MTQ1MDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUyLjAxMjUwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNC44MTA3MTU5NjEyNTAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYuOTIwNjMxOTY2Mzc3NzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDU2LjU0MzI4NjQyODc4OTM0NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjAwMTc4ODM3Nzc1MDI2NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4My42NDk3ODAzMTAxMDQ5MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMDUuNzY5NjIwNzE0Mjg1NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzQuODU0NDcxMzg4ODg4OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4NS41LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDIuNzY0ODk4MDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Mi41ODk0MDg4MjM1Mjk0MSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTUuMjA1NzA5NjYyNTAwMDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzIuMTM1OTUwMTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuNDc1NjE2ODc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUyLjM1NzA4MzMzMzMzMzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wOTg0Mzc1MDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNS4wNTQzNDMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDAuMDMwNTY0Njg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjc4LjQ2MTM3NDY1MDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MjguNDAyMTE0ODQ2MTU0LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTI3Ljc5NTExMDI4LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDYzOC45NzU1NTE0MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDYuNDczMTk1MDAwMDAwMDAwNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogOTMuNDc1ODY0MzIyNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzUuMjcwMjE3OTQ1MDAwMDA2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIyLjkyMjc4MzYyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuNjQwOTI3ODc1MDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxNC4yNTYwMzc4NzUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA4LjY2Njc0NTc1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDM0LjY2Njk4MywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNC40NzY4MDc2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIuYWRkZWQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICJ0YWciIDogIlBST0NOVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAicHJvdGVpbkNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNzUuNTQzNDI1NzI1MDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNTEuMDg2ODUxNDUwMDAwMDQsCiAgICAgICAgInVuaXQiIDogImciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAidGFnIiA6ICJDSE9MRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2hvbGVzdGVyb2xDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTA1Ni4wMzc1MDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzUyLjAxMjUwMDAwMDAwMDA1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI5OTUuNDU3MTgzMDcwMDAwNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNC44MTA3MTU5NjEyNTAwMywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI2OS4yMDYzMTk2NjM3NzczLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjYuOTIwNjMxOTY2Mzc3NzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMjYuMTczMTQ1NzE1MTU3MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1Ni41NDMyODY0Mjg3ODkzNDQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjIwNS4wNjI1OTMyMjEyNTkyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjMuMDAxNzg4Mzc3NzUwMjY2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTEuMDgxOTMzMjg2MDAxOTQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIuNTQ3NDY3MDQ2NTE1NzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4My42NDk3ODAzMTAxMDQ5MywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTQ0MC4zODczNDQ5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjA1Ljc2OTYyMDcxNDI4NTcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE1NzMuNjkwMjQyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE3NC44NTQ0NzEzODg4ODg5LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTEuMywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4NS41LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNjQxNDczNDcwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyLjc2NDg5ODAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMjM0MDE5OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3Mi41ODk0MDg4MjM1Mjk0MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjMuMDQxMTQxOTMyNTAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMTUuMjA1NzA5NjYyNTAwMDYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy40NDI3MTkwMDI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcyLjEzNTk1MDEyNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1LjQ3NTYxNjg3NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuMTQxNDI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUyLjM1NzA4MzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjM5Mzc1MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEuMDk4NDM3NTAwMDAwMDAwMiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3LjAxMDg2ODYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNS4wNTQzNDMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjAyNDQ1MTc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDAuMDMwNTY0Njg3NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfNDRkNTZjZTE1YmY1N2Y4MmU4ODZhNTRjNDU1MzkwMzMiLAogICAgICAibGFiZWwiIDogIlJvYXN0IENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy8wZjEvMGYxY2I4MzVlMTk2N2YyZDk4MTY2NTdhNWJiMzg4YTguanBnIiwKICAgICAgInNvdXJjZSIgOiAiRmluZSBDb29raW5nIiwKICAgICAgInVybCIgOiAiaHR0cDovL3d3dy5maW5lY29va2luZy5jb20vcmVjaXBlcy9yb2FzdC1jaGlja2VuLmFzcHgiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9yb2FzdC1jaGlja2VuLTQ0ZDU2Y2UxNWJmNTdmODJlODg2YTU0YzQ1NTM5MDMzL2NoaWNrZW4iLAogICAgICAieWllbGQiIDogNC4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJTdWdhci1Db25zY2lvdXMiLCAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMS0xLzIgVGJzLiBvbGl2ZSBvaWwiLCAiMiB0c3AuIGdyYW51bGF0ZWQgc3VnYXIiLCAiMy0xLzIgdG8gNC1sYi4gd2hvbGUgY2hpY2tlbiIsICJGcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLCAiMiBUYnMuIGtvc2hlciBzYWx0IiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEtMS8yIFRicy4gb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDIwLjI1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0c3AuIGdyYW51bGF0ZWQgc3VnYXIiLAogICAgICAgICJ3ZWlnaHQiIDogOC40CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy0xLzIgdG8gNC1sYi4gd2hvbGUgY2hpY2tlbiIsCiAgICAgICAgIndlaWdodCIgOiAxNzAwLjk3MTM4NzUKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJGcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLAogICAgICAgICJ3ZWlnaHQiIDogNS4yNzYyMzkxNjI1MDAwMDA1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiBUYnMuIGtvc2hlciBzYWx0IiwKICAgICAgICAid2VpZ2h0IiA6IDI5LjEyNQogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAzODgxLjg0OTg0MzQyMjg3NSwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDE3NDIuMjMwOTM5ODIwNDc2OCwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4ODEuODQ5ODQzNDIyODc1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzYuNTg4Mjk2MzU0MTk3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Ni4xODE0MzIwNTAzOTE5OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNjQ5OTQyMjQ1ODc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIwLjk1NDIwODQ4NzQxMDg4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTcuMTI0OTQwMTgzMDkxNzQ1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExLjc3MjQ3NDk0NDQxODc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4zMzQ4ODg1MDgxMTI1MDA0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguNDE2OTY3OTMwNjQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUi5hZGRlZCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguMzgzMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMxNi45Mjg4NzkzMjM5ODM3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3NS43Mjg1NDA2MjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQwMzQuNDY5NzMyODUxMTExLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEyLjUyNzA4NzI3Mjc4OTM3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNDkuMjg5OTc5NTk5NDU0OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMjg1LjkxNDMwNTg5NzI2MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1Ljk2Mjg2NTI0MzYwMDA3MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjM1MzY4NTczNTQ0MTcyNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUwOC43NjQzOTc1MDE3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjk4LjgyMjg1MzQ0ODg3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcuMjE1NTQyMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjAyNjI4MTE3MDc5NTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi4wNTIyNTg4OTU0OTI1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuNzQzMzcxNDc3NTAyMzYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS45Njg3NTM3MTIyMTI4NzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAyLjk1NTI0MzkwNzYyNDk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMi45NTUyNDM5MDc2MjQ5OSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMjczMDExMzAxMjQ5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy40MDE5NDI3NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4wNjM2NjIwNDk3ODk5OTksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2LjM0MjI3NDMyMTUxMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTQuMDkyNDkyMTcxMTQzNzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyNS41MjA0NTU5Mjk1MzQ2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4MC45MDcxNjAyNTE5NTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuOTI0MTU4MzE0ODA2MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjMzOTU1NDAzMjQ1MDAwMTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2MzMuODU3NzU4NjQ3OTY3NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyNS4yNDI4NDY4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4LjEwMjkwNTUzNTQ2Mjk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMS4yNTI3MDg3MjcyNzg5MzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODcuMzIyNDk0ODk5ODYzNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDkzLjg4MzI2NTg4Mjc3ODk0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4OC42ODI1ODQ2ODY2NjcwNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ5LjAyNDU3MTU2OTYxMTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzU4LjM5NDkxMzkyODgyMTQ0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc3LjY0Njk4MzcxNjU0MTY1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDUuMzU5MjM3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjguNDE4NzQ0NzE5NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyMC43MjExMTE0OTk1NTg4MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1NzguNzE2ODU3Mzg3NTExOCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI5OC40Mzc2ODU2MTA2NDM3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuNzM4ODEwOTc2OTA2MjQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg3Ljg4MzUyMTY4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjg1MDQ4NTY5Mzc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MC4zMTgzMTAyNDg5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Ny45Mjc4NDI5MDE4OTA2MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjc2LjU4ODI5NjM1NDE5NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MjUuNTIwNDU1OTI5NTM0NiwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDc2LjE4MTQzMjA1MDM5MTk5LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDM4MC45MDcxNjAyNTE5NTk5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDEuNjQ5OTQyMjQ1ODc1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxMjAuOTU0MjA4NDg3NDEwODgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU3LjEyNDk0MDE4MzA5MTc0NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMS43NzI0NzQ5NDQ0MTg3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMuOTI0MTU4MzE0ODA2MjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEwLjQzNzU4NjQzNjMwNjI1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4zMzQ4ODg1MDgxMTI1MDA0LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDUuMzM5NTU0MDMyNDUwMDAxNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogOC40MTY5Njc5MzA2NCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA4LjM4MzIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMzE2LjkyODg3OTMyMzk4MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2MzMuODU3NzU4NjQ3OTY3NCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjc1LjcyODU0MDYyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyNS4yNDI4NDY4NzUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNDAzNC40Njk3MzI4NTExMTEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNjguMTAyOTA1NTM1NDYyOTgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMTIuNTI3MDg3MjcyNzg5MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMS4yNTI3MDg3MjcyNzg5MzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDM0OS4yODk5Nzk1OTk0NTQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogODcuMzIyNDk0ODk5ODYzNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMjg1LjkxNDMwNTg5NzI2MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkzLjg4MzI2NTg4Mjc3ODk0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTUuOTYyODY1MjQzNjAwMDcyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogODguNjgyNTg0Njg2NjY3MDcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMi4zNTM2ODU3MzU0NDE3MjYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNDkuMDI0NTcxNTY5NjExNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjUwOC43NjQzOTc1MDE3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1OC4zOTQ5MTM5Mjg4MjE0NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjk4LjgyMjg1MzQ0ODg3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDc3LjY0Njk4MzcxNjU0MTY1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyNy4yMTU1NDIyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDUuMzU5MjM3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMDI2MjgxMTcwNzk1NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY4LjQxODc0NDcxOTcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi4wNTIyNTg4OTU0OTI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTIwLjcyMTExMTQ5OTU1ODgyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTUuNzQzMzcxNDc3NTAyMzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1NzguNzE2ODU3Mzg3NTExOCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1Ljk2ODc1MzcxMjIxMjg3NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI5OC40Mzc2ODU2MTA2NDM3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEwMi45NTUyNDM5MDc2MjQ5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1LjczODgxMDk3NjkwNjI0NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDIuOTU1MjQzOTA3NjI0OTksCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICJ0YWciIDogIlZJVEIxMiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1LjI3MzAxMTMwMTI0OTk5OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4Ny44ODM1MjE2ODc1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzLjQwMTk0Mjc3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuODUwNDg1NjkzNzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOC4wNjM2NjIwNDk3ODk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MC4zMTgzMTAyNDg5NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgInRhZyIgOiAiVklUSzEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDYuMzQyMjc0MzIxNTEyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU3LjkyNzg0MjkwMTg5MDYyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0gXQp9 + http_version: + recorded_at: Thu, 03 May 2018 20:35:42 GMT +recorded_with: VCR 4.0.0 diff --git a/test/lib/edamam_api_wrapper_test.rb b/test/lib/edamam_api_wrapper_test.rb new file mode 100644 index 000000000..e71511e7d --- /dev/null +++ b/test/lib/edamam_api_wrapper_test.rb @@ -0,0 +1,30 @@ +require 'test_helper' +require 'pry' +describe EdamamApiWrapper do + + it "Can return array of recipes based on query" do + VCR.use_cassette("recipes") do + query = "chicken" + response = EdamamApiWrapper.list_recipes(query) + response["ok"].must_equal true + end + end + # + # it "Can send valid message to real channel" do + # VCR.use_cassette("channels") do + # message = "test message" + # response = SlackApiWrapper.send_message("CAGCPB64A", message) + # response["ok"].must_equal true + # response["message"]["text"].must_equal message + # end + # end + # + # it "Can't send message to fake channel" do + # VCR.use_cassette("channels") do + # response = SlackApiWrapper.send_message("this-channel-does-not-exist", "test message") + # response["ok"].must_equal false + # response["error"].wont_be_nil + # end + # end + +end diff --git a/test/test_helper.rb b/test/test_helper.rb index 7ace230b2..b1176f8a6 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -35,9 +35,11 @@ :record => :new_episodes, # record new data when we don't have it yet :match_requests_on => [:method, :uri, :body] # The http method, URI and body of a request all need to match } - # Don't leave our Slack token lying around in a cassette file. - config.filter_sensitive_data("") do - ENV['SLACK_TOKEN'] + config.filter_sensitive_data("") do + ENV['EDAMAM_ID'] + end + config.filter_sensitive_data("") do + ENV['EDAMAM_KEY'] end end From 0529cd92d331315aa9622e08ec9cb253b459f751 Mon Sep 17 00:00:00 2001 From: Jackie Date: Fri, 4 May 2018 13:36:55 -0700 Subject: [PATCH 08/21] Completed controller tests and 2 assertions for api wrapper --- app/controllers/recipes_controller.rb | 6 - test/cassettes/recipes.yml | 5789 ++++++++++++++++++- test/cassettes/recipes2.yml | 60 + test/controllers/recipes_controller_test.rb | 42 +- test/lib/edamam_api_wrapper_test.rb | 29 +- test/test_helper.rb | 4 + 6 files changed, 5886 insertions(+), 44 deletions(-) create mode 100644 test/cassettes/recipes2.yml diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb index fc0e5ff62..29d338b12 100644 --- a/app/controllers/recipes_controller.rb +++ b/app/controllers/recipes_controller.rb @@ -8,12 +8,6 @@ def index @recipes = EdamamApiWrapper.list_recipes(@query) end - def new - end - - def create - end - def show recipe_id = params[:id] recipe = EdamamApiWrapper.find_recipe(recipe_id) diff --git a/test/cassettes/recipes.yml b/test/cassettes/recipes.yml index 409fc76d5..b05a80a57 100644 --- a/test/cassettes/recipes.yml +++ b/test/cassettes/recipes.yml @@ -21,7 +21,7 @@ http_interactions: Server: - ngx_openresty Date: - - Thu, 03 May 2018 20:35:42 GMT + - Fri, 04 May 2018 20:36:08 GMT Content-Type: - application/json;charset=UTF-8 Transfer-Encoding: @@ -29,19 +29,5794 @@ http_interactions: Connection: - keep-alive Set-Cookie: - - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + - route=ee37ea0cbec446fe0dc609c7b4a6323b; Path=/ Cache-Control: - private Expires: - Thu, 01 Jan 1970 00:00:00 UTC X-Served-By: - - ip-10-150-7-77/10.150.7.77 + - ip-10-149-22-246/10.149.22.246 Vary: - Accept-Encoding body: - encoding: ASCII-8BIT - string: !binary |- - ewogICJxIiA6ICJjaGlja2VuIiwKICAiZnJvbSIgOiAwLAogICJ0byIgOiAxMCwKICAicGFyYW1zIiA6IHsKICAgICJzYW5lIiA6IFsgXSwKICAgICJxIiA6IFsgImNoaWNrZW4iIF0sCiAgICAiYXBwX2tleSIgOiBbICI8QVBQX0tFWT4iIF0sCiAgICAiYXBwX2lkIiA6IFsgIjxBUFBfSUQ+IiBdCiAgfSwKICAibW9yZSIgOiB0cnVlLAogICJjb3VudCIgOiAxOTEwNTgsCiAgImhpdHMiIDogWyB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfN2JmNGEzNzFjNjg4NGQ4MDk2ODJhNzI4MDhkYTdkYzIiLAogICAgICAibGFiZWwiIDogIlRlcml5YWtpIENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy8yNjIvMjYyYjQzNTNjYTI1MDc0MTc4ZWFkMmEwN2NkZjdkYzEuanBnIiwKICAgICAgInNvdXJjZSIgOiAiRGF2aWQgTGVib3ZpdHoiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmRhdmlkbGVib3ZpdHouY29tLzIwMTIvMTIvY2hpY2tlbi10ZXJpeWFraS1yZWNpcGUtamFwYW5lc2UtZmFybS1mb29kLyIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL3Rlcml5YWtpLWNoaWNrZW4tN2JmNGEzNzFjNjg4NGQ4MDk2ODJhNzI4MDhkYTdkYzIvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA2LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxLzIgY3VwICgxMjVtbCkgbWlyaW4iLCAiMS8yIGN1cCAoMTI1bWwpIHNveSBzYXVjZSIsICJPbmUgMi1pbmNoICg1Y20pIHBpZWNlIG9mIGZyZXNoIGdpbmdlciwgcGVlbGVkIGFuZCBncmF0ZWQiLCAiMi1wb3VuZHMgKDkwMGcpIGJvbmVsZXNzIGNoaWNrZW4gdGhpZ2hzICg0LTggdGhpZ2hzLCBkZXBlbmRpbmcgb24gc2l6ZSkiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCAoMTI1bWwpIG1pcmluIiwKICAgICAgICAid2VpZ2h0IiA6IDEyMi45OTg1MDc1Nzc5NTM5MgogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgKDEyNW1sKSBzb3kgc2F1Y2UiLAogICAgICAgICJ3ZWlnaHQiIDogMTM0LjcyNzc0NjcwMjY1NTY4CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiT25lIDItaW5jaCAoNWNtKSBwaWVjZSBvZiBmcmVzaCBnaW5nZXIsIHBlZWxlZCBhbmQgZ3JhdGVkIiwKICAgICAgICAid2VpZ2h0IiA6IDE1LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyLXBvdW5kcyAoOTAwZykgYm9uZWxlc3MgY2hpY2tlbiB0aGlnaHMgKDQtOCB0aGlnaHMsIGRlcGVuZGluZyBvbiBzaXplKSIsCiAgICAgICAgIndlaWdodCIgOiA5MDcuMTg0NzQKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogMjI1My4xMDE5ODEzMDY4NjYsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAxMTc5LjkxMDk5NDI4MDYwOTcsCiAgICAgICJ0b3RhbFRpbWUiIDogMC4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjUzLjEwMTk4MTMwNjg2NiwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTUxLjU2MzgzMzQ3MDIwNTE3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQxLjE2OTgzODg5MjY5Mjk0NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzcxMTA3MDI5MDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjEwMDI4MTM3MzA5ODM1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzEuODI5NTI4OTA5NjI3OTksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuNzI1NDY1MTQxMzM4NjIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjM3NzgyMTk3MzYyMTI0NTYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43OTM5MTA5ODY4MTA2MjI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYxLjcyMTc1MDE2NzQ4NTk2LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODg5LjA0MTA0NTIwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxMzkuODI0NzM1OTI4NDM2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE2LjUxMzAxMzU5MDc3NDA4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzYuODIxNjk2MjE0NjQyNDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUyOS43MjIxOTQ2NTEwNDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjMzNTQwNzA2Njc2NjQ2MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyLjk1MDQxNDI0MzgyODY5NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY2MC40MDgwMTE3ODEwODU5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMDguNjUyNDkwMjAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43MTA0NTUwMTY2MTE4NzY0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNTQyODE4NjU1MDU5MzgyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NS4wMjg0MTU1NDI1OTAzMjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy4zNzEzMjgxMTI5MTk5MzA0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ3LjcyNzQyNjczODM3MTgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuNzI3NDI2NzM4MzcxOCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNjI0NTQ1Mzg4MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45MDcxODQ3NDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuOTQ0MDg3OTU0LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOS4wNjU4Nzk1NDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTIuNjU1MDk5MDY1MzQzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjMzLjE3NTEyODQxNTcwMDI3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwNS44NDkxOTQ0NjM0NjQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuOTA4NDg4MzgwNDQ2MjA3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS41MTEyODc4OTQ0ODQ5ODIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMjMuNDQzNTAwMzM0OTcxOTMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOTYuMzQ3MDE1MDY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMzkuMTU5MzYzOTk3MDE4MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTEuNjUxMzAxMzU5MDc3NDA4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDY5LjIwNTQyNDA1MzY2MDYxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzIuMjc3Nzc2OTkwMDI5NzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2LjMwNzgxNzAzNzU5MTQ1NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODYuMzM2MDk0OTU4ODU3OTcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM3LjIwMTE0NDU0MDE1NTEzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjE4MzYxMDAyMjIyMjIyNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ny4zNjM2Njc3NzQxMjUxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTAuNzU0MDM4NTMyOTA0ODMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjI1LjE0MjA3NzcxMjk1MTYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjguNTY2NDA1NjQ1OTk2NTMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS45MzE4NTY2ODQ1OTI5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5My43NDI0MjMxMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjI2Nzk2MTg1MDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuNzIwNDM5NzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjMuODMyMzQ5NDI1MDAwMDA3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNTEuNTYzODMzNDcwMjA1MTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMzMuMTc1MTI4NDE1NzAwMjcsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA0MS4xNjk4Mzg4OTI2OTI5NDQsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMjA1Ljg0OTE5NDQ2MzQ2NDcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC43NzExMDcwMjkwMDAwMDAyLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA2My4xMDAyODEzNzMwOTgzNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzEuODI5NTI4OTA5NjI3OTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgInRhZyIgOiAiQ0hPQ0RGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjYXJib2h5ZHJhdGVDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTcuNzI1NDY1MTQxMzM4NjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1LjkwODQ4ODM4MDQ0NjIwNywKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTYuMzQ3NjQzMTY3NzE3Mzc2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4zNzc4MjE5NzM2MjEyNDU2LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDUuNTExMjg3ODk0NDg0OTgyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjc5MzkxMDk4NjgxMDYyMjgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE2MS43MjE3NTAxNjc0ODU5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMyMy40NDM1MDAzMzQ5NzE5MywKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA4ODkuMDQxMDQ1MjAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI5Ni4zNDcwMTUwNjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxMzkuODI0NzM1OTI4NDM2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzM5LjE1OTM2Mzk5NzAxODIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTYuNTEzMDEzNTkwNzc0MDgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMS42NTEzMDEzNTkwNzc0MDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI3Ni44MjE2OTYyMTQ2NDI0MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY5LjIwNTQyNDA1MzY2MDYxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI1MjkuNzIyMTk0NjUxMDQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzIuMjc3Nzc2OTkwMDI5NzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4LjMzNTQwNzA2Njc2NjQ2MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2LjMwNzgxNzAzNzU5MTQ1NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyLjk1MDQxNDI0MzgyODY5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDg2LjMzNjA5NDk1ODg1Nzk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNjYwLjQwODAxMTc4MTA4NTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMzcuMjAxMTQ0NTQwMTU1MTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIwOC42NTI0OTAyMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjE4MzYxMDAyMjIyMjIyNiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEuMjUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43MTA0NTUwMTY2MTE4NzY0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDcuMzYzNjY3Nzc0MTI1MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjU0MjgxODY1NTA1OTM4MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkwLjc1NDAzODUzMjkwNDgzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0NS4wMjg0MTU1NDI1OTAzMjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMjUuMTQyMDc3NzEyOTUxNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzLjM3MTMyODExMjkxOTkzMDQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNjguNTY2NDA1NjQ1OTk2NTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDcuNzI3NDI2NzM4MzcxOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExLjkzMTg1NjY4NDU5Mjk1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ3LjcyNzQyNjczODM3MTgsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICJ0YWciIDogIlZJVEIxMiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1LjYyNDU0NTM4ODAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5My43NDI0MjMxMzMzMzMzMywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC45MDcxODQ3NDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4yMjY3OTYxODUwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjk0NDA4Nzk1NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkuNzIwNDM5NzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE5LjA2NTg3OTU0MDAwMDAwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjgzMjM0OTQyNTAwMDAwNywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfYjc5MzI3ZDA1YjhlNWI4MzhhZDZjZmQ5NTc2YjMwYjYiLAogICAgICAibGFiZWwiIDogIkNoaWNrZW4gVmVzdXZpbyIsCiAgICAgICJpbWFnZSIgOiAiaHR0cHM6Ly93d3cuZWRhbWFtLmNvbS93ZWItaW1nL2U0Mi9lNDJmOTExOTgxM2U4OTBhZjM0YzI1OTc4NWFlMWNmYi5qcGciLAogICAgICAic291cmNlIiA6ICJTZXJpb3VzIEVhdHMiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LnNlcmlvdXNlYXRzLmNvbS9yZWNpcGVzLzIwMTEvMTIvY2hpY2tlbi12ZXN1dmlvLXJlY2lwZS5odG1sIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi12ZXN1dmlvLWI3OTMyN2QwNWI4ZTViODM4YWQ2Y2ZkOTU3NmIzMGI2L2NoaWNrZW4iLAogICAgICAieWllbGQiIDogNC4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJTdWdhci1Db25zY2lvdXMiLCAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxLzIgY3VwIG9saXZlIG9pbCIsICI1IGNsb3ZlcyBnYXJsaWMsIHBlZWxlZCIsICIyIGxhcmdlIHJ1c3NldCBwb3RhdG9lcywgcGVlbGVkIGFuZCBjdXQgaW50byBjaHVua3MiLCAiMSAzLTQgcG91bmQgY2hpY2tlbiwgY3V0IGludG8gOCBwaWVjZXMgKG9yIDMgcG91bmQgY2hpY2tlbiBsZWdzKSIsICIzLzQgY3VwIHdoaXRlIHdpbmUiLCAiMy80IGN1cCBjaGlja2VuIHN0b2NrIiwgIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwgIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwgIlNhbHQgYW5kIHBlcHBlciIsICIxIGN1cCBmcm96ZW4gcGVhcywgdGhhd2VkIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDEwOC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNSBjbG92ZXMgZ2FybGljLCBwZWVsZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTUuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgbGFyZ2UgcnVzc2V0IHBvdGF0b2VzLCBwZWVsZWQgYW5kIGN1dCBpbnRvIGNodW5rcyIsCiAgICAgICAgIndlaWdodCIgOiA3MzguMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgMy00IHBvdW5kIGNoaWNrZW4sIGN1dCBpbnRvIDggcGllY2VzIChvciAzIHBvdW5kIGNoaWNrZW4gbGVncykiLAogICAgICAgICJ3ZWlnaHQiIDogMTU4Ny41NzMyOTUwMDAwMDAxCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy80IGN1cCB3aGl0ZSB3aW5lIiwKICAgICAgICAid2VpZ2h0IiA6IDExMC4yNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMvNCBjdXAgY2hpY2tlbiBzdG9jayIsCiAgICAgICAgIndlaWdodCIgOiAxODAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMgdGFibGVzcG9vbnMgY2hvcHBlZCBwYXJzbGV5IiwKICAgICAgICAid2VpZ2h0IiA6IDExLjM5OTk5OTk5OTk5OTk5OQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgdGFibGVzcG9vbiBkcmllZCBvcmVnYW5vIiwKICAgICAgICAid2VpZ2h0IiA6IDYuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiAxNy4zNDEzMzk3NwogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgYW5kIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiA4LjY3MDY2OTg4NQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgY3VwIGZyb3plbiBwZWFzLCB0aGF3ZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTM0LjAKICAgICAgfSBdLAogICAgICAiY2Fsb3JpZXMiIDogNDE4MS4yNzQ1Mzg3MDEzNTEsCiAgICAgICJ0b3RhbFdlaWdodCIgOiAyOTEzLjE1MzY2NDU5ODc3MiwKICAgICAgInRvdGFsVGltZSIgOiA2MC4wLAogICAgICAidG90YWxOdXRyaWVudHMiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MTgxLjI3NDUzODcwMTM1MSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjc0LjU3MTEyOTgzMjYxMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Mi41NDE1MTE4NTQ2NTkyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wNDcxNjMzNDUzODIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQU1TIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDcuNDEwNjg2MzAzODkwMTIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Ny4zODk2OTkxMzY4MzIzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3Ni4xODg2MTMzOTE0NTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuMDU4ODc5NDgwOTA1MDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjcyNTc5MjI4NzI2NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzMC45MzA5MDc5NTI2NTE1MiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjc0MS4zMTk5Mzc0NjA3NjksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NDEuMTA4Mzc3OTg3ODU1MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDc5LjMzNDQxMDYyMDQ4NzcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTkwNi40NjY2Nzc0ODI3NTMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMy40NTIyMDI2MjAyODg5NDcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOC4zNDAyMjM1ODMyMDUyNzIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyMjMuMzA0OTI0MTAwMywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjM3Ljg3MDUxNTUxNDk1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDMuNzk4Nzk3NDQ5NjAwMDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS43MjgyNTA3Mjc4MzU4MDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuOTE3NDk2NTE0NTEzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ni45Njk3NjI0MTU5OTE1NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljg4NDA1MTA5MTQ2NTM0OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODIuNjg3NTA0MzE2NDUwMDMsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy4zNDY2MDQ1MDU4NiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi4xNTkwOTk2ODEyMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjE3NDUyNDQ4ODYwNDAwMywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzcxLjM5MTEzNDIxMDc0NTA3LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJ0b3RhbERhaWx5IiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjA5LjA2MzcyNjkzNTA2NzU2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjIuNDE3MTIyODE5NDAxNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTIuNzA3NTU5MjczMjk2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU4LjcyOTUzNzc5NzE1MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4NC4yMzU1MTc5MjM2MjAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2MS44NjE4MTU5MDUzMDMxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcxLjY4NzQ2MDE1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4MC44ODgzMzA3Mjc1MzIwNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDQuMTEwODM3Nzk4Nzg1NTIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE5LjgzMzYwMjY1NTEyMTkyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4Ljc1NjE5MDc4NTIyMTUyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuMjkwMDE0NTU3MTYwODIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyMi4yNjgxNTcyMjEzNjg0OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTcuNjE0OTg5MTU3MTg1NzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzAuODc0NTAxNzIzODgzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzIuOTk3OTk1NzQ5MzMzMzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuMjE2NzE1MTg5MDUzMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTIuNzkzOTEyNjE4NDExNzcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDM0Ljg0ODgxMjA3OTk1NzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNDQuMjAyNTU0NTczMjY3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcwLjY3MTg3NjA3OTExMjUxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDU1Ljc3Njc0MTc2NDMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41Mzk3NzQ5MjAzMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDAuODcyNjIyNDQzMDIwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDY0LjIzODkxNzc2MzQzMTM1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNzQuNTcxMTI5ODMyNjExLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDIyLjQxNzEyMjgxOTQwMTUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA2Mi41NDE1MTE4NTQ2NTkyLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDMxMi43MDc1NTkyNzMyOTYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4wNDcxNjMzNDUzODIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE0Ny40MTA2ODYzMDM4OTAxMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDcuMzg5Njk5MTM2ODMyMywKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNzYuMTg4NjEzMzkxNDU3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU4LjcyOTUzNzc5NzE1MjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE1NS4xMjk3MzM5MTA1NTI1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMjEuMDU4ODc5NDgwOTA1MDAyLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDg0LjIzNTUxNzkyMzYyMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxNS43MjU3OTIyODcyNjQsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIzMC45MzA5MDc5NTI2NTE1MiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQ2MS44NjE4MTU5MDUzMDMxLAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDgxNS4wNjIzODA0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI3MS42ODc0NjAxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2NzQxLjMxOTkzNzQ2MDc2OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4MC44ODgzMzA3Mjc1MzIwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0MS4xMDgzNzc5ODc4NTUyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDQuMTEwODM3Nzk4Nzg1NTIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ3OS4zMzQ0MTA2MjA0ODc3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE5LjgzMzYwMjY1NTEyMTkyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDU5MDYuNDY2Njc3NDgyNzUzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTY4Ljc1NjE5MDc4NTIyMTUyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjMuNDUyMjAyNjIwMjg4OTQ3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMwLjI5MDAxNDU1NzE2MDgyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTguMzQwMjIzNTgzMjA1MjcyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTIyLjI2ODE1NzIyMTM2ODQ4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMjIzLjMwNDkyNDEwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMTcuNjE0OTg5MTU3MTg1NzMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDYzNy44NzA1MTU1MTQ5NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcwLjg3NDUwMTcyMzg4MzMzLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDMuNzk4Nzk3NDQ5NjAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzIuOTk3OTk1NzQ5MzMzMzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS43MjgyNTA3Mjc4MzU4MDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTE1LjIxNjcxNTE4OTA1MzM1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuOTE3NDk2NTE0NTEzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTEyLjc5MzkxMjYxODQxMTc3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4Ni45Njk3NjI0MTU5OTE1NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQzNC44NDg4MTIwNzk5NTc4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDYuODg0MDUxMDkxNDY1MzQ5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzQ0LjIwMjU1NDU3MzI2NzUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzAuNjcxODc2MDc5MTEyNTEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgInRhZyIgOiAiRk9MRkQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjgyLjY4NzUwNDMxNjQ1MDAzLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy4zNDY2MDQ1MDU4NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU1Ljc3Njc0MTc2NDMzMzMzLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjE1OTA5OTY4MTIwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAwLjUzOTc3NDkyMDMwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjAuMTc0NTI0NDg4NjA0MDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTAwLjg3MjYyMjQ0MzAyMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzNzEuMzkxMTM0MjEwNzQ1MDcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0NjQuMjM4OTE3NzYzNDMxMzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzBhM2Y0OWEzZGEwN2NkODM3OWQ0ZTM1ZjdhMWE3MmZjIiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFRlcml5YWtpIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvODI3LzgyNzVjYzMzZTlmMGY0MzE0NjE3ZDVhMzU2OTAwYWE3LmpwZyIsCiAgICAgICJzb3VyY2UiIDogIk5vIFJlY2lwZXMiLAogICAgICAidXJsIiA6ICJodHRwOi8vbm9yZWNpcGVzLmNvbS9ibG9nLzIwMDkvMDcvMTYvY2hpY2tlbi10ZXJpeWFraS1yZWNpcGUvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi10ZXJpeWFraS0wYTNmNDlhM2RhMDdjZDgzNzlkNGUzNWY3YTFhNzJmYy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDguMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMS8yIGN1cCB3YXRlciIsICIyIHRhYmxlc3Bvb25zIEphcGFuZXNlIHNveSBzYXVjZSIsICIyIHRhYmxlc3Bvb25zIGRhcmsgYnJvd24gc3VnYXIiLCAiMiB0YWJsZXNwb29ucyBtaXJpbiIsICI0LTYgc2tpbi1vbiBmaWxsZXRlZCAoYm9uZWxlc3MpIGNoaWNrZW4gdGhpZ2hzIiwgIjIgdGFibGVzcG9vbnMgbWlsZCBmbGF2b3JlZCBob25leSAob3IgbWFsdG9zZSkiLCAiMiB0YWJsZXNwb29ucyBkYXJrIHNveSBzYXVjZSIsICIyIHRhYmxlc3Bvb25zIHNha2UiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMS8yIGN1cCB3YXRlciIsCiAgICAgICAgIndlaWdodCIgOiAxMTguNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgSmFwYW5lc2Ugc295IHNhdWNlIiwKICAgICAgICAid2VpZ2h0IiA6IDMyLjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIGRhcmsgYnJvd24gc3VnYXIiLAogICAgICAgICJ3ZWlnaHQiIDogMTguMTI1MDAwMDAwMDAwMDA0CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBtaXJpbiIsCiAgICAgICAgIndlaWdodCIgOiAyOS44CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNC02IHNraW4tb24gZmlsbGV0ZWQgKGJvbmVsZXNzKSBjaGlja2VuIHRoaWdocyIsCiAgICAgICAgIndlaWdodCIgOiA3NDUuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgbWlsZCBmbGF2b3JlZCBob25leSAob3IgbWFsdG9zZSkiLAogICAgICAgICJ3ZWlnaHQiIDogNDIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgZGFyayBzb3kgc2F1Y2UiLAogICAgICAgICJ3ZWlnaHQiIDogMzIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgc2FrZSIsCiAgICAgICAgIndlaWdodCIgOiAyOS4xCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDE5NTUuODUxLAogICAgICAidG90YWxXZWlnaHQiIDogMTA0Ni41MjQ5OTk5OTk5OTk5LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTk1NS44NTEsCiAgICAgICAgICAidW5pdCIgOiAia2NhbCIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNC4xMDkzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzLjc1MDUxOTk5OTk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNjMzMjUwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUxLjc1OTMyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuOTk3NDcwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYwLjM0OTUxMjUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjU5NjAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTIuMzMxMjc1MDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIuYWRkZWQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4wNzUyNzUwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjguNzI1ODUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MzAuMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDEzMS42NDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5Ny4zMzM3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTg4LjY1MDI1MDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4NTguODcxMjUwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzU3OTg3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjI4ODc2NzQ5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI4MS44MjkwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuMzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NjQ5NywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjIwMTgwOTk5OTk5OTk5OTgsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjkzMjQ0NzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi42OTczODEyNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMi4zMzEyNTAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMzMxMjUwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNC42MTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNzQ1MDAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjU2NDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjY0NTAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3Ljc5MjU1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTAuOTM3Mzg0NjE1Mzg0NjIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4Ljc1MjU5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjExNjUwNDE2NjY2NjY2NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuMzg0MDAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI1Ny40NTE3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQzLjM2NjY2NjY2NjY2NjY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3Mi4xNTE3OTE2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOS43MzMzNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDcuMTYyNTYyNTAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1My4xMTA2MDcxNDI4NTcxNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUuMzIyMTUyNzc3Nzc3NzgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY4LjU5MTc4MzMzMzMzMzMyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4My4xMTg0Mjg1NzE0Mjg2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5LjAzODg4ODg4ODg4ODg4OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy42NjQ2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcwLjY5NDcwNTg4MjM1MjkzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3OS42NjIyMzc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTM0Ljg2OTA2MjQ5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4wODI4MTI1MDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuOTgzMzMzMzMzMzMzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjE4NjI1MDAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjgyMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuNTU2MjUwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjQuMTA5MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE5MC45MzczODQ2MTUzODQ2MiwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDMzLjc1MDUxOTk5OTk5OTk5NSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxNjguNzUyNTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC42MzMyNTAwMDAwMDAwMDAxLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA1MS43NTkzMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjUuOTk3NDcwMDAwMDAwMDAzLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDYwLjM0OTUxMjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC4xMTY1MDQxNjY2NjY2NjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU5Ljc1MzUxMjUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjU5NjAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMi4zODQwMDAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic3VnYXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA1Mi4zMzEyNzUwMDAwMDAwMDUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNTIuMDc1Mjc1MDAwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDEyOC43MjU4NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1Ny40NTE3LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDczMC4xLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjQzLjM2NjY2NjY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDQxMzEuNjQzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcyLjE1MTc5MTY2NjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOTcuMzMzNzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5LjczMzM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTg4LjY1MDI1MDAwMDAwMDAzLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDcuMTYyNTYyNTAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTg1OC44NzEyNTAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTMuMTEwNjA3MTQyODU3MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjM1Nzk4NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNS4zMjIxNTI3Nzc3Nzc3OCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEwLjI4ODc2NzQ5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY4LjU5MTc4MzMzMzMzMzMyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMjgxLjgyOTAwMDAwMDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxODMuMTE4NDI4NTcxNDI4NiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTcxLjM1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuMDM4ODg4ODg4ODg4ODg4LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjIxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4zNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjU2NDk3LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuNjY0NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4yMDE4MDk5OTk5OTk5OTk4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzAuNjk0NzA1ODgyMzUyOTMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDM1LjkzMjQ0NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzkuNjYyMjM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjY5NzM4MTI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTM0Ljg2OTA2MjQ5OTk5OTk4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjMzMTI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguMDgyODEyNTAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjMzMTI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuNjE5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzYuOTgzMzMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNzQ1MDAwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMTg2MjUwMDAwMDAwMDAwMDMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS41NjQ1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNy44MjI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNS42NDUwMDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxOS41NTYyNTAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzg4OGU5ZmM0YTgwOGU5ZTRjY2RiMmFjMjRhNmEyZjQ2IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFRlcml5YWtpIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvNTUxLzU1MWI5MDZiYWZkNGM0NWQ1MDAzMzc0MmVhZjAwYzAyLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIlNhdmV1ciIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly93d3cuc2F2ZXVyLmNvbS9hcnRpY2xlL1JlY2lwZXMvQ2hpY2tlbi1UZXJpeWFraSIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2NoaWNrZW4tdGVyaXlha2ktODg4ZTlmYzRhODA4ZTllNGNjZGIyYWMyNGE2YTJmNDYvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiAyLjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiLCAiQWxjb2hvbC1GcmVlIiBdLAogICAgICAiY2F1dGlvbnMiIDogWyBdLAogICAgICAiaW5ncmVkaWVudExpbmVzIiA6IFsgIjEgdGJzcC4gdmVnZXRhYmxlIG9pbCIsICI0IHBpZWNlcyBjaGlja2VuLCB0cmltbWVkLCBza2luIHBpZXJjZWQgd2l0aCBhIGZvcmsiLCAiwr0gY3VwIFRlcml5YWtpIFNhdWNlIiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEgdGJzcC4gdmVnZXRhYmxlIG9pbCIsCiAgICAgICAgIndlaWdodCIgOiAxNC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNCBwaWVjZXMgY2hpY2tlbiwgdHJpbW1lZCwgc2tpbiBwaWVyY2VkIHdpdGggYSBmb3JrIiwKICAgICAgICAid2VpZ2h0IiA6IDM1Ny42CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiwr0gY3VwIFRlcml5YWtpIFNhdWNlIiwKICAgICAgICAid2VpZ2h0IiA6IDE0NC4wCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEwMjAuNzYsCiAgICAgICJ0b3RhbFdlaWdodCIgOiA1MTUuNiwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMjAuNzYwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjcuODgzMzYwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYuMzI0MSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNDU0MjUyMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjM5Mjk4MDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMuOTQ0MjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjQwNjQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjE0NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMC4zMDQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3NS4wNTI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY4LjIwMDAwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1NzY5LjgzOTk5OTk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDc1LjMzNjAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTkuMzYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTk5Ljg2NDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjY2NjQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjgyODU2MDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzQ3LjQzMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ2LjYxNiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS43MjE2MDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4yNTc3NjAwMDAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjUyOTkyMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2LjE0OTE3NjAwMDAwMDAwNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjM5NTYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuOTc2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyLjk3NiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMTA4NTYwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC43MTUyMDAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMTI0ODAwMDAwMDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS4zNjQwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MS4wMzgwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNC40MzU5Mzg0NjE1Mzg0OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4MS42MjA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuNDY4ODAwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTAuMTA1NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg5LjQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjQwLjQwOTk5OTk5OTk5OTk0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjUzMzYwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzOS44NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI4LjU2NzU0Mjg1NzE0Mjg2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMS40OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMTkwNDAwMDAwMDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNi43NzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYuMjkwNjY2NjY2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA5LjUzNjAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3LjE4NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMxLjE3MTc2NDcwNTg4MjM1NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuNzQ1ODgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2OS43OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguMjQ0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4LjQ3NjAwMDAwMDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMTc4ODAwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjYyNDAwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjcwNTAwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogNjcuODgzMzYwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMDQuNDM1OTM4NDYxNTM4NDgsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxNi4zMjQxLAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDgxLjYyMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC40NTQyNTIwMDAwMDAwMDAxLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAzMi4zOTI5ODAwMDAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTMuOTQ0MjAwMDAwMDAwMDAyLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIyLjQwNjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3LjQ2ODgwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMgKG5ldCkiLAogICAgICAgICAgInRhZyIgOiAiQ0hPQ0RGLm5ldCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjIuMjYyNDAwMDAwMDAwMDAzLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4xNDQsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogMC41NzYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIwLjMwNCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNzUuMDUyOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE1MC4xMDU2LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI2OC4yMDAwMDAwMDAwMDAwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDg5LjQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNTc2OS44Mzk5OTk5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNDAuNDA5OTk5OTk5OTk5OTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3NS4zMzYwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuNTMzNjAwMDAwMDAwMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTkuMzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOS44NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA5OTkuODY0MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4LjU2NzU0Mjg1NzE0Mjg2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS42NjY0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzEuNDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjgyODU2MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMyLjE5MDQwMDAwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNzQ3LjQzMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEwNi43NzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE0Ni42MTYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNi4yOTA2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICJ0YWciIDogIlZJVEMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS43MjE2MDAwMDAwMDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA5LjUzNjAwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjI1Nzc2MDAwMDAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcuMTg0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNTI5OTIwMDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMxLjE3MTc2NDcwNTg4MjM1NywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjYuMTQ5MTc2MDAwMDAwMDA0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTMwLjc0NTg4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMzk1NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY5Ljc4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjk3NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguMjQ0LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjk3NiwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMTA4NTYwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4LjQ3NjAwMDAwMDAwMDAwMywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC43MTUyMDAwMDAwMDAwMDAyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4xNzg4MDAwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjEyNDgwMDAwMDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC42MjQwMDAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuMzY0MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi43MDUwMDAwMDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzE0ZWJkN2Q2ZDY1Zjc2MTg0M2RiYTM1MjAyZGU0YjM3IiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFNhdGF5IiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvYmE2L2JhNmY2NmQ4ODVlNGQ2MmE5ODA1NWIwODhhNWE4NWEzLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIkJCQyBHb29kIEZvb2QiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmJiY2dvb2Rmb29kLmNvbS9yZWNpcGVzLzM2NDUvIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2hpY2tlbi1zYXRheS0xNGViZDdkNmQ2NWY3NjE4NDNkYmEzNTIwMmRlNGIzNy9jaGlja2VuIiwKICAgICAgInlpZWxkIiA6IDQuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiSGlnaC1Qcm90ZWluIiwgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLCAiNC4wIHRic3Agc21vb3RoIHBlYW51dCBidXR0ZXIiLCAiNCBza2lubGVzcyBjaGlja2VuIGJyZWFzdHMgZmlsbGV0cyIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICIxMDAuMG1sIHNveSBzYXVjZSAoS2lra29tYW4gaXMgZ29vZCkiLAogICAgICAgICJ3ZWlnaHQiIDogMTA3Ljc4MjE5NzM2MjEyNDU1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNC4wIHRic3Agc21vb3RoIHBlYW51dCBidXR0ZXIiLAogICAgICAgICJ3ZWlnaHQiIDogNjQuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjQgc2tpbmxlc3MgY2hpY2tlbiBicmVhc3RzIGZpbGxldHMiLAogICAgICAgICJ3ZWlnaHQiIDogMTA4OC4wCiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDE3NDUuNDQ0NTY0NjAxOTI2MiwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDEyNTkuNzgyMTk3MzYyMTI0NiwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3NDUuNDQ0NTY0NjAxOTI2MiwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjEuOTkwMzU4NTI0OTY0MTIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuODEyMTIxMDA0MDc0MzUxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4xMjQxNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI0LjE5MzQwODMzMzY3ODY3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuOTE4OTg3MTc5MDYyMzksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuNTkyMDYyMzI5OTUyNzQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjA2MjI1NzU3ODg5Njk5NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlNVR0FSIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjE0NDcyODc4OTQ0ODQ5OCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2Ny43ODc4NzA4NjUyNzY5NCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc5NC4yNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQyMC45NTYxMDExMDE1MDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjEuMzI4MTI1MTI5NTAxMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDkxLjkxODgyNjA0Nzk3MjIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDQ1OS44OTI1NTg1MjUyNDIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2LjcwMjA0MTg2MTc1MDgwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuOTQyNTA1MTE3MDUwNDg1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzEwLjc1ODQ0NzYyMTEyNywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuMTYwMDAwMDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuMTU0Mjg4MTI1MTI5NTAxMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjIyNjQ4MDYyNTY0NzUwNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTE1LjIwNjU3NzA1NDA3MjI3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkuMjY1NDM3NjUyMDk1OTQ2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjguNjg5NTA3NjMwNjk3NDUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjI4NDgsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwLjg4LAogICAgICAgICAgInVuaXQiIDogIklVIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTEuOTE2ODAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjM2ODAwMDAwMDAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4Ny4yNzIyMjgyMzAwOTYzMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTUuMzY5NzgyMzQ2MDk4NjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQuMDYwNjA1MDIwMzcxNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNi41MzA2ODc0NDMzMTc1NzksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNi4yNDkwMzAzMTU1ODc5ODcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MzUuNTc1NzQxNzMwNTUzOSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2NC43NDY2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNjcuNTM5ODM3NTQ1ODk1OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuMTMyODEyNTEyOTUwMTEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIyLjk3OTcwNjUxMTk5MzA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3LjQyNTUwMTY3MjE0OTc2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4yMzM1NjU4OTg2MTU1OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjYuMjgzMzY3NDQ3MDAzMjQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzg3LjI1MTIwNjgwMzAxODE0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguNDYyMjIyMjIyMjIyMjIzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNzYuOTUyNTQxNjc1MzAwMDgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzAuOTY5NDQ4NTY3NTAwMzQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOSUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTc2LjAzMjg4NTI3MDM2MTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NjMuMjcxODgyNjA0Nzk3MjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0Mi4xNzIzNzY5MDc2NzQzNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzOC4wODAwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjcyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OS41ODQwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjk2MDAwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJkaWdlc3QiIDogWyB7CiAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICJ0YWciIDogIkZBVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmF0Q29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDYxLjk5MDM1ODUyNDk2NDEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTUuMzY5NzgyMzQ2MDk4NjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQVNBVCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzYXR1cmF0ZWRGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxMi44MTIxMjEwMDQwNzQzNTEsCiAgICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgICAiZGFpbHkiIDogNjQuMDYwNjA1MDIwMzcxNzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4xMjQxNiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMjQuMTkzNDA4MzMzNjc4NjcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEyLjkxODk4NzE3OTA2MjM5LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDE5LjU5MjA2MjMyOTk1Mjc0LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi41MzA2ODc0NDMzMTc1NzksCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE1LjUyOTgwNDc1MTA1NTc0MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDQuMDYyMjU3NTc4ODk2OTk3LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDE2LjI0OTAzMDMxNTU4Nzk4NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNy4xNDQ3Mjg3ODk0NDg0OTgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI2Ny43ODc4NzA4NjUyNzY5NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUzNS41NzU3NDE3MzA1NTM5LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDc5NC4yNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2NC43NDY2NjY2NjY2NjY2NywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA2NDIwLjk1NjEwMTEwMTUwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2Ny41Mzk4Mzc1NDU4OTU5LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIxLjMyODEyNTEyOTUwMTEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMi4xMzI4MTI1MTI5NTAxMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDkxLjkxODgyNjA0Nzk3MjIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjIuOTc5NzA2NTExOTkzMDQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDQ1OS44OTI1NTg1MjUyNDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjcuNDI1NTAxNjcyMTQ5NzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAidGFnIiA6ICJGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2LjcwMjA0MTg2MTc1MDgwNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM3LjIzMzU2NTg5ODYxNTU4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOS45NDI1MDUxMTcwNTA0ODUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2Ni4yODMzNjc0NDcwMDMyNCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjcxMC43NTg0NDc2MjExMjcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzODcuMjUxMjA2ODAzMDE4MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2LjE2MDAwMDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOC40NjIyMjIyMjIyMjIyMjMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICJ0YWciIDogIlRISUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS4xNTQyODgxMjUxMjk1MDEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNzYuOTUyNTQxNjc1MzAwMDgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi4yMjY0ODA2MjU2NDc1MDYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMzAuOTY5NDQ4NTY3NTAwMzQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExNS4yMDY1NzcwNTQwNzIyNywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU3Ni4wMzI4ODUyNzAzNjE0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDkuMjY1NDM3NjUyMDk1OTQ2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDYzLjI3MTg4MjYwNDc5NzI3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyLjE3MjM3NjkwNzY3NDM2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2OC42ODk1MDc2MzA2OTc0NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMjg0OCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM4LjA4MDAwMDAwMDAwMDAwNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICJ0YWciIDogIlZJVEQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTAuODgsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyLjcyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgInRhZyIgOiAiVE9DUEhBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExLjkxNjgwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU5LjU4NDAwMDAwMDAwMDAyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyLjM2ODAwMDAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyLjk2MDAwMDAwMDAwMDAwMDQsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2UyOWZlZWIyNTBjM2NjMGY2ZWI0ODdiN2NhZTVkOGIxIiwKICAgICAgImxhYmVsIiA6ICJDaGlja2VuIFBpY2NhdGEiLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy85M2UvOTNlNWUyMmM4NzkyYmZiYzlmYTM2NTQyMDczNDdjOWMuanBnIiwKICAgICAgInNvdXJjZSIgOiAiTGVpdGUncyBDdWxpbmFyaWEiLAogICAgICAidXJsIiA6ICJodHRwOi8vbGVpdGVzY3VsaW5hcmlhLmNvbS81MzU0L3JlY2lwZXMtY2hpY2tlbi1waWNjYXRhLmh0bWwiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9jaGlja2VuLXBpY2NhdGEtZTI5ZmVlYjI1MGMzY2MwZjZlYjQ4N2I3Y2FlNWQ4YjEvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwgIjEvMiBjdXAgYWxsLXB1cnBvc2UgZmxvdXIiLCAiMiB0YWJsZXNwb29ucyBvbGl2ZSBvaWwiLCAiNCB0YWJsZXNwb29ucyB1bnNhbHRlZCBidXR0ZXIiLCAiMiB0YWJsZXNwb29ucyBmcmVzaCBsZW1vbiBqdWljZSIsICIxIHRhYmxlc3Bvb24gY2FwZXJzLCBkcmFpbmVkIiwgIjIgdGFibGVzcG9vbnMgY2hvcHBlZCBmcmVzaCBmbGF0LWxlYWYgcGFyc2xleSIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICI0IGJvbmVsZXNzLCBza2lubGVzcyBjaGlja2VuIGJyZWFzdCBoYWx2ZXMsIHBhdHRlZCBkcnkgKDIgMS8yIHRvIDMgcG91bmRzIHRvdGFsKSIsCiAgICAgICAgIndlaWdodCIgOiAzNDguMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIktvc2hlciBzYWx0IGFuZCBmcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLAogICAgICAgICJ3ZWlnaHQiIDogMy4yMzEKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJLb3NoZXIgc2FsdCBhbmQgZnJlc2hseSBncm91bmQgYmxhY2sgcGVwcGVyIiwKICAgICAgICAid2VpZ2h0IiA6IDEuNjE1NQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiBjdXAgYWxsLXB1cnBvc2UgZmxvdXIiLAogICAgICAgICJ3ZWlnaHQiIDogNjIuNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjIgdGFibGVzcG9vbnMgb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDI3LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICI0IHRhYmxlc3Bvb25zIHVuc2FsdGVkIGJ1dHRlciIsCiAgICAgICAgIndlaWdodCIgOiA1Ni44CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0YWJsZXNwb29ucyBmcmVzaCBsZW1vbiBqdWljZSIsCiAgICAgICAgIndlaWdodCIgOiAyOC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMSB0YWJsZXNwb29uIGNhcGVycywgZHJhaW5lZCIsCiAgICAgICAgIndlaWdodCIgOiA4LjYKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIyIHRhYmxlc3Bvb25zIGNob3BwZWQgZnJlc2ggZmxhdC1sZWFmIHBhcnNsZXkiLAogICAgICAgICJ3ZWlnaHQiIDogNy42CiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDEzMDUuOTY0OTA1MDAwMDAwMywKICAgICAgInRvdGFsV2VpZ2h0IiA6IDU0Mi4zOTc4NzQ0NTkzMTE3LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMwNS45NjQ5MDUwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4My4wNTQ0NDUzLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjAyNTA1Njc2MDAwMDAwNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuODg2MjYzOTk5OTk5OTk5NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM0LjEzMjk0OTU0NDk5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzYwODQ5NjksCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTEuNTk0NTYyMjUwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjcwNjIyMTUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wMTg2MjkyLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODUuOTMzNTgwNDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNzYuMTU5OTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNTYuMDI3NzkyOTQwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjMuNDI5MzI4NzQ0NTkzMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzM5LjEzMzU4NDk1Njc0NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMTUxNzc2ODg1NzE1NzI4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi45OTkzNjY4MjQ0NTkzMTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4MzIuNDMyNDksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ0NS45MDYxODQ5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMS4zMTM4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuODM3MTMzNzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45NzA1MzE4OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4zMjE2NjExNjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi44Nzc4ODMxMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjM0LjMwMzYzNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiRk9MRkQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC41NTM2MzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEFDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTYuMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjgyNzM2LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjg1MTk5OTk5OTk5OTk5OTksCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNy40NzYyOTEyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTAuNTEzNjczNSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY1LjI5ODI0NTI1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMjcuNzc2MDY5NjkyMzA3NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzUuMTI1MjgzODAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTcuMTk4MTg3NDE2NjY2NjcsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMC44MjQ4ODYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzEuODY3MTYwOSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNS4zODY2NjY2NjY2NjY2NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Mi4zMzQ0OTEzNzI1MDAwMjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuMzk4OTQzNDg3MDIzNDc5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMwLjg1NzMzMjE4NjE0ODI3NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4LjI2MDk1OTU3MDE5MjcyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOC42MjA5ODI2OTg0MjA3MTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE5Ljk5NTc3ODgyOTcyODc0MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTguOTE4OTI3MTQyODU3MTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDkuNTQ1MTMxNjY2NjY2NjU2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUuNTIzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTUuODA4OTE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTcuMDkwMTExNzY0NzA1ODc0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4Ni42MDgzMDU4MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNDMuODk0MTU1MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGT0xERkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1OC41NzU5MDg3NTAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMy43ODkzMzMzMzMzMzMzMzMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjIxMjk5OTk5OTk5OTk5OTk3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNy4zODE0NTYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTg4LjE0MjA5MTg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogODMuMDU0NDQ1MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNy43NzYwNjk2OTIzMDc3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMzUuMDI1MDU2NzYwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDE3NS4xMjUyODM4MDAwMDAwMywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInRhZyIgOiAiRkFUUk4iLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAidHJhbnNGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAxLjg4NjI2Mzk5OTk5OTk5OTcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDM0LjEzMjk0OTU0NDk5OTk5NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNi4zNjA4NDk2OSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA1MS41OTQ1NjIyNTAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE3LjE5ODE4NzQxNjY2NjY3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA0OC44ODgzNDA3NTAwMDAwMSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDIuNzA2MjIxNSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAxMC44MjQ4ODYsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDEuMDE4NjI5MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogODUuOTMzNTgwNDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNzEuODY3MTYwOSwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAzNzYuMTU5OTk5OTk5OTk5OTcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMjUuMzg2NjY2NjY2NjY2NjcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTI1Ni4wMjc3OTI5NDAwMDA2LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTIuMzM0NDkxMzcyNTAwMDI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgInRhZyIgOiAiQ0EiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjMuOTg5NDM0ODcwMjM0NzksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2LjM5ODk0MzQ4NzAyMzQ3OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgInRhZyIgOiAiTUciLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIzLjQyOTMyODc0NDU5MzEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMC44NTczMzIxODYxNDgyNzcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTMzOS4xMzM1ODQ5NTY3NDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzOC4yNjA5NTk1NzAxOTI3MiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDUuMTUxNzc2ODg1NzE1NzI4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjguNjIwOTgyNjk4NDIwNzE1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi45OTkzNjY4MjQ0NTkzMTEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuOTk1Nzc4ODI5NzI4NzQyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4MzIuNDMyNDksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMTguOTE4OTI3MTQyODU3MTQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQ0NS45MDYxODQ5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDkuNTQ1MTMxNjY2NjY2NjU2LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMS4zMTM4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzUuNTIzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODM3MTMzNzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1NS44MDg5MTYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC45NzA1MzE4OTk5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNTcuMDkwMTExNzY0NzA1ODc0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzNy4zMjE2NjExNjUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxODYuNjA4MzA1ODI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgInRhZyIgOiAiVklUQjZBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuODc3ODgzMTA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTQzLjg5NDE1NTI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIzNC4zMDM2MzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1OC41NzU5MDg3NTAwMDAwMSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3MC41NTM2MzUsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDk2LjI1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODI3MzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMy43ODkzMzMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuODUxOTk5OTk5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMjEyOTk5OTk5OTk5OTk5OTcsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNy40NzYyOTEyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzcuMzgxNDU2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxNTAuNTEzNjczNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4OC4xNDIwOTE4NzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlX2JlM2JhMDg3ZTIxMmYxMzY3MmI1NTNlY2ZhODc2MzMzIiwKICAgICAgImxhYmVsIiA6ICJCYWtlZCBDaGlja2VuIiwKICAgICAgImltYWdlIiA6ICJodHRwczovL3d3dy5lZGFtYW0uY29tL3dlYi1pbWcvMDFjLzAxY2FjYjcwODkwMjc0ZmI3YjdjZWJiOTc1YTkzMjMxLmpwZyIsCiAgICAgICJzb3VyY2UiIDogIk1hcnRoYSBTdGV3YXJ0IiwKICAgICAgInVybCIgOiAiaHR0cDovL3d3dy5tYXJ0aGFzdGV3YXJ0LmNvbS8zMTg5ODEvYmFrZWQtY2hpY2tlbiIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL2Jha2VkLWNoaWNrZW4tYmUzYmEwODdlMjEyZjEzNjcyYjU1M2VjZmE4NzYzMzMvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICI2IGJvbmUtaW4gY2hpY2tlbiBicmVhc3QgaGFsdmVzLCBvciA2IGNoaWNrZW4gdGhpZ2hzIGFuZCB3aW5ncywgc2tpbi1vbiIsICIxLzIgdGVhc3Bvb24gY29hcnNlIHNhbHQiLCAiMS8yIHRlYXNwb29uIE1ycy4gRGFzaCBzZWFzb25pbmciLCAiMS80IHRlYXNwb29uIGZyZXNobHkgZ3JvdW5kIGJsYWNrIHBlcHBlciIgXSwKICAgICAgImluZ3JlZGllbnRzIiA6IFsgewogICAgICAgICJ0ZXh0IiA6ICI2IGJvbmUtaW4gY2hpY2tlbiBicmVhc3QgaGFsdmVzLCBvciA2IGNoaWNrZW4gdGhpZ2hzIGFuZCB3aW5ncywgc2tpbi1vbiIsCiAgICAgICAgIndlaWdodCIgOiA1MjIuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEvMiB0ZWFzcG9vbiBjb2Fyc2Ugc2FsdCIsCiAgICAgICAgIndlaWdodCIgOiAyLjQyNzA4MzMzMzMzMzMzMzUKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIxLzIgdGVhc3Bvb24gTXJzLiBEYXNoIHNlYXNvbmluZyIsCiAgICAgICAgIndlaWdodCIgOiAwLjc1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMS80IHRlYXNwb29uIGZyZXNobHkgZ3JvdW5kIGJsYWNrIHBlcHBlciIsCiAgICAgICAgIndlaWdodCIgOiAwLjU3NQogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiA5MDEuNTg1NzUsCiAgICAgICJ0b3RhbFdlaWdodCIgOiA1MjUuNjE1NjM1MDE5ODY2OSwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDkwMS41ODU3NSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDguMzYwMjIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMuOTE3ODc5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC41NDgwOTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTkuOTUzNjk0MjQ5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAuMjUxNDU4NDk5OTk5OTk4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuODU5NjM3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZJQlRHIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMjMwMjI1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMDE3MTgsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMDguOTY4NjY3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzNC4wOCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIxNi45ODE4MjEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ny45ODcwMDI0MDQ3NjgwNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMzLjE4NjE1NjM1MDE5ODY3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDExNjEuMzU1MDAwODAxNTg5MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMTkwOTQxNTk1NTY1NTYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjIwODY4MzEzNTAxOTg2OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTEwLjQ3MSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI2LjQyNTI0OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjA5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuMzMxNDYwOTk5OTk5OTk5OTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC40NDYxNjc1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MS43NDg2MDcyNDk5OTk5OSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjc3ODE3MzI1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjAxMjc1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjAxMjc1LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRCMTIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS43NzQ4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyLjA4OCwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjQyNTI4LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljk4MTc3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfQogICAgICB9LAogICAgICAidG90YWxEYWlseSIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ1LjA3OTI4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc0LjQwMDMzODQ2MTUzODQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY5LjU4OTM5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjI4NjU0NTgzMzMzMzMzMzMzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC45MjA5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjE3LjkzNzMzNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMS4zNiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1MC43MDc1NzU4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYuNzk4NzAwMjQwNDc2ODA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMzLjI5NjUzOTA4NzU0OTY3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzMuMTgxNTcxNDUxNDczOTgsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIzLjI4MzAwODg2NDI1MzExMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjguMDU3ODg3NTY2Nzk5MTIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTMwLjA2NzI4NTcxNDI4NTczLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE0LjA0NzI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMC4xNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjA5NzM5OTk5OTk5OTk5NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2LjI0NTE0NzA1ODgyMzUyNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNTguNzQzMDM2MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzguOTA4NjYyNSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuNTAzMTg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyOS41OCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNTIyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3LjEyNjQwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjcyNzIxODc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA0OC4zNjAyMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDc0LjQwMDMzODQ2MTUzODQ3LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTMuOTE3ODc5LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDY5LjU4OTM5NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInRhZyIgOiAiRkFUUk4iLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAidHJhbnNGYXRDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiAwLjU0ODA5OTk5OTk5OTk5OTksCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiTW9ub3Vuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBTVMiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDE5Ljk1MzY5NDI0OTk5OTk5OCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMTAuMjUxNDU4NDk5OTk5OTk4LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDAuODU5NjM3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuMjg2NTQ1ODMzMzMzMzMzMzMsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuNjI5NDEyNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDAuMjMwMjI1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDAuOTIwOSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMC4wMTcxOCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMTA4Ljk2ODY2NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMTcuOTM3MzM1LAogICAgICAgICJ1bml0IiA6ICJnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgInRhZyIgOiAiQ0hPTEUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNob2xlc3Rlcm9sQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDMzNC4wOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDExMS4zNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjE2Ljk4MTgyMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUwLjcwNzU3NTg3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDY3Ljk4NzAwMjQwNDc2ODA1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNi43OTg3MDAyNDA0NzY4MDUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEzMy4xODYxNTYzNTAxOTg2NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMzLjI5NjUzOTA4NzU0OTY3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAidGFnIiA6ICJLIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDExNjEuMzU1MDAwODAxNTg5MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMzLjE4MTU3MTQ1MTQ3Mzk4LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNC4xOTA5NDE1OTU1NjU1NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIzLjI4MzAwODg2NDI1MzExMiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDQuMjA4NjgzMTM1MDE5ODY4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjguMDU3ODg3NTY2Nzk5MTIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAidGFnIiA6ICJQIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDkxMC40NzEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMzAuMDY3Mjg1NzE0Mjg1NzMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyNi40MjUyNDk5OTk5OTk5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE0LjA0NzI1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjA5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC4xNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgInRhZyIgOiAiVEhJQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjMzMTQ2MDk5OTk5OTk5OTk1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjIuMDk3Mzk5OTk5OTk5OTk3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNDQ2MTY3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2LjI0NTE0NzA1ODgyMzUyNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNTEuNzQ4NjA3MjQ5OTk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyNTguNzQzMDM2MjUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi43NzgxNzMyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEzOC45MDg2NjI1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyLjAxMjc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNS41MDMxODc1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICJ0YWciIDogIkZPTEZEIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIyLjAxMjc1LAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xpYyBhY2lkIiwKICAgICAgICAidGFnIiA6ICJGT0xBQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAwLjAsCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAidGFnIiA6ICJWSVRCMTIiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS43NzQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjkuNTgsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuMDg4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMC41MjIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMS40MjUyOCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuMTI2NDAwMDAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAidGFnIiA6ICJWSVRLMSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA2Ljk4MTc3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDguNzI3MjE4NzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSBdCiAgICB9LAogICAgImJvb2ttYXJrZWQiIDogZmFsc2UsCiAgICAiYm91Z2h0IiA6IGZhbHNlCiAgfSwgewogICAgInJlY2lwZSIgOiB7CiAgICAgICJ1cmkiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9vbnRvbG9naWVzL2VkYW1hbS5vd2wjcmVjaXBlXzI0NjNmMjQ4MjYwOWQ3YTQ3MWRiYmYzYjI2OGJkOTU2IiwKICAgICAgImxhYmVsIiA6ICJDYXRhbGFuIENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy80ZDkvNGQ5MDg0Y2JjMTcwNzg5Y2FhOWU5OTcxMDhiNTk1ZGUuanBnIiwKICAgICAgInNvdXJjZSIgOiAiQm9uIEFwcGV0aXQiLAogICAgICAidXJsIiA6ICJodHRwOi8vd3d3LmJvbmFwcGV0aXQuY29tL2NvbHVtbnMvYnJlYWR3aW5uZXIvYXJ0aWNsZS9ob3ctdG8tZ2V0LXlvdXIta2lkcy10by1lYXQtc2F1Y2UtbGV0LXRoZW0tY29vay1pdC10aGVtc2VsdmVzIiwKICAgICAgInNoYXJlQXMiIDogImh0dHA6Ly93d3cuZWRhbWFtLmNvbS9yZWNpcGUvY2F0YWxhbi1jaGlja2VuLTI0NjNmMjQ4MjYwOWQ3YTQ3MWRiYmYzYjI2OGJkOTU2L2NoaWNrZW4iLAogICAgICAieWllbGQiIDogMTIuMCwKICAgICAgImRpZXRMYWJlbHMiIDogWyAiTG93LUNhcmIiIF0sCiAgICAgICJoZWFsdGhMYWJlbHMiIDogWyAiU3VnYXItQ29uc2Npb3VzIiwgIlBlYW51dC1GcmVlIiwgIlRyZWUtTnV0LUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMSB3aG9sZSA0LXBvdW5kIGNoaWNrZW4sIHF1YXJ0ZXJlZCIsICI4IHNsaWNlcyBiYWNvbiIsICIzMCBjbG92ZXMgZ2FybGljIiwgIjMgbGVtb25zLCBwZWVsZWQsIHJpbmRzIHRoaW5seSBzbGljZWQgYW5kIHJlc2VydmVkIiwgIsK9IGN1cCBCYW55dWxzIG9yIGFub3RoZXIgZm9ydGlmaWVkIGRlc3NlcnQgd2luZSIsICIxIGN1cCB2ZWFsIG9yIGNoaWNrZW4gc3RvY2siIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMSB3aG9sZSA0LXBvdW5kIGNoaWNrZW4sIHF1YXJ0ZXJlZCIsCiAgICAgICAgIndlaWdodCIgOiA5MjAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjggc2xpY2VzIGJhY29uIiwKICAgICAgICAid2VpZ2h0IiA6IDIyNC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMzAgY2xvdmVzIGdhcmxpYyIsCiAgICAgICAgIndlaWdodCIgOiA5MC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMyBsZW1vbnMsIHBlZWxlZCwgcmluZHMgdGhpbmx5IHNsaWNlZCBhbmQgcmVzZXJ2ZWQiLAogICAgICAgICJ3ZWlnaHQiIDogMTc0LjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICLCvSBjdXAgQmFueXVscyBvciBhbm90aGVyIGZvcnRpZmllZCBkZXNzZXJ0IHdpbmUiLAogICAgICAgICJ3ZWlnaHQiIDogNTEuNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjEgY3VwIHZlYWwgb3IgY2hpY2tlbiBzdG9jayIsCiAgICAgICAgIndlaWdodCIgOiAyNDAuMAogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAzMjY1LjQ0LAogICAgICAidG90YWxXZWlnaHQiIDogMTY5OS41LAogICAgICAidG90YWxUaW1lIiA6IDAuMCwKICAgICAgInRvdGFsTnV0cmllbnRzIiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzI2NS40NDAwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMzEuMzA5NiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3MC4zNTM0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4xOTAzMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBTVMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk3Ljg5NzIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVBVIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0NS4wNjMxMjAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjQuMzYwMzUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2Ljc2MjAwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTUuMjg4NywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIxMy4xNzc4MDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg0NS4wNDAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5BIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNDkzLjQ5NTAwMDAwMDAwMDMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMzEuODYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDI2MS41MzUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiSyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzA4Mi43MjAwMDAwMDAwMDAzLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIuNCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE2LjIxNTY1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTA5LjkzNSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDA1Ljk4LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMzUuNDk5OTk5OTk5OTk5OTcsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS41MTMxMTAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNjMyNTEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc2LjI5Mzc3NTAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMjEyOTQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODkuMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODkuMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjk3MjAwMDAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIuNzM2MDAwMDAwMDAwMDAwNywKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0LjEyODIwMDAwMDAwMDAwMDUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1LjgxLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgICJ0b3RhbERhaWx5IiA6IHsKICAgICAgICAiRU5FUkNfS0NBTCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkVuZXJneSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTYzLjI3MjAwMDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTUuODYwOTIzMDc2OTIzMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNTEuNzY2OTk5OTk5OTk5OTQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9DREYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEuNDUzNDUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNy4wNDgwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjYuMzU1NjAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJDSE9MRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyODEuNjgwMDAwMDAwMDAwMDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAzLjg5NTYyNTAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMy4xODYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjUuMzgzNzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4OC4wNzc3MTQyODU3MTQyOCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjguODg4ODg4ODg4ODg4ODksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwOC4xMDQzMzMzMzMzMzMzNCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzIuODQ3ODU3MTQyODU3MTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDUuMTA4ODg4ODg4ODg4ODksCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRDIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjUuODMzMzMzMzMzMzMzMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMC44NzQwMDAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDk2LjAyOTk5OTk5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTklBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4MS40Njg4NzUwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYwLjY0NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZPTERGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjI2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDY2LjIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjY4NDAwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIwLjY0MTAwMDAwMDAwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOS43NjI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfQogICAgICB9LAogICAgICAiZGlnZXN0IiA6IFsgewogICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAidGFnIiA6ICJGQVQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImZhdENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyMzEuMzA5NiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1NS44NjA5MjMwNzY5MjMxLAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNzAuMzUzNCwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAzNTEuNzY2OTk5OTk5OTk5OTQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlRyYW5zIiwKICAgICAgICAgICJ0YWciIDogIkZBVFJOIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInRyYW5zRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4xOTAzMiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogOTcuODk3MiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogNDUuMDYzMTIwMDAwMDAwMDA1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDY0LjM2MDM1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjEuNDUzNDUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU3LjU5ODM0OTk5OTk5OTk5NiwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAidGFnIiA6ICJGSUJURyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmaWJlckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDYuNzYyMDAwMDAwMDAwMDAwNSwKICAgICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAgICJkYWlseSIgOiAyNy4wNDgwMDAwMDAwMDAwMDIsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycyIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzdWdhckNvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDE1LjI4ODcsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzLCBhZGRlZCIsCiAgICAgICAgICAidGFnIiA6ICJTVUdBUi5hZGRlZCIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgInRhZyIgOiAiUFJPQ05UIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJwcm90ZWluQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIxMy4xNzc4MDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyNi4zNTU2MDAwMDAwMDAwNCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiA4NDUuMDQwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI4MS42ODAwMDAwMDAwMDAwNiwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgInRhZyIgOiAiTkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInNvZGl1bUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAyNDkzLjQ5NTAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxMDMuODk1NjI1MDAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMzEuODYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMy4xODYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI2MS41MzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2NS4zODM3NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMDgyLjcyMDAwMDAwMDAwMDMsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4OC4wNzc3MTQyODU3MTQyOCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICJ0YWciIDogIkZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEyLjQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2OC44ODg4ODg4ODg4ODg4OSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICJ0YWciIDogIlpOIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE2LjIxNTY1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTA4LjEwNDMzMzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgInRhZyIgOiAiUCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxOTA5LjkzNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI3Mi44NDc4NTcxNDI4NTcxNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDA1Ljk4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDUuMTA4ODg4ODg4ODg4ODksCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBDIiwKICAgICAgICAidGFnIiA6ICJWSVRDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEzNS40OTk5OTk5OTk5OTk5NywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDIyNS44MzMzMzMzMzMzMzMzLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuNTEzMTEwMDAwMDAwMDAwMiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEwMC44NzQwMDAwMDAwMDAwMSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgInRhZyIgOiAiUklCRiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxLjYzMjUxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogOTYuMDI5OTk5OTk5OTk5OTksCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJOaWFjaW4gKEIzKSIsCiAgICAgICAgInRhZyIgOiAiTklBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDc2LjI5Mzc3NTAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzgxLjQ2ODg3NTAwMDAwMDEsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNS4yMTI5NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI2MC42NDcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgZXF1aXZhbGVudCAodG90YWwpIiwKICAgICAgICAidGFnIiA6ICJGT0xERkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogODkuMDQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMi4yNiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA4OS4wNCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuOTcyMDAwMDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY2LjIsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAidGFnIiA6ICJWSVREIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDIuNzM2MDAwMDAwMDAwMDAwNywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuNjg0MDAwMDAwMDAwMDAwMiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjEyODIwMDAwMDAwMDAwMDUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMC42NDEwMDAwMDAwMDAwMDIsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE1LjgxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTkuNzYyNSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfNmI3MTUwNmVhZWQ0MTAyYzBiOTdkY2UxZWFkZGQ5YTYiLAogICAgICAibGFiZWwiIDogIlJvYXN0IENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy81MmMvNTJjZGQ4N2I2N2IxNjFjY2U4ZThhM2YxNTIzNzM2OGYuanBnIiwKICAgICAgInNvdXJjZSIgOiAiUGlvbmVlciBXb21hbiIsCiAgICAgICJ1cmwiIDogImh0dHA6Ly90aGVwaW9uZWVyd29tYW4uY29tL2Nvb2tpbmcvMjAxMi8wOC9yb2FzdC1jaGlja2VuLyIsCiAgICAgICJzaGFyZUFzIiA6ICJodHRwOi8vd3d3LmVkYW1hbS5jb20vcmVjaXBlL3JvYXN0LWNoaWNrZW4tNmI3MTUwNmVhZWQ0MTAyYzBiOTdkY2UxZWFkZGQ5YTYvY2hpY2tlbiIsCiAgICAgICJ5aWVsZCIgOiA0LjAsCiAgICAgICJkaWV0TGFiZWxzIiA6IFsgIkxvdy1DYXJiIiBdLAogICAgICAiaGVhbHRoTGFiZWxzIiA6IFsgIlN1Z2FyLUNvbnNjaW91cyIsICJQZWFudXQtRnJlZSIsICJUcmVlLU51dC1GcmVlIiwgIkFsY29ob2wtRnJlZSIgXSwKICAgICAgImNhdXRpb25zIiA6IFsgXSwKICAgICAgImluZ3JlZGllbnRMaW5lcyIgOiBbICIxIHdob2xlIENoaWNrZW4sIFJpbnNlZCBBbmQgUGF0dGVkIERyeSIsICIzLzQgY3VwcyBCdXR0ZXIsIFNvZnRlbmVkIiwgIjMgd2hvbGUgTGVtb25zIiwgIjQgc3ByaWdzIFJvc2VtYXJ5IiwgIlNhbHQgQW5kIFBlcHBlciwgdG8gdGFzdGUiIF0sCiAgICAgICJpbmdyZWRpZW50cyIgOiBbIHsKICAgICAgICAidGV4dCIgOiAiMSB3aG9sZSBDaGlja2VuLCBSaW5zZWQgQW5kIFBhdHRlZCBEcnkiLAogICAgICAgICJ3ZWlnaHQiIDogOTIwLjAKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICIzLzQgY3VwcyBCdXR0ZXIsIFNvZnRlbmVkIiwKICAgICAgICAid2VpZ2h0IiA6IDE3MC4yNQogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIjMgd2hvbGUgTGVtb25zIiwKICAgICAgICAid2VpZ2h0IiA6IDE3NC4wCiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiNCBzcHJpZ3MgUm9zZW1hcnkiLAogICAgICAgICJ3ZWlnaHQiIDogMjAuMAogICAgICB9LCB7CiAgICAgICAgInRleHQiIDogIlNhbHQgQW5kIFBlcHBlciwgdG8gdGFzdGUiLAogICAgICAgICJ3ZWlnaHQiIDogNy43MDU1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiU2FsdCBBbmQgUGVwcGVyLCB0byB0YXN0ZSIsCiAgICAgICAgIndlaWdodCIgOiAzLjg1Mjc1CiAgICAgIH0gXSwKICAgICAgImNhbG9yaWVzIiA6IDMyODUuMDIyOTAyNDk5OTk5NCwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDEyOTQuMDk3MDcxNTE1NzM4NywKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMyODUuMDIyOTAyNSwKICAgICAgICAgICJ1bml0IiA6ICJrY2FsIgogICAgICAgIH0sCiAgICAgICAgIkZBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjc4LjQ2MTM3NDY1MDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGQVNBVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3Ljc5NTExMDI4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFUUk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNi40NzMxOTUwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOTMuNDc1ODY0MzIyNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBUFUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM1LjI3MDIxNzk0NTAwMDAwNiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0NERiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMi45MjI3ODM2MjUsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4LjY2Njc0NTc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuNDc2ODA3NiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE3NS41NDM0MjU3MjUwMDAwMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwNTYuMDM3NTAwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjk5NS40NTcxODMwNzAwMDA2LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjY5LjIwNjMxOTY2Mzc3NzMsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyNi4xNzMxNDU3MTUxNTczNywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMjA1LjA2MjU5MzIyMTI1OTIsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMS4wODE5MzMyODYwMDE5NDEsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMi41NDc0NjcwNDY1MTU3NCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ0MC4zODczNDQ5OTk5OTk5LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNTczLjY5MDI0MjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExMS4zLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIlRISUEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJUaGlhbWluIChCMSkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDAuNjQxNDczNDcwMDAwMDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjIzNDAxOTk1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2My4wNDExNDE5MzI1MDAwMSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjQ0MjcxOTAwMjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAxLjkwMjQ2NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIkZPTEZEIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIChmb29kKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAxLjkwMjQ2NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEIxMiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjEyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzLjE0MTQyNTAwMDAwMDAwMDQsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlZJVEQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQuMzkzNzUwMDAwMDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJUT0NQSEEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuMDEwODY4NiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzIuMDI0NDUxNzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNjQuMjUxMTQ1MTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MjguNDAyMTE0ODQ2MTU0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzOC45NzU1NTE0MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDcuNjQwOTI3ODc1MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzQuNjY2OTgzLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiUFJPQ05UIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUHJvdGVpbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUxLjA4Njg1MTQ1MDAwMDA0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzUyLjAxMjUwMDAwMDAwMDA1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyNC44MTA3MTU5NjEyNTAwMywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjYuOTIwNjMxOTY2Mzc3NzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiTUciIDogewogICAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDU2LjU0MzI4NjQyODc4OTM0NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDYzLjAwMTc4ODM3Nzc1MDI2NiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiWk4iIDogewogICAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4My42NDk3ODAzMTAxMDQ5MywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlAiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQaG9zcGhvcnVzIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMDUuNzY5NjIwNzE0Mjg1NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEFfUkFFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBBIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzQuODU0NDcxMzg4ODg4OSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEMiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDE4NS41LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDIuNzY0ODk4MDAwMDAwMDEsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJSSUJGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Mi41ODk0MDg4MjM1Mjk0MSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMTUuMjA1NzA5NjYyNTAwMDYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRCNkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxNzIuMTM1OTUwMTI1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuNDc1NjE2ODc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUyLjM1NzA4MzMzMzMzMzM0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4wOTg0Mzc1MDAwMDAwMDAyLAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNS4wNTQzNDMsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVRLMSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDAuMDMwNTY0Njg3NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjc4LjQ2MTM3NDY1MDAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MjguNDAyMTE0ODQ2MTU0LAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFTQVQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic2F0dXJhdGVkRmF0Q29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMTI3Ljc5NTExMDI4LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDYzOC45NzU1NTE0MDAwMDAxLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDYuNDczMTk1MDAwMDAwMDAwNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJNb25vdW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFNUyIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogOTMuNDc1ODY0MzIyNSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJQb2x5dW5zYXR1cmF0ZWQiLAogICAgICAgICAgInRhZyIgOiAiRkFQVSIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgICAidG90YWwiIDogMzUuMjcwMjE3OTQ1MDAwMDA2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9IF0KICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICJ0YWciIDogIkNIT0NERiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2FyYm9oeWRyYXRlQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDIyLjkyMjc4MzYyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDcuNjQwOTI3ODc1MDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJnIiwKICAgICAgICAic3ViIiA6IFsgewogICAgICAgICAgImxhYmVsIiA6ICJDYXJicyAobmV0KSIsCiAgICAgICAgICAidGFnIiA6ICJDSE9DREYubmV0IiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxNC4yNTYwMzc4NzUsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiRmliZXIiLAogICAgICAgICAgInRhZyIgOiAiRklCVEciLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiZmliZXJDb250ZW50IiwKICAgICAgICAgICJ0b3RhbCIgOiA4LjY2Njc0NTc1LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDM0LjY2Njk4MywKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogNC40NzY4MDc2LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInRhZyIgOiAiU1VHQVIuYWRkZWQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICJ0YWciIDogIlBST0NOVCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAicHJvdGVpbkNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxNzUuNTQzNDI1NzI1MDAwMDIsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNTEuMDg2ODUxNDUwMDAwMDQsCiAgICAgICAgInVuaXQiIDogImciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNob2xlc3Rlcm9sIiwKICAgICAgICAidGFnIiA6ICJDSE9MRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAiY2hvbGVzdGVyb2xDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMTA1Ni4wMzc1MDAwMDAwMDAxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMzUyLjAxMjUwMDAwMDAwMDA1LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiU29kaXVtIiwKICAgICAgICAidGFnIiA6ICJOQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiAic29kaXVtQ29udGVudCIsCiAgICAgICAgInRvdGFsIiA6IDI5OTUuNDU3MTgzMDcwMDAwNiwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEyNC44MTA3MTU5NjEyNTAwMywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhbGNpdW0iLAogICAgICAgICJ0YWciIDogIkNBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDI2OS4yMDYzMTk2NjM3NzczLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjYuOTIwNjMxOTY2Mzc3NzM0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAidGFnIiA6ICJNRyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMjYuMTczMTQ1NzE1MTU3MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1Ni41NDMyODY0Mjg3ODkzNDQsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICJ0YWciIDogIksiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjIwNS4wNjI1OTMyMjEyNTkyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjMuMDAxNzg4Mzc3NzUwMjY2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTEuMDgxOTMzMjg2MDAxOTQxLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNjEuNTY2Mjk2MDMzMzQ0MTE2LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgInRhZyIgOiAiWk4iLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTIuNTQ3NDY3MDQ2NTE1NzQsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4My42NDk3ODAzMTAxMDQ5MywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTQ0MC4zODczNDQ5OTk5OTk5LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMjA1Ljc2OTYyMDcxNDI4NTcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICJ0YWciIDogIlZJVEFfUkFFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDE1NzMuNjkwMjQyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE3NC44NTQ0NzEzODg4ODg5LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTEuMywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDE4NS41LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuNjQxNDczNDcwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyLjc2NDg5ODAwMDAwMDAxLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiUmlib2ZsYXZpbiAoQjIpIiwKICAgICAgICAidGFnIiA6ICJSSUJGIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMjM0MDE5OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA3Mi41ODk0MDg4MjM1Mjk0MSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAidGFnIiA6ICJOSUEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjMuMDQxMTQxOTMyNTAwMDEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzMTUuMjA1NzA5NjYyNTAwMDYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEI2IiwKICAgICAgICAidGFnIiA6ICJWSVRCNkEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMy40NDI3MTkwMDI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTcyLjEzNTk1MDEyNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSBlcXVpdmFsZW50ICh0b3RhbCkiLAogICAgICAgICJ0YWciIDogIkZPTERGRSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1LjQ3NTYxNjg3NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDEuOTAyNDY3NSwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9saWMgYWNpZCIsCiAgICAgICAgInRhZyIgOiAiRk9MQUMiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMC4wLAogICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEIxMiIsCiAgICAgICAgInRhZyIgOiAiVklUQjEyIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMuMTQxNDI1MDAwMDAwMDAwNCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDUyLjM1NzA4MzMzMzMzMzM0LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA0LjM5Mzc1MDAwMDAwMDAwMSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDEuMDk4NDM3NTAwMDAwMDAwMiwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEUiLAogICAgICAgICJ0YWciIDogIlRPQ1BIQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA3LjAxMDg2ODYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAzNS4wNTQzNDMsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICJ0YWciIDogIlZJVEsxIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDMyLjAyNDQ1MTc1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDAuMDMwNTY0Njg3NSwKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9IF0KICAgIH0sCiAgICAiYm9va21hcmtlZCIgOiBmYWxzZSwKICAgICJib3VnaHQiIDogZmFsc2UKICB9LCB7CiAgICAicmVjaXBlIiA6IHsKICAgICAgInVyaSIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL29udG9sb2dpZXMvZWRhbWFtLm93bCNyZWNpcGVfNDRkNTZjZTE1YmY1N2Y4MmU4ODZhNTRjNDU1MzkwMzMiLAogICAgICAibGFiZWwiIDogIlJvYXN0IENoaWNrZW4iLAogICAgICAiaW1hZ2UiIDogImh0dHBzOi8vd3d3LmVkYW1hbS5jb20vd2ViLWltZy8wZjEvMGYxY2I4MzVlMTk2N2YyZDk4MTY2NTdhNWJiMzg4YTguanBnIiwKICAgICAgInNvdXJjZSIgOiAiRmluZSBDb29raW5nIiwKICAgICAgInVybCIgOiAiaHR0cDovL3d3dy5maW5lY29va2luZy5jb20vcmVjaXBlcy9yb2FzdC1jaGlja2VuLmFzcHgiLAogICAgICAic2hhcmVBcyIgOiAiaHR0cDovL3d3dy5lZGFtYW0uY29tL3JlY2lwZS9yb2FzdC1jaGlja2VuLTQ0ZDU2Y2UxNWJmNTdmODJlODg2YTU0YzQ1NTM5MDMzL2NoaWNrZW4iLAogICAgICAieWllbGQiIDogNC4wLAogICAgICAiZGlldExhYmVscyIgOiBbICJMb3ctQ2FyYiIgXSwKICAgICAgImhlYWx0aExhYmVscyIgOiBbICJTdWdhci1Db25zY2lvdXMiLCAiUGVhbnV0LUZyZWUiLCAiVHJlZS1OdXQtRnJlZSIsICJBbGNvaG9sLUZyZWUiIF0sCiAgICAgICJjYXV0aW9ucyIgOiBbIF0sCiAgICAgICJpbmdyZWRpZW50TGluZXMiIDogWyAiMS0xLzIgVGJzLiBvbGl2ZSBvaWwiLCAiMiB0c3AuIGdyYW51bGF0ZWQgc3VnYXIiLCAiMy0xLzIgdG8gNC1sYi4gd2hvbGUgY2hpY2tlbiIsICJGcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLCAiMiBUYnMuIGtvc2hlciBzYWx0IiBdLAogICAgICAiaW5ncmVkaWVudHMiIDogWyB7CiAgICAgICAgInRleHQiIDogIjEtMS8yIFRicy4gb2xpdmUgb2lsIiwKICAgICAgICAid2VpZ2h0IiA6IDIwLjI1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiB0c3AuIGdyYW51bGF0ZWQgc3VnYXIiLAogICAgICAgICJ3ZWlnaHQiIDogOC40CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMy0xLzIgdG8gNC1sYi4gd2hvbGUgY2hpY2tlbiIsCiAgICAgICAgIndlaWdodCIgOiAxNzAwLjk3MTM4NzUKICAgICAgfSwgewogICAgICAgICJ0ZXh0IiA6ICJGcmVzaGx5IGdyb3VuZCBibGFjayBwZXBwZXIiLAogICAgICAgICJ3ZWlnaHQiIDogNS4yNzYyMzkxNjI1MDAwMDA1CiAgICAgIH0sIHsKICAgICAgICAidGV4dCIgOiAiMiBUYnMuIGtvc2hlciBzYWx0IiwKICAgICAgICAid2VpZ2h0IiA6IDI5LjEyNQogICAgICB9IF0sCiAgICAgICJjYWxvcmllcyIgOiAzODgxLjg0OTg0MzQyMjg3NSwKICAgICAgInRvdGFsV2VpZ2h0IiA6IDE3NDIuMjMwOTM5ODIwNDc2OCwKICAgICAgInRvdGFsVGltZSIgOiAwLjAsCiAgICAgICJ0b3RhbE51dHJpZW50cyIgOiB7CiAgICAgICAgIkVORVJDX0tDQUwiIDogewogICAgICAgICAgImxhYmVsIiA6ICJFbmVyZ3kiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4ODEuODQ5ODQzNDIyODc1LAogICAgICAgICAgInVuaXQiIDogImtjYWwiCiAgICAgICAgfSwKICAgICAgICAiRkFUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRmF0IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyNzYuNTg4Mjk2MzU0MTk3NSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBU0FUIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA3Ni4xODE0MzIwNTAzOTE5OSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIkZBVFJOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVHJhbnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEuNjQ5OTQyMjQ1ODc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFNUyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTIwLjk1NDIwODQ4NzQxMDg4LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRkFQVSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlBvbHl1bnNhdHVyYXRlZCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNTcuMTI0OTQwMTgzMDkxNzQ1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDExLjc3MjQ3NDk0NDQxODc1LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiRklCVEciIDogewogICAgICAgICAgImxhYmVsIiA6ICJGaWJlciIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMS4zMzQ4ODg1MDgxMTI1MDA0LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiU1VHQVIiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguNDE2OTY3OTMwNjQsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LAogICAgICAgICJTVUdBUi5hZGRlZCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlN1Z2FycywgYWRkZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDguMzgzMiwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sCiAgICAgICAgIlBST0NOVCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlByb3RlaW4iLAogICAgICAgICAgInF1YW50aXR5IiA6IDMxNi45Mjg4NzkzMjM5ODM3LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwKICAgICAgICAiQ0hPTEUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDaG9sZXN0ZXJvbCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTI3NS43Mjg1NDA2MjUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiTkEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDQwMzQuNDY5NzMyODUxMTExLAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIkNBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FsY2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjEyLjUyNzA4NzI3Mjc4OTM3LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk1HIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiTWFnbmVzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzNDkuMjg5OTc5NTk5NDU0OCwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJLIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUG90YXNzaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAzMjg1LjkxNDMwNTg5NzI2MywKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJGRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIklyb24iLAogICAgICAgICAgInF1YW50aXR5IiA6IDE1Ljk2Mjg2NTI0MzYwMDA3MiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJaTiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlppbmMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDIyLjM1MzY4NTczNTQ0MTcyNiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUwOC43NjQzOTc1MDE3NSwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJWSVRBX1JBRSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjk4LjgyMjg1MzQ0ODg3NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjcuMjE1NTQyMiwKICAgICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgICB9LAogICAgICAgICJUSElBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxLjAyNjI4MTE3MDc5NTUsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiUklCRiIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlJpYm9mbGF2aW4gKEIyKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMi4wNTIyNTg4OTU0OTI1LAogICAgICAgICAgInVuaXQiIDogIm1nIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxMTUuNzQzMzcxNDc3NTAyMzYsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjZBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCNiIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNS45Njg3NTM3MTIyMTI4NzQsCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTAyLjk1NTI0MzkwNzYyNDk5LAogICAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgICB9LAogICAgICAgICJGT0xGRCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZvbGF0ZSAoZm9vZCkiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEwMi45NTUyNDM5MDc2MjQ5OSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDUuMjczMDExMzAxMjQ5OTk5NSwKICAgICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgICAgfSwKICAgICAgICAiVklURCIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMy40MDE5NDI3NzUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0sCiAgICAgICAgIlRPQ1BIQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogOC4wNjM2NjIwNDk3ODk5OTksCiAgICAgICAgICAidW5pdCIgOiAibWciCiAgICAgICAgfSwKICAgICAgICAiVklUSzEiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEsiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQ2LjM0MjI3NDMyMTUxMjUsCiAgICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICAgIH0KICAgICAgfSwKICAgICAgInRvdGFsRGFpbHkiIDogewogICAgICAgICJFTkVSQ19LQ0FMIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRW5lcmd5IiwKICAgICAgICAgICJxdWFudGl0eSIgOiAxOTQuMDkyNDkyMTcxMTQzNzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJGYXQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyNS41MjA0NTU5Mjk1MzQ2LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkFTQVQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJTYXR1cmF0ZWQiLAogICAgICAgICAgInF1YW50aXR5IiA6IDM4MC45MDcxNjAyNTE5NTk5LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0hPQ0RGIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2FyYnMiLAogICAgICAgICAgInF1YW50aXR5IiA6IDMuOTI0MTU4MzE0ODA2MjUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJGSUJURyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1LjMzOTU1NDAzMjQ1MDAwMTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQUk9DTlQiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA2MzMuODU3NzU4NjQ3OTY3NCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIkNIT0xFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICAgInF1YW50aXR5IiA6IDQyNS4yNDI4NDY4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJOQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlNvZGl1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTY4LjEwMjkwNTUzNTQ2Mjk4LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiQ0EiIDogewogICAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAyMS4yNTI3MDg3MjcyNzg5MzYsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJNRyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk1hZ25lc2l1bSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogODcuMzIyNDk0ODk5ODYzNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIksiIDogewogICAgICAgICAgImxhYmVsIiA6ICJQb3Rhc3NpdW0iLAogICAgICAgICAgInF1YW50aXR5IiA6IDkzLjg4MzI2NTg4Mjc3ODk0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRkUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJJcm9uIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA4OC42ODI1ODQ2ODY2NjcwNywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlpOIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiWmluYyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMTQ5LjAyNDU3MTU2OTYxMTUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJQIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiUGhvc3Bob3J1cyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMzU4LjM5NDkxMzkyODgyMTQ0LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQV9SQUUiIDogewogICAgICAgICAgImxhYmVsIiA6ICJWaXRhbWluIEEiLAogICAgICAgICAgInF1YW50aXR5IiA6IDc3LjY0Njk4MzcxNjU0MTY1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQyIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNDUuMzU5MjM3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVEhJQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlRoaWFtaW4gKEIxKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogNjguNDE4NzQ0NzE5NywKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlJJQkYiIDogewogICAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICAgInF1YW50aXR5IiA6IDEyMC43MjExMTE0OTk1NTg4MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIk5JQSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIk5pYWNpbiAoQjMpIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1NzguNzE2ODU3Mzg3NTExOCwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEI2QSIgOiB7CiAgICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICAgInF1YW50aXR5IiA6IDI5OC40Mzc2ODU2MTA2NDM3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiRk9MREZFIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgICAicXVhbnRpdHkiIDogMjUuNzM4ODEwOTc2OTA2MjQ3LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVklUQjEyIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICAgInF1YW50aXR5IiA6IDg3Ljg4MzUyMTY4NzUsCiAgICAgICAgICAidW5pdCIgOiAiJSIKICAgICAgICB9LAogICAgICAgICJWSVREIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBEIiwKICAgICAgICAgICJxdWFudGl0eSIgOiAwLjg1MDQ4NTY5Mzc1LAogICAgICAgICAgInVuaXQiIDogIiUiCiAgICAgICAgfSwKICAgICAgICAiVE9DUEhBIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA0MC4zMTgzMTAyNDg5NSwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0sCiAgICAgICAgIlZJVEsxIiA6IHsKICAgICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBLIiwKICAgICAgICAgICJxdWFudGl0eSIgOiA1Ny45Mjc4NDI5MDE4OTA2MiwKICAgICAgICAgICJ1bml0IiA6ICIlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgImRpZ2VzdCIgOiBbIHsKICAgICAgICAibGFiZWwiIDogIkZhdCIsCiAgICAgICAgInRhZyIgOiAiRkFUIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJmYXRDb250ZW50IiwKICAgICAgICAidG90YWwiIDogMjc2LjU4ODI5NjM1NDE5NzUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MjUuNTIwNDU1OTI5NTM0NiwKICAgICAgICAidW5pdCIgOiAiZyIsCiAgICAgICAgInN1YiIgOiBbIHsKICAgICAgICAgICJsYWJlbCIgOiAiU2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBU0FUIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInNhdHVyYXRlZEZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDc2LjE4MTQzMjA1MDM5MTk5LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDM4MC45MDcxNjAyNTE5NTk5LAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJUcmFucyIsCiAgICAgICAgICAidGFnIiA6ICJGQVRSTiIsCiAgICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJ0cmFuc0ZhdENvbnRlbnQiLAogICAgICAgICAgInRvdGFsIiA6IDEuNjQ5OTQyMjQ1ODc1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIk1vbm91bnNhdHVyYXRlZCIsCiAgICAgICAgICAidGFnIiA6ICJGQU1TIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiAxMjAuOTU0MjA4NDg3NDEwODgsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiUG9seXVuc2F0dXJhdGVkIiwKICAgICAgICAgICJ0YWciIDogIkZBUFUiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDU3LjEyNDk0MDE4MzA5MTc0NSwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSBdCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkNhcmJzIiwKICAgICAgICAidGFnIiA6ICJDSE9DREYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogImNhcmJvaHlkcmF0ZUNvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMS43NzI0NzQ5NDQ0MTg3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDMuOTI0MTU4MzE0ODA2MjUsCiAgICAgICAgInVuaXQiIDogImciLAogICAgICAgICJzdWIiIDogWyB7CiAgICAgICAgICAibGFiZWwiIDogIkNhcmJzIChuZXQpIiwKICAgICAgICAgICJ0YWciIDogIkNIT0NERi5uZXQiLAogICAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICAgInRvdGFsIiA6IDEwLjQzNzU4NjQzNjMwNjI1LAogICAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgICB9LCB7CiAgICAgICAgICAibGFiZWwiIDogIkZpYmVyIiwKICAgICAgICAgICJ0YWciIDogIkZJQlRHIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogImZpYmVyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogMS4zMzQ4ODg1MDgxMTI1MDA0LAogICAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICAgImRhaWx5IiA6IDUuMzM5NTU0MDMyNDUwMDAxNSwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0sIHsKICAgICAgICAgICJsYWJlbCIgOiAiU3VnYXJzIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogInN1Z2FyQ29udGVudCIsCiAgICAgICAgICAidG90YWwiIDogOC40MTY5Njc5MzA2NCwKICAgICAgICAgICJoYXNSREkiIDogZmFsc2UsCiAgICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICAgInVuaXQiIDogImciCiAgICAgICAgfSwgewogICAgICAgICAgImxhYmVsIiA6ICJTdWdhcnMsIGFkZGVkIiwKICAgICAgICAgICJ0YWciIDogIlNVR0FSLmFkZGVkIiwKICAgICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAgICJ0b3RhbCIgOiA4LjM4MzIsCiAgICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICAgImRhaWx5IiA6IDAuMCwKICAgICAgICAgICJ1bml0IiA6ICJnIgogICAgICAgIH0gXQogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJQcm90ZWluIiwKICAgICAgICAidGFnIiA6ICJQUk9DTlQiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogInByb3RlaW5Db250ZW50IiwKICAgICAgICAidG90YWwiIDogMzE2LjkyODg3OTMyMzk4MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA2MzMuODU3NzU4NjQ3OTY3NCwKICAgICAgICAidW5pdCIgOiAiZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiQ2hvbGVzdGVyb2wiLAogICAgICAgICJ0YWciIDogIkNIT0xFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJjaG9sZXN0ZXJvbENvbnRlbnQiLAogICAgICAgICJ0b3RhbCIgOiAxMjc1LjcyODU0MDYyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDQyNS4yNDI4NDY4NzUsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJTb2RpdW0iLAogICAgICAgICJ0YWciIDogIk5BIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6ICJzb2RpdW1Db250ZW50IiwKICAgICAgICAidG90YWwiIDogNDAzNC40Njk3MzI4NTExMTEsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNjguMTAyOTA1NTM1NDYyOTgsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJDYWxjaXVtIiwKICAgICAgICAidGFnIiA6ICJDQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMTIuNTI3MDg3MjcyNzg5MzcsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAyMS4yNTI3MDg3MjcyNzg5MzYsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJNYWduZXNpdW0iLAogICAgICAgICJ0YWciIDogIk1HIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDM0OS4yODk5Nzk1OTk0NTQ4LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogODcuMzIyNDk0ODk5ODYzNywKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBvdGFzc2l1bSIsCiAgICAgICAgInRhZyIgOiAiSyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzMjg1LjkxNDMwNTg5NzI2MywKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDkzLjg4MzI2NTg4Mjc3ODk0LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiSXJvbiIsCiAgICAgICAgInRhZyIgOiAiRkUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMTUuOTYyODY1MjQzNjAwMDcyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogODguNjgyNTg0Njg2NjY3MDcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJaaW5jIiwKICAgICAgICAidGFnIiA6ICJaTiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyMi4zNTM2ODU3MzU0NDE3MjYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiAxNDkuMDI0NTcxNTY5NjExNSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlBob3NwaG9ydXMiLAogICAgICAgICJ0YWciIDogIlAiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMjUwOC43NjQzOTc1MDE3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDM1OC4zOTQ5MTM5Mjg4MjE0NCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQSIsCiAgICAgICAgInRhZyIgOiAiVklUQV9SQUUiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNjk4LjgyMjg1MzQ0ODg3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDc3LjY0Njk4MzcxNjU0MTY1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQyIsCiAgICAgICAgInRhZyIgOiAiVklUQyIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAyNy4yMTU1NDIyLAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogNDUuMzU5MjM3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVGhpYW1pbiAoQjEpIiwKICAgICAgICAidGFnIiA6ICJUSElBIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEuMDI2MjgxMTcwNzk1NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDY4LjQxODc0NDcxOTcsCiAgICAgICAgInVuaXQiIDogIm1nIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJSaWJvZmxhdmluIChCMikiLAogICAgICAgICJ0YWciIDogIlJJQkYiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogMi4wNTIyNTg4OTU0OTI1LAogICAgICAgICJoYXNSREkiIDogdHJ1ZSwKICAgICAgICAiZGFpbHkiIDogMTIwLjcyMTExMTQ5OTU1ODgyLAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiTmlhY2luIChCMykiLAogICAgICAgICJ0YWciIDogIk5JQSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMTUuNzQzMzcxNDc3NTAyMzYsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA1NzguNzE2ODU3Mzg3NTExOCwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gQjYiLAogICAgICAgICJ0YWciIDogIlZJVEI2QSIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1Ljk2ODc1MzcxMjIxMjg3NCwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI5OC40Mzc2ODU2MTA2NDM3LAogICAgICAgICJ1bml0IiA6ICJtZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiRm9sYXRlIGVxdWl2YWxlbnQgKHRvdGFsKSIsCiAgICAgICAgInRhZyIgOiAiRk9MREZFIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDEwMi45NTUyNDM5MDc2MjQ5OSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDI1LjczODgxMDk3NjkwNjI0NywKICAgICAgICAidW5pdCIgOiAiwrVnIgogICAgICB9LCB7CiAgICAgICAgImxhYmVsIiA6ICJGb2xhdGUgKGZvb2QpIiwKICAgICAgICAidGFnIiA6ICJGT0xGRCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAxMDIuOTU1MjQzOTA3NjI0OTksCiAgICAgICAgImhhc1JESSIgOiBmYWxzZSwKICAgICAgICAiZGFpbHkiIDogMC4wLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIkZvbGljIGFjaWQiLAogICAgICAgICJ0YWciIDogIkZPTEFDIiwKICAgICAgICAic2NoZW1hT3JnVGFnIiA6IG51bGwsCiAgICAgICAgInRvdGFsIiA6IDAuMCwKICAgICAgICAiaGFzUkRJIiA6IGZhbHNlLAogICAgICAgICJkYWlseSIgOiAwLjAsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBCMTIiLAogICAgICAgICJ0YWciIDogIlZJVEIxMiIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiA1LjI3MzAxMTMwMTI0OTk5OTUsCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA4Ny44ODM1MjE2ODc1LAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gRCIsCiAgICAgICAgInRhZyIgOiAiVklURCIsCiAgICAgICAgInNjaGVtYU9yZ1RhZyIgOiBudWxsLAogICAgICAgICJ0b3RhbCIgOiAzLjQwMTk0Mjc3NSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDAuODUwNDg1NjkzNzUsCiAgICAgICAgInVuaXQiIDogIsK1ZyIKICAgICAgfSwgewogICAgICAgICJsYWJlbCIgOiAiVml0YW1pbiBFIiwKICAgICAgICAidGFnIiA6ICJUT0NQSEEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogOC4wNjM2NjIwNDk3ODk5OTksCiAgICAgICAgImhhc1JESSIgOiB0cnVlLAogICAgICAgICJkYWlseSIgOiA0MC4zMTgzMTAyNDg5NSwKICAgICAgICAidW5pdCIgOiAibWciCiAgICAgIH0sIHsKICAgICAgICAibGFiZWwiIDogIlZpdGFtaW4gSyIsCiAgICAgICAgInRhZyIgOiAiVklUSzEiLAogICAgICAgICJzY2hlbWFPcmdUYWciIDogbnVsbCwKICAgICAgICAidG90YWwiIDogNDYuMzQyMjc0MzIxNTEyNSwKICAgICAgICAiaGFzUkRJIiA6IHRydWUsCiAgICAgICAgImRhaWx5IiA6IDU3LjkyNzg0MjkwMTg5MDYyLAogICAgICAgICJ1bml0IiA6ICLCtWciCiAgICAgIH0gXQogICAgfSwKICAgICJib29rbWFya2VkIiA6IGZhbHNlLAogICAgImJvdWdodCIgOiBmYWxzZQogIH0gXQp9 + encoding: UTF-8 + string: |- + { + "q" : "chicken", + "from" : 0, + "to" : 10, + "params" : { + "sane" : [ ], + "q" : [ "chicken" ], + "app_key" : [ "" ], + "app_id" : [ "" ] + }, + "more" : true, + "count" : 191058, + "hits" : [ { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2", + "label" : "Teriyaki Chicken", + "image" : "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg", + "source" : "David Lebovitz", + "url" : "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/", + "shareAs" : "http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/chicken", + "yield" : 6.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup (125ml) mirin", "1/2 cup (125ml) soy sauce", "One 2-inch (5cm) piece of fresh ginger, peeled and grated", "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)" ], + "ingredients" : [ { + "text" : "1/2 cup (125ml) mirin", + "weight" : 122.99850757795392 + }, { + "text" : "1/2 cup (125ml) soy sauce", + "weight" : 134.72774670265568 + }, { + "text" : "One 2-inch (5cm) piece of fresh ginger, peeled and grated", + "weight" : 15.0 + }, { + "text" : "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)", + "weight" : 907.18474 + } ], + "calories" : 2253.101981306866, + "totalWeight" : 1179.9109942806097, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 2253.101981306866, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 151.56383347020517, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 41.169838892692944, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.7711070290000002, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 63.10028137309835, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 31.82952890962799, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.72546514133862, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3778219736212456, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.7939109868106228, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 161.72175016748596, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 889.0410452000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 8139.824735928436, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 116.51301359077408, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 276.82169621464243, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2529.722194651041, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 8.335407066766463, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.950414243828696, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1660.4080117810859, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 208.65249020000002, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.75, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.7104550166118764, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.542818655059382, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 45.028415542590324, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.3713281129199304, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.6245453880000005, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.9071847400000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.944087954, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.065879540000005, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 112.6550990653433, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 233.17512841570027, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 205.8491944634647, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 5.908488380446207, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.511287894484982, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 323.44350033497193, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 296.3470150666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 339.1593639970182, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 11.651301359077408, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 69.20542405366061, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 72.27777699002974, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 46.307817037591455, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 86.33609495885797, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 237.20114454015513, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 23.183610022222226, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 1.25, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 47.3636677741251, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 90.75403853290483, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 225.1420777129516, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 168.56640564599653, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 11.93185668459295, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 93.74242313333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.22679618500000004, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 9.72043977, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 23.832349425000007, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 151.56383347020517, + "hasRDI" : true, + "daily" : 233.17512841570027, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 41.169838892692944, + "hasRDI" : true, + "daily" : 205.8491944634647, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.7711070290000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 63.10028137309835, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 31.82952890962799, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 17.72546514133862, + "hasRDI" : true, + "daily" : 5.908488380446207, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 16.347643167717376, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3778219736212456, + "hasRDI" : true, + "daily" : 5.511287894484982, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.7939109868106228, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 161.72175016748596, + "hasRDI" : true, + "daily" : 323.44350033497193, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 889.0410452000001, + "hasRDI" : true, + "daily" : 296.3470150666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 8139.824735928436, + "hasRDI" : true, + "daily" : 339.1593639970182, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 116.51301359077408, + "hasRDI" : true, + "daily" : 11.651301359077408, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 276.82169621464243, + "hasRDI" : true, + "daily" : 69.20542405366061, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2529.722194651041, + "hasRDI" : true, + "daily" : 72.27777699002974, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 8.335407066766463, + "hasRDI" : true, + "daily" : 46.307817037591455, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.950414243828696, + "hasRDI" : true, + "daily" : 86.33609495885797, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1660.4080117810859, + "hasRDI" : true, + "daily" : 237.20114454015513, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 208.65249020000002, + "hasRDI" : true, + "daily" : 23.183610022222226, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.75, + "hasRDI" : true, + "daily" : 1.25, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.7104550166118764, + "hasRDI" : true, + "daily" : 47.3636677741251, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.542818655059382, + "hasRDI" : true, + "daily" : 90.75403853290483, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 45.028415542590324, + "hasRDI" : true, + "daily" : 225.1420777129516, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.3713281129199304, + "hasRDI" : true, + "daily" : 168.56640564599653, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : true, + "daily" : 11.93185668459295, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.6245453880000005, + "hasRDI" : true, + "daily" : 93.74242313333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.9071847400000002, + "hasRDI" : true, + "daily" : 0.22679618500000004, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.944087954, + "hasRDI" : true, + "daily" : 9.72043977, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 19.065879540000005, + "hasRDI" : true, + "daily" : 23.832349425000007, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_b79327d05b8e5b838ad6cfd9576b30b6", + "label" : "Chicken Vesuvio", + "image" : "https://www.edamam.com/web-img/e42/e42f9119813e890af34c259785ae1cfb.jpg", + "source" : "Serious Eats", + "url" : "http://www.seriouseats.com/recipes/2011/12/chicken-vesuvio-recipe.html", + "shareAs" : "http://www.edamam.com/recipe/chicken-vesuvio-b79327d05b8e5b838ad6cfd9576b30b6/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup olive oil", "5 cloves garlic, peeled", "2 large russet potatoes, peeled and cut into chunks", "1 3-4 pound chicken, cut into 8 pieces (or 3 pound chicken legs)", "3/4 cup white wine", "3/4 cup chicken stock", "3 tablespoons chopped parsley", "1 tablespoon dried oregano", "Salt and pepper", "1 cup frozen peas, thawed" ], + "ingredients" : [ { + "text" : "1/2 cup olive oil", + "weight" : 108.0 + }, { + "text" : "5 cloves garlic, peeled", + "weight" : 15.0 + }, { + "text" : "2 large russet potatoes, peeled and cut into chunks", + "weight" : 738.0 + }, { + "text" : "1 3-4 pound chicken, cut into 8 pieces (or 3 pound chicken legs)", + "weight" : 1587.5732950000001 + }, { + "text" : "3/4 cup white wine", + "weight" : 110.25 + }, { + "text" : "3/4 cup chicken stock", + "weight" : 180.0 + }, { + "text" : "3 tablespoons chopped parsley", + "weight" : 11.399999999999999 + }, { + "text" : "1 tablespoon dried oregano", + "weight" : 6.0 + }, { + "text" : "Salt and pepper", + "weight" : 17.34133977 + }, { + "text" : "Salt and pepper", + "weight" : 8.670669885 + }, { + "text" : "1 cup frozen peas, thawed", + "weight" : 134.0 + } ], + "calories" : 4181.274538701351, + "totalWeight" : 2913.153664598772, + "totalTime" : 60.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 4181.274538701351, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 274.571129832611, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 62.5415118546592, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.047163345382, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 147.41068630389012, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 47.3896991368323, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 176.1886133914575, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 21.058879480905002, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 15.725792287264, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 230.93090795265152, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 815.06238045, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 6741.319937460769, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 441.1083779878552, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 479.3344106204877, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 5906.466677482753, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 23.452202620288947, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 18.340223583205272, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2223.3049241003, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 637.87051551495, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 103.79879744960002, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.7282507278358001, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.917496514513, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 86.96976241599155, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 6.884051091465349, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 282.68750431645003, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 282.68750431645003, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.34660450586, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.1590996812000003, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.174524488604003, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 371.39113421074507, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 209.06372693506756, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 422.4171228194015, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 312.707559273296, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 58.7295377971525, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 84.23551792362001, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 461.8618159053031, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 271.68746015, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 280.88833072753204, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 44.11083779878552, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 119.83360265512192, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 168.75619078522152, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 130.29001455716082, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 122.26815722136848, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 317.61498915718573, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 70.87450172388333, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 172.99799574933337, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 115.21671518905335, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 112.79391261841177, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 434.8488120799578, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 344.2025545732675, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 70.67187607911251, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 55.77674176433333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.5397749203000001, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 100.87262244302002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 464.23891776343135, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 274.571129832611, + "hasRDI" : true, + "daily" : 422.4171228194015, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 62.5415118546592, + "hasRDI" : true, + "daily" : 312.707559273296, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.047163345382, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 147.41068630389012, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 47.3896991368323, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 176.1886133914575, + "hasRDI" : true, + "daily" : 58.7295377971525, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 155.1297339105525, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 21.058879480905002, + "hasRDI" : true, + "daily" : 84.23551792362001, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 15.725792287264, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 230.93090795265152, + "hasRDI" : true, + "daily" : 461.8618159053031, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 815.06238045, + "hasRDI" : true, + "daily" : 271.68746015, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 6741.319937460769, + "hasRDI" : true, + "daily" : 280.88833072753204, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 441.1083779878552, + "hasRDI" : true, + "daily" : 44.11083779878552, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 479.3344106204877, + "hasRDI" : true, + "daily" : 119.83360265512192, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 5906.466677482753, + "hasRDI" : true, + "daily" : 168.75619078522152, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 23.452202620288947, + "hasRDI" : true, + "daily" : 130.29001455716082, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 18.340223583205272, + "hasRDI" : true, + "daily" : 122.26815722136848, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2223.3049241003, + "hasRDI" : true, + "daily" : 317.61498915718573, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 637.87051551495, + "hasRDI" : true, + "daily" : 70.87450172388333, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 103.79879744960002, + "hasRDI" : true, + "daily" : 172.99799574933337, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.7282507278358001, + "hasRDI" : true, + "daily" : 115.21671518905335, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.917496514513, + "hasRDI" : true, + "daily" : 112.79391261841177, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 86.96976241599155, + "hasRDI" : true, + "daily" : 434.8488120799578, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 6.884051091465349, + "hasRDI" : true, + "daily" : 344.2025545732675, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 282.68750431645003, + "hasRDI" : true, + "daily" : 70.67187607911251, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 282.68750431645003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.34660450586, + "hasRDI" : true, + "daily" : 55.77674176433333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.1590996812000003, + "hasRDI" : true, + "daily" : 0.5397749203000001, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 20.174524488604003, + "hasRDI" : true, + "daily" : 100.87262244302002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 371.39113421074507, + "hasRDI" : true, + "daily" : 464.23891776343135, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_0a3f49a3da07cd8379d4e35f7a1a72fc", + "label" : "Chicken Teriyaki", + "image" : "https://www.edamam.com/web-img/827/8275cc33e9f0f4314617d5a356900aa7.jpg", + "source" : "No Recipes", + "url" : "http://norecipes.com/blog/2009/07/16/chicken-teriyaki-recipe/", + "shareAs" : "http://www.edamam.com/recipe/chicken-teriyaki-0a3f49a3da07cd8379d4e35f7a1a72fc/chicken", + "yield" : 8.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup water", "2 tablespoons Japanese soy sauce", "2 tablespoons dark brown sugar", "2 tablespoons mirin", "4-6 skin-on filleted (boneless) chicken thighs", "2 tablespoons mild flavored honey (or maltose)", "2 tablespoons dark soy sauce", "2 tablespoons sake" ], + "ingredients" : [ { + "text" : "1/2 cup water", + "weight" : 118.5 + }, { + "text" : "2 tablespoons Japanese soy sauce", + "weight" : 32.0 + }, { + "text" : "2 tablespoons dark brown sugar", + "weight" : 18.125000000000004 + }, { + "text" : "2 tablespoons mirin", + "weight" : 29.8 + }, { + "text" : "4-6 skin-on filleted (boneless) chicken thighs", + "weight" : 745.0 + }, { + "text" : "2 tablespoons mild flavored honey (or maltose)", + "weight" : 42.0 + }, { + "text" : "2 tablespoons dark soy sauce", + "weight" : 32.0 + }, { + "text" : "2 tablespoons sake", + "weight" : 29.1 + } ], + "calories" : 1955.851, + "totalWeight" : 1046.5249999999999, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1955.851, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 124.1093, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 33.750519999999995, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.6332500000000001, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 51.75932, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 25.997470000000003, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 60.3495125, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.5960000000000001, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 52.331275000000005, + "unit" : "g" + }, + "SUGAR.added" : { + "label" : "Sugars, added", + "quantity" : 52.075275000000005, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 128.72585, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 730.1, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 4131.643, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 97.33375, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 188.65025000000003, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1858.8712500000001, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 6.3579875, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 10.288767499999999, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1281.8290000000002, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 171.35, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.21, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.56497, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.2018099999999998, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 35.9324475, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.69738125, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 32.331250000000004, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 32.331250000000004, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 4.619, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.7450000000000001, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.5645, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 15.645000000000001, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 97.79255, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 190.93738461538462, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 168.75259999999997, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 20.116504166666665, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 2.3840000000000003, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 257.4517, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 243.36666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 172.15179166666667, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 9.733375, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 47.16256250000001, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 53.11060714285714, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 35.32215277777778, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 68.59178333333332, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 183.1184285714286, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 19.038888888888888, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.35, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 37.66466666666667, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 70.69470588235293, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 179.6622375, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 134.86906249999998, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 8.082812500000001, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 76.98333333333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.18625000000000003, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.8225, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.556250000000002, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 124.1093, + "hasRDI" : true, + "daily" : 190.93738461538462, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 33.750519999999995, + "hasRDI" : true, + "daily" : 168.75259999999997, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.6332500000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 51.75932, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 25.997470000000003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 60.3495125, + "hasRDI" : true, + "daily" : 20.116504166666665, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 59.7535125, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.5960000000000001, + "hasRDI" : true, + "daily" : 2.3840000000000003, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 52.331275000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 52.075275000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 128.72585, + "hasRDI" : true, + "daily" : 257.4517, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 730.1, + "hasRDI" : true, + "daily" : 243.36666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 4131.643, + "hasRDI" : true, + "daily" : 172.15179166666667, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 97.33375, + "hasRDI" : true, + "daily" : 9.733375, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 188.65025000000003, + "hasRDI" : true, + "daily" : 47.16256250000001, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1858.8712500000001, + "hasRDI" : true, + "daily" : 53.11060714285714, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 6.3579875, + "hasRDI" : true, + "daily" : 35.32215277777778, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 10.288767499999999, + "hasRDI" : true, + "daily" : 68.59178333333332, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1281.8290000000002, + "hasRDI" : true, + "daily" : 183.1184285714286, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 171.35, + "hasRDI" : true, + "daily" : 19.038888888888888, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.21, + "hasRDI" : true, + "daily" : 0.35, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.56497, + "hasRDI" : true, + "daily" : 37.66466666666667, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.2018099999999998, + "hasRDI" : true, + "daily" : 70.69470588235293, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 35.9324475, + "hasRDI" : true, + "daily" : 179.6622375, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.69738125, + "hasRDI" : true, + "daily" : 134.86906249999998, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 32.331250000000004, + "hasRDI" : true, + "daily" : 8.082812500000001, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 32.331250000000004, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 4.619, + "hasRDI" : true, + "daily" : 76.98333333333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.7450000000000001, + "hasRDI" : true, + "daily" : 0.18625000000000003, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.5645, + "hasRDI" : true, + "daily" : 7.8225, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 15.645000000000001, + "hasRDI" : true, + "daily" : 19.556250000000002, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_888e9fc4a808e9e4ccdb2ac24a6a2f46", + "label" : "Chicken Teriyaki", + "image" : "https://www.edamam.com/web-img/551/551b906bafd4c45d50033742eaf00c02.jpg", + "source" : "Saveur", + "url" : "http://www.saveur.com/article/Recipes/Chicken-Teriyaki", + "shareAs" : "http://www.edamam.com/recipe/chicken-teriyaki-888e9fc4a808e9e4ccdb2ac24a6a2f46/chicken", + "yield" : 2.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 tbsp. vegetable oil", "4 pieces chicken, trimmed, skin pierced with a fork", "½ cup Teriyaki Sauce" ], + "ingredients" : [ { + "text" : "1 tbsp. vegetable oil", + "weight" : 14.0 + }, { + "text" : "4 pieces chicken, trimmed, skin pierced with a fork", + "weight" : 357.6 + }, { + "text" : "½ cup Teriyaki Sauce", + "weight" : 144.0 + } ], + "calories" : 1020.76, + "totalWeight" : 515.6, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1020.7600000000001, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 67.88336000000001, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 16.3241, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.4542520000000001, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 32.39298000000001, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 13.944200000000002, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 22.4064, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.144, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 20.304, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 75.0528, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 268.20000000000005, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 5769.839999999999, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 75.33600000000001, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 159.36, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 999.8640000000001, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 5.6664, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 4.828560000000001, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 747.432, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 146.616, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 5.721600000000001, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.25776000000000004, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.5299200000000001, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 26.149176000000004, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 1.3956, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 32.976, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 32.976, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 1.1085600000000002, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.7152000000000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 4.1248000000000005, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 5.364000000000001, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 51.038000000000004, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 104.43593846153848, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 81.6205, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 7.468800000000001, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.576, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 150.1056, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 89.4, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 240.40999999999994, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 7.533600000000002, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 39.84, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 28.56754285714286, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 31.48, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 32.190400000000004, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 106.776, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 16.29066666666667, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 9.536000000000001, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 17.184, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 31.171764705882357, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 130.74588, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 69.78, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 8.244, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 18.476000000000003, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.17880000000000001, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.624000000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 6.705000000000001, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 67.88336000000001, + "hasRDI" : true, + "daily" : 104.43593846153848, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 16.3241, + "hasRDI" : true, + "daily" : 81.6205, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.4542520000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 32.39298000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 13.944200000000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 22.4064, + "hasRDI" : true, + "daily" : 7.468800000000001, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 22.262400000000003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.144, + "hasRDI" : true, + "daily" : 0.576, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 20.304, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 75.0528, + "hasRDI" : true, + "daily" : 150.1056, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 268.20000000000005, + "hasRDI" : true, + "daily" : 89.4, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 5769.839999999999, + "hasRDI" : true, + "daily" : 240.40999999999994, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 75.33600000000001, + "hasRDI" : true, + "daily" : 7.533600000000002, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 159.36, + "hasRDI" : true, + "daily" : 39.84, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 999.8640000000001, + "hasRDI" : true, + "daily" : 28.56754285714286, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 5.6664, + "hasRDI" : true, + "daily" : 31.48, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 4.828560000000001, + "hasRDI" : true, + "daily" : 32.190400000000004, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 747.432, + "hasRDI" : true, + "daily" : 106.776, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 146.616, + "hasRDI" : true, + "daily" : 16.29066666666667, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 5.721600000000001, + "hasRDI" : true, + "daily" : 9.536000000000001, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.25776000000000004, + "hasRDI" : true, + "daily" : 17.184, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.5299200000000001, + "hasRDI" : true, + "daily" : 31.171764705882357, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 26.149176000000004, + "hasRDI" : true, + "daily" : 130.74588, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 1.3956, + "hasRDI" : true, + "daily" : 69.78, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 32.976, + "hasRDI" : true, + "daily" : 8.244, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 32.976, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 1.1085600000000002, + "hasRDI" : true, + "daily" : 18.476000000000003, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.7152000000000002, + "hasRDI" : true, + "daily" : 0.17880000000000001, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 4.1248000000000005, + "hasRDI" : true, + "daily" : 20.624000000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 5.364000000000001, + "hasRDI" : true, + "daily" : 6.705000000000001, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_14ebd7d6d65f761843dba35202de4b37", + "label" : "Chicken Satay", + "image" : "https://www.edamam.com/web-img/ba6/ba6f66d885e4d62a98055b088a5a85a3.jpg", + "source" : "BBC Good Food", + "url" : "http://www.bbcgoodfood.com/recipes/3645/", + "shareAs" : "http://www.edamam.com/recipe/chicken-satay-14ebd7d6d65f761843dba35202de4b37/chicken", + "yield" : 4.0, + "dietLabels" : [ "High-Protein", "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "100.0ml soy sauce (Kikkoman is good)", "4.0 tbsp smooth peanut butter", "4 skinless chicken breasts fillets" ], + "ingredients" : [ { + "text" : "100.0ml soy sauce (Kikkoman is good)", + "weight" : 107.78219736212455 + }, { + "text" : "4.0 tbsp smooth peanut butter", + "weight" : 64.0 + }, { + "text" : "4 skinless chicken breasts fillets", + "weight" : 1088.0 + } ], + "calories" : 1745.4445646019262, + "totalWeight" : 1259.7821973621246, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1745.4445646019262, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 61.99035852496412, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 12.812121004074351, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.12416, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 24.19340833367867, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 12.91898717906239, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 19.59206232995274, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 4.062257578896997, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 7.144728789448498, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 267.78787086527694, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 794.24, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 6420.956101101502, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 121.3281251295011, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 491.9188260479722, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 4459.892558525242, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 6.702041861750805, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 9.942505117050485, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2710.758447621127, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 76.16000000000001, + "unit" : "µg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.1542881251295012, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 2.226480625647506, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 115.20657705407227, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 9.265437652095946, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 168.68950763069745, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 168.68950763069745, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 2.2848, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 10.88, + "unit" : "IU" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 11.916800000000002, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 2.3680000000000003, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 87.27222823009632, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 95.36978234609865, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 64.06060502037175, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 6.530687443317579, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 16.249030315587987, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 535.5757417305539, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 264.74666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 267.5398375458959, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 12.13281251295011, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 122.97970651199304, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 127.42550167214976, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 37.23356589861558, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 66.28336744700324, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 387.25120680301814, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 8.462222222222223, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 76.95254167530008, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 130.96944856750034, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 576.0328852703614, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 463.27188260479727, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 42.17237690767436, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 38.080000000000005, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.72, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 59.58400000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 2.9600000000000004, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 61.99035852496412, + "hasRDI" : true, + "daily" : 95.36978234609865, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 12.812121004074351, + "hasRDI" : true, + "daily" : 64.06060502037175, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.12416, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 24.19340833367867, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 12.91898717906239, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 19.59206232995274, + "hasRDI" : true, + "daily" : 6.530687443317579, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 15.529804751055742, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 4.062257578896997, + "hasRDI" : true, + "daily" : 16.249030315587987, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 7.144728789448498, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 267.78787086527694, + "hasRDI" : true, + "daily" : 535.5757417305539, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 794.24, + "hasRDI" : true, + "daily" : 264.74666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 6420.956101101502, + "hasRDI" : true, + "daily" : 267.5398375458959, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 121.3281251295011, + "hasRDI" : true, + "daily" : 12.13281251295011, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 491.9188260479722, + "hasRDI" : true, + "daily" : 122.97970651199304, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 4459.892558525242, + "hasRDI" : true, + "daily" : 127.42550167214976, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 6.702041861750805, + "hasRDI" : true, + "daily" : 37.23356589861558, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 9.942505117050485, + "hasRDI" : true, + "daily" : 66.28336744700324, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2710.758447621127, + "hasRDI" : true, + "daily" : 387.25120680301814, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 76.16000000000001, + "hasRDI" : true, + "daily" : 8.462222222222223, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.1542881251295012, + "hasRDI" : true, + "daily" : 76.95254167530008, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 2.226480625647506, + "hasRDI" : true, + "daily" : 130.96944856750034, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 115.20657705407227, + "hasRDI" : true, + "daily" : 576.0328852703614, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 9.265437652095946, + "hasRDI" : true, + "daily" : 463.27188260479727, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 168.68950763069745, + "hasRDI" : true, + "daily" : 42.17237690767436, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 168.68950763069745, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 2.2848, + "hasRDI" : true, + "daily" : 38.080000000000005, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 10.88, + "hasRDI" : true, + "daily" : 2.72, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 11.916800000000002, + "hasRDI" : true, + "daily" : 59.58400000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 2.3680000000000003, + "hasRDI" : true, + "daily" : 2.9600000000000004, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_e29feeb250c3cc0f6eb487b7cae5d8b1", + "label" : "Chicken Piccata", + "image" : "https://www.edamam.com/web-img/93e/93e5e22c8792bfbc9fa3654207347c9c.jpg", + "source" : "Leite's Culinaria", + "url" : "http://leitesculinaria.com/5354/recipes-chicken-piccata.html", + "shareAs" : "http://www.edamam.com/recipe/chicken-piccata-e29feeb250c3cc0f6eb487b7cae5d8b1/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)", "Kosher salt and freshly ground black pepper", "1/2 cup all-purpose flour", "2 tablespoons olive oil", "4 tablespoons unsalted butter", "2 tablespoons fresh lemon juice", "1 tablespoon capers, drained", "2 tablespoons chopped fresh flat-leaf parsley" ], + "ingredients" : [ { + "text" : "4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)", + "weight" : 348.0 + }, { + "text" : "Kosher salt and freshly ground black pepper", + "weight" : 3.231 + }, { + "text" : "Kosher salt and freshly ground black pepper", + "weight" : 1.6155 + }, { + "text" : "1/2 cup all-purpose flour", + "weight" : 62.5 + }, { + "text" : "2 tablespoons olive oil", + "weight" : 27.0 + }, { + "text" : "4 tablespoons unsalted butter", + "weight" : 56.8 + }, { + "text" : "2 tablespoons fresh lemon juice", + "weight" : 28.0 + }, { + "text" : "1 tablespoon capers, drained", + "weight" : 8.6 + }, { + "text" : "2 tablespoons chopped fresh flat-leaf parsley", + "weight" : 7.6 + } ], + "calories" : 1305.9649050000003, + "totalWeight" : 542.3978744593117, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1305.9649050000003, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 83.0544453, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 35.025056760000005, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.8862639999999997, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 34.132949544999995, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 6.36084969, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 51.59456225000001, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 2.7062215, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 1.0186292, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 85.93358045, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 376.15999999999997, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 1256.0277929400006, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 63.98943487023479, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 123.4293287445931, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1339.133584956745, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 5.151776885715728, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 2.9993668244593112, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 832.43249, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 445.9061849999999, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 21.3138, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.83713374, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.9705318999999999, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 37.321661165, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.877883105, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 234.303635, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 70.553635, + "unit" : "µg" + }, + "FOLAC" : { + "label" : "Folic acid", + "quantity" : 96.25, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 0.82736, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.8519999999999999, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.4762912, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 150.5136735, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 65.29824525000001, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 127.7760696923077, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 175.12528380000003, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.19818741666667, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 10.824886, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 171.8671609, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 125.38666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 52.334491372500025, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 6.398943487023479, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 30.857332186148277, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 38.26095957019272, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 28.620982698420715, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 19.995778829728742, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 118.91892714285714, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 49.545131666666656, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 35.523, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 55.808916, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 57.090111764705874, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 186.608305825, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 143.89415525, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 58.57590875000001, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 13.789333333333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.21299999999999997, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 37.381456, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 188.142091875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 83.0544453, + "hasRDI" : true, + "daily" : 127.7760696923077, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 35.025056760000005, + "hasRDI" : true, + "daily" : 175.12528380000003, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.8862639999999997, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 34.132949544999995, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 6.36084969, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 51.59456225000001, + "hasRDI" : true, + "daily" : 17.19818741666667, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 48.88834075000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 2.7062215, + "hasRDI" : true, + "daily" : 10.824886, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 1.0186292, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 85.93358045, + "hasRDI" : true, + "daily" : 171.8671609, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 376.15999999999997, + "hasRDI" : true, + "daily" : 125.38666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 1256.0277929400006, + "hasRDI" : true, + "daily" : 52.334491372500025, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 63.98943487023479, + "hasRDI" : true, + "daily" : 6.398943487023479, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 123.4293287445931, + "hasRDI" : true, + "daily" : 30.857332186148277, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1339.133584956745, + "hasRDI" : true, + "daily" : 38.26095957019272, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 5.151776885715728, + "hasRDI" : true, + "daily" : 28.620982698420715, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 2.9993668244593112, + "hasRDI" : true, + "daily" : 19.995778829728742, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 832.43249, + "hasRDI" : true, + "daily" : 118.91892714285714, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 445.9061849999999, + "hasRDI" : true, + "daily" : 49.545131666666656, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 21.3138, + "hasRDI" : true, + "daily" : 35.523, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.83713374, + "hasRDI" : true, + "daily" : 55.808916, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.9705318999999999, + "hasRDI" : true, + "daily" : 57.090111764705874, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 37.321661165, + "hasRDI" : true, + "daily" : 186.608305825, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.877883105, + "hasRDI" : true, + "daily" : 143.89415525, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 234.303635, + "hasRDI" : true, + "daily" : 58.57590875000001, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 70.553635, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 96.25, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 0.82736, + "hasRDI" : true, + "daily" : 13.789333333333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.8519999999999999, + "hasRDI" : true, + "daily" : 0.21299999999999997, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 7.4762912, + "hasRDI" : true, + "daily" : 37.381456, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 150.5136735, + "hasRDI" : true, + "daily" : 188.142091875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_be3ba087e212f13672b553ecfa876333", + "label" : "Baked Chicken", + "image" : "https://www.edamam.com/web-img/01c/01cacb70890274fb7b7cebb975a93231.jpg", + "source" : "Martha Stewart", + "url" : "http://www.marthastewart.com/318981/baked-chicken", + "shareAs" : "http://www.edamam.com/recipe/baked-chicken-be3ba087e212f13672b553ecfa876333/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "6 bone-in chicken breast halves, or 6 chicken thighs and wings, skin-on", "1/2 teaspoon coarse salt", "1/2 teaspoon Mrs. Dash seasoning", "1/4 teaspoon freshly ground black pepper" ], + "ingredients" : [ { + "text" : "6 bone-in chicken breast halves, or 6 chicken thighs and wings, skin-on", + "weight" : 522.0 + }, { + "text" : "1/2 teaspoon coarse salt", + "weight" : 2.4270833333333335 + }, { + "text" : "1/2 teaspoon Mrs. Dash seasoning", + "weight" : 0.75 + }, { + "text" : "1/4 teaspoon freshly ground black pepper", + "weight" : 0.575 + } ], + "calories" : 901.58575, + "totalWeight" : 525.6156350198669, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 901.58575, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 48.36022, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 13.917879, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.5480999999999999, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 19.953694249999998, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 10.251458499999998, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 0.8596375, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.230225, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.01718, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 108.9686675, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 334.08, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 1216.981821, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 67.98700240476805, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 133.18615635019867, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1161.3550008015893, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 4.19094159556556, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 4.208683135019868, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 910.471, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 126.42524999999999, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.09, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.33146099999999995, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.4461675, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 51.74860724999999, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.77817325, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 22.01275, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 22.01275, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 1.7748, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.088, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.42528, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 6.981775, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 45.0792875, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 74.40033846153847, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 69.589395, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 0.28654583333333333, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.9209, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 217.937335, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 111.36, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 50.707575875, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 6.798700240476805, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 33.29653908754967, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 33.18157145147398, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 23.283008864253112, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 28.05788756679912, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 130.06728571428573, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 14.04725, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.15, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 22.097399999999997, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 26.245147058823527, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 258.74303625, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 138.9086625, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 5.5031875, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 29.58, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.522, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.126400000000001, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 8.72721875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 48.36022, + "hasRDI" : true, + "daily" : 74.40033846153847, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 13.917879, + "hasRDI" : true, + "daily" : 69.589395, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.5480999999999999, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 19.953694249999998, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 10.251458499999998, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 0.8596375, + "hasRDI" : true, + "daily" : 0.28654583333333333, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 0.6294125, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.230225, + "hasRDI" : true, + "daily" : 0.9209, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.01718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 108.9686675, + "hasRDI" : true, + "daily" : 217.937335, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 334.08, + "hasRDI" : true, + "daily" : 111.36, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 1216.981821, + "hasRDI" : true, + "daily" : 50.707575875, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 67.98700240476805, + "hasRDI" : true, + "daily" : 6.798700240476805, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 133.18615635019867, + "hasRDI" : true, + "daily" : 33.29653908754967, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1161.3550008015893, + "hasRDI" : true, + "daily" : 33.18157145147398, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 4.19094159556556, + "hasRDI" : true, + "daily" : 23.283008864253112, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 4.208683135019868, + "hasRDI" : true, + "daily" : 28.05788756679912, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 910.471, + "hasRDI" : true, + "daily" : 130.06728571428573, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 126.42524999999999, + "hasRDI" : true, + "daily" : 14.04725, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.09, + "hasRDI" : true, + "daily" : 0.15, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.33146099999999995, + "hasRDI" : true, + "daily" : 22.097399999999997, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.4461675, + "hasRDI" : true, + "daily" : 26.245147058823527, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 51.74860724999999, + "hasRDI" : true, + "daily" : 258.74303625, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.77817325, + "hasRDI" : true, + "daily" : 138.9086625, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 22.01275, + "hasRDI" : true, + "daily" : 5.5031875, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 22.01275, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 1.7748, + "hasRDI" : true, + "daily" : 29.58, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.088, + "hasRDI" : true, + "daily" : 0.522, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.42528, + "hasRDI" : true, + "daily" : 7.126400000000001, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 6.981775, + "hasRDI" : true, + "daily" : 8.72721875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_2463f2482609d7a471dbbf3b268bd956", + "label" : "Catalan Chicken", + "image" : "https://www.edamam.com/web-img/4d9/4d9084cbc170789caa9e997108b595de.jpg", + "source" : "Bon Appetit", + "url" : "http://www.bonappetit.com/columns/breadwinner/article/how-to-get-your-kids-to-eat-sauce-let-them-cook-it-themselves", + "shareAs" : "http://www.edamam.com/recipe/catalan-chicken-2463f2482609d7a471dbbf3b268bd956/chicken", + "yield" : 12.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 whole 4-pound chicken, quartered", "8 slices bacon", "30 cloves garlic", "3 lemons, peeled, rinds thinly sliced and reserved", "½ cup Banyuls or another fortified dessert wine", "1 cup veal or chicken stock" ], + "ingredients" : [ { + "text" : "1 whole 4-pound chicken, quartered", + "weight" : 920.0 + }, { + "text" : "8 slices bacon", + "weight" : 224.0 + }, { + "text" : "30 cloves garlic", + "weight" : 90.0 + }, { + "text" : "3 lemons, peeled, rinds thinly sliced and reserved", + "weight" : 174.0 + }, { + "text" : "½ cup Banyuls or another fortified dessert wine", + "weight" : 51.5 + }, { + "text" : "1 cup veal or chicken stock", + "weight" : 240.0 + } ], + "calories" : 3265.44, + "totalWeight" : 1699.5, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3265.4400000000005, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 231.3096, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 70.3534, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.19032, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 97.8972, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 45.063120000000005, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 64.36035, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 6.7620000000000005, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 15.2887, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 213.17780000000002, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 845.0400000000002, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 2493.4950000000003, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 331.86, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 261.535, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 3082.7200000000003, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 12.4, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 16.21565, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1909.935, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 405.98, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 135.49999999999997, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.5131100000000002, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.63251, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 76.29377500000001, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 5.21294, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 89.04, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 89.04, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.9720000000000004, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.7360000000000007, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 4.1282000000000005, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 15.81, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 163.27200000000002, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 355.8609230769231, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 351.76699999999994, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 21.45345, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 27.048000000000002, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 426.35560000000004, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 281.68000000000006, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 103.89562500000001, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 33.186, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 65.38375, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 88.07771428571428, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 68.88888888888889, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 108.10433333333334, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 272.84785714285715, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 45.10888888888889, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 225.8333333333333, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 100.87400000000001, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 96.02999999999999, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 381.4688750000001, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 260.647, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 22.26, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 66.2, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.6840000000000002, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.641000000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.7625, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 231.3096, + "hasRDI" : true, + "daily" : 355.8609230769231, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 70.3534, + "hasRDI" : true, + "daily" : 351.76699999999994, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.19032, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 97.8972, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 45.063120000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 64.36035, + "hasRDI" : true, + "daily" : 21.45345, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 57.598349999999996, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 6.7620000000000005, + "hasRDI" : true, + "daily" : 27.048000000000002, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 15.2887, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 213.17780000000002, + "hasRDI" : true, + "daily" : 426.35560000000004, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 845.0400000000002, + "hasRDI" : true, + "daily" : 281.68000000000006, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 2493.4950000000003, + "hasRDI" : true, + "daily" : 103.89562500000001, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 331.86, + "hasRDI" : true, + "daily" : 33.186, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 261.535, + "hasRDI" : true, + "daily" : 65.38375, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 3082.7200000000003, + "hasRDI" : true, + "daily" : 88.07771428571428, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 12.4, + "hasRDI" : true, + "daily" : 68.88888888888889, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 16.21565, + "hasRDI" : true, + "daily" : 108.10433333333334, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1909.935, + "hasRDI" : true, + "daily" : 272.84785714285715, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 405.98, + "hasRDI" : true, + "daily" : 45.10888888888889, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 135.49999999999997, + "hasRDI" : true, + "daily" : 225.8333333333333, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.5131100000000002, + "hasRDI" : true, + "daily" : 100.87400000000001, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.63251, + "hasRDI" : true, + "daily" : 96.02999999999999, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 76.29377500000001, + "hasRDI" : true, + "daily" : 381.4688750000001, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 5.21294, + "hasRDI" : true, + "daily" : 260.647, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 89.04, + "hasRDI" : true, + "daily" : 22.26, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 89.04, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.9720000000000004, + "hasRDI" : true, + "daily" : 66.2, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.7360000000000007, + "hasRDI" : true, + "daily" : 0.6840000000000002, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 4.1282000000000005, + "hasRDI" : true, + "daily" : 20.641000000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 15.81, + "hasRDI" : true, + "daily" : 19.7625, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_6b71506eaed4102c0b97dce1eaddd9a6", + "label" : "Roast Chicken", + "image" : "https://www.edamam.com/web-img/52c/52cdd87b67b161cce8e8a3f15237368f.jpg", + "source" : "Pioneer Woman", + "url" : "http://thepioneerwoman.com/cooking/2012/08/roast-chicken/", + "shareAs" : "http://www.edamam.com/recipe/roast-chicken-6b71506eaed4102c0b97dce1eaddd9a6/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 whole Chicken, Rinsed And Patted Dry", "3/4 cups Butter, Softened", "3 whole Lemons", "4 sprigs Rosemary", "Salt And Pepper, to taste" ], + "ingredients" : [ { + "text" : "1 whole Chicken, Rinsed And Patted Dry", + "weight" : 920.0 + }, { + "text" : "3/4 cups Butter, Softened", + "weight" : 170.25 + }, { + "text" : "3 whole Lemons", + "weight" : 174.0 + }, { + "text" : "4 sprigs Rosemary", + "weight" : 20.0 + }, { + "text" : "Salt And Pepper, to taste", + "weight" : 7.7055 + }, { + "text" : "Salt And Pepper, to taste", + "weight" : 3.85275 + } ], + "calories" : 3285.0229024999994, + "totalWeight" : 1294.0970715157387, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3285.0229025, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 278.4613746500001, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 127.79511028, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 6.4731950000000005, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 93.4758643225, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 35.270217945000006, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 22.922783625, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 8.66674575, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 4.4768076, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 175.54342572500002, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 1056.0375000000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 2995.4571830700006, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 269.2063196637773, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 226.17314571515737, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2205.0625932212592, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 11.081933286001941, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.54746704651574, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1440.3873449999999, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 1573.6902425, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 111.3, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.6414734700000001, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.23401995, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 63.04114193250001, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.4427190025, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 101.9024675, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 101.9024675, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.1414250000000004, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 4.393750000000001, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.0108686, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 32.02445175, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 164.251145125, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 428.402114846154, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 638.9755514000001, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 7.640927875000001, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 34.666983, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 351.08685145000004, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 352.01250000000005, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 124.81071596125003, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 26.920631966377734, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 56.543286428789344, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 63.001788377750266, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 61.566296033344116, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 83.64978031010493, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 205.7696207142857, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 174.8544713888889, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 185.5, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 42.76489800000001, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 72.58940882352941, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 315.20570966250006, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 172.135950125, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 25.475616875, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 52.35708333333334, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 1.0984375000000002, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 35.054343, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 40.0305646875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 278.4613746500001, + "hasRDI" : true, + "daily" : 428.402114846154, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 127.79511028, + "hasRDI" : true, + "daily" : 638.9755514000001, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 6.4731950000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 93.4758643225, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 35.270217945000006, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 22.922783625, + "hasRDI" : true, + "daily" : 7.640927875000001, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 14.256037875, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 8.66674575, + "hasRDI" : true, + "daily" : 34.666983, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 4.4768076, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 175.54342572500002, + "hasRDI" : true, + "daily" : 351.08685145000004, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 1056.0375000000001, + "hasRDI" : true, + "daily" : 352.01250000000005, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 2995.4571830700006, + "hasRDI" : true, + "daily" : 124.81071596125003, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 269.2063196637773, + "hasRDI" : true, + "daily" : 26.920631966377734, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 226.17314571515737, + "hasRDI" : true, + "daily" : 56.543286428789344, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2205.0625932212592, + "hasRDI" : true, + "daily" : 63.001788377750266, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 11.081933286001941, + "hasRDI" : true, + "daily" : 61.566296033344116, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.54746704651574, + "hasRDI" : true, + "daily" : 83.64978031010493, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1440.3873449999999, + "hasRDI" : true, + "daily" : 205.7696207142857, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 1573.6902425, + "hasRDI" : true, + "daily" : 174.8544713888889, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 111.3, + "hasRDI" : true, + "daily" : 185.5, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.6414734700000001, + "hasRDI" : true, + "daily" : 42.76489800000001, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.23401995, + "hasRDI" : true, + "daily" : 72.58940882352941, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 63.04114193250001, + "hasRDI" : true, + "daily" : 315.20570966250006, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.4427190025, + "hasRDI" : true, + "daily" : 172.135950125, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 101.9024675, + "hasRDI" : true, + "daily" : 25.475616875, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 101.9024675, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.1414250000000004, + "hasRDI" : true, + "daily" : 52.35708333333334, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 4.393750000000001, + "hasRDI" : true, + "daily" : 1.0984375000000002, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 7.0108686, + "hasRDI" : true, + "daily" : 35.054343, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 32.02445175, + "hasRDI" : true, + "daily" : 40.0305646875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_44d56ce15bf57f82e886a54c45539033", + "label" : "Roast Chicken", + "image" : "https://www.edamam.com/web-img/0f1/0f1cb835e1967f2d9816657a5bb388a8.jpg", + "source" : "Fine Cooking", + "url" : "http://www.finecooking.com/recipes/roast-chicken.aspx", + "shareAs" : "http://www.edamam.com/recipe/roast-chicken-44d56ce15bf57f82e886a54c45539033/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1-1/2 Tbs. olive oil", "2 tsp. granulated sugar", "3-1/2 to 4-lb. whole chicken", "Freshly ground black pepper", "2 Tbs. kosher salt" ], + "ingredients" : [ { + "text" : "1-1/2 Tbs. olive oil", + "weight" : 20.25 + }, { + "text" : "2 tsp. granulated sugar", + "weight" : 8.4 + }, { + "text" : "3-1/2 to 4-lb. whole chicken", + "weight" : 1700.9713875 + }, { + "text" : "Freshly ground black pepper", + "weight" : 5.2762391625000005 + }, { + "text" : "2 Tbs. kosher salt", + "weight" : 29.125 + } ], + "calories" : 3881.849843422875, + "totalWeight" : 1742.2309398204768, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3881.849843422875, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 276.5882963541975, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 76.18143205039199, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.649942245875, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 120.95420848741088, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 57.124940183091745, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 11.77247494441875, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3348885081125004, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 8.41696793064, + "unit" : "g" + }, + "SUGAR.added" : { + "label" : "Sugars, added", + "quantity" : 8.3832, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 316.9288793239837, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 1275.728540625, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 4034.469732851111, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 212.52708727278937, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 349.2899795994548, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 3285.914305897263, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 15.962865243600072, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 22.353685735441726, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2508.76439750175, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 698.822853448875, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 27.2155422, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.0262811707955, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 2.0522588954925, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 115.74337147750236, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 5.968753712212874, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 102.95524390762499, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 102.95524390762499, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.2730113012499995, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 3.401942775, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 8.063662049789999, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 46.3422743215125, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 194.09249217114376, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 425.5204559295346, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 380.9071602519599, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 3.92415831480625, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.3395540324500015, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 633.8577586479674, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 425.242846875, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 168.10290553546298, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 21.252708727278936, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 87.3224948998637, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 93.88326588277894, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 88.68258468666707, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 149.0245715696115, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 358.39491392882144, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 77.64698371654165, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 45.359237, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 68.4187447197, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 120.72111149955882, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 578.7168573875118, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 298.4376856106437, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 25.738810976906247, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 87.8835216875, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.85048569375, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 40.31831024895, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 57.92784290189062, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 276.5882963541975, + "hasRDI" : true, + "daily" : 425.5204559295346, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 76.18143205039199, + "hasRDI" : true, + "daily" : 380.9071602519599, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.649942245875, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 120.95420848741088, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 57.124940183091745, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 11.77247494441875, + "hasRDI" : true, + "daily" : 3.92415831480625, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 10.43758643630625, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3348885081125004, + "hasRDI" : true, + "daily" : 5.3395540324500015, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 8.41696793064, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 8.3832, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 316.9288793239837, + "hasRDI" : true, + "daily" : 633.8577586479674, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 1275.728540625, + "hasRDI" : true, + "daily" : 425.242846875, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 4034.469732851111, + "hasRDI" : true, + "daily" : 168.10290553546298, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 212.52708727278937, + "hasRDI" : true, + "daily" : 21.252708727278936, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 349.2899795994548, + "hasRDI" : true, + "daily" : 87.3224948998637, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 3285.914305897263, + "hasRDI" : true, + "daily" : 93.88326588277894, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 15.962865243600072, + "hasRDI" : true, + "daily" : 88.68258468666707, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 22.353685735441726, + "hasRDI" : true, + "daily" : 149.0245715696115, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2508.76439750175, + "hasRDI" : true, + "daily" : 358.39491392882144, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 698.822853448875, + "hasRDI" : true, + "daily" : 77.64698371654165, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 27.2155422, + "hasRDI" : true, + "daily" : 45.359237, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.0262811707955, + "hasRDI" : true, + "daily" : 68.4187447197, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 2.0522588954925, + "hasRDI" : true, + "daily" : 120.72111149955882, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 115.74337147750236, + "hasRDI" : true, + "daily" : 578.7168573875118, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 5.968753712212874, + "hasRDI" : true, + "daily" : 298.4376856106437, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 102.95524390762499, + "hasRDI" : true, + "daily" : 25.738810976906247, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 102.95524390762499, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.2730113012499995, + "hasRDI" : true, + "daily" : 87.8835216875, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 3.401942775, + "hasRDI" : true, + "daily" : 0.85048569375, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 8.063662049789999, + "hasRDI" : true, + "daily" : 40.31831024895, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 46.3422743215125, + "hasRDI" : true, + "daily" : 57.92784290189062, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + } ] + } http_version: - recorded_at: Thu, 03 May 2018 20:35:42 GMT + recorded_at: Fri, 04 May 2018 20:36:08 GMT recorded_with: VCR 4.0.0 diff --git a/test/cassettes/recipes2.yml b/test/cassettes/recipes2.yml new file mode 100644 index 000000000..325de433c --- /dev/null +++ b/test/cassettes/recipes2.yml @@ -0,0 +1,60 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&q=24324234234234.234 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Fri, 04 May 2018 20:36:06 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + { + "q" : "24324234234234.234", + "from" : 0, + "to" : 10, + "params" : { + "sane" : [ ], + "q" : [ "24324234234234.234" ], + "app_key" : [ "" ], + "app_id" : [ "" ] + }, + "more" : false, + "count" : 0, + "hits" : [ ] + } + http_version: + recorded_at: Fri, 04 May 2018 20:36:06 GMT +recorded_with: VCR 4.0.0 diff --git a/test/controllers/recipes_controller_test.rb b/test/controllers/recipes_controller_test.rb index d1ce4e739..52a638d9d 100644 --- a/test/controllers/recipes_controller_test.rb +++ b/test/controllers/recipes_controller_test.rb @@ -1,24 +1,42 @@ require "test_helper" describe RecipesController do - it "should get index" do - get recipes_index_url - value(response).must_be :success? + it "should get home page" do + get root_path + must_respond_with :success end - it "should get new" do - get recipes_new_url - value(response).must_be :success? - end + it "can get recipes index" do + + VCR.use_cassette("recipes") do + get recipes_path - it "should get create" do - get recipes_create_url - value(response).must_be :success? + query = "chicken" + EdamamApiWrapper.list_recipes(query) + must_respond_with :ok + end + must_respond_with :success end it "should get show" do - get recipes_show_url - value(response).must_be :success? + VCR.use_cassette("recipes") do + get recipe_path("7bf4a371c6884d809682a72808da7dc2") + + recipe_id = "7bf4a371c6884d809682a72808da7dc2" + EdamamApiWrapper.find_recipe(recipe_id) + must_respond_with :ok + end + must_respond_with :success + end + + it "should redirect to root if recipe id is not valid" do + VCR.use_cassette("recipes") do + get recipe_path("not_valid_recipe") + + recipe_id = "not_valid_recipe" + EdamamApiWrapper.find_recipe(recipe_id) + end + must_respond_with :redirect end end diff --git a/test/lib/edamam_api_wrapper_test.rb b/test/lib/edamam_api_wrapper_test.rb index e71511e7d..981b7373b 100644 --- a/test/lib/edamam_api_wrapper_test.rb +++ b/test/lib/edamam_api_wrapper_test.rb @@ -5,26 +5,17 @@ it "Can return array of recipes based on query" do VCR.use_cassette("recipes") do query = "chicken" - response = EdamamApiWrapper.list_recipes(query) - response["ok"].must_equal true + recipe_list = EdamamApiWrapper.list_recipes(query) + recipe_list.must_be_kind_of Array + end + end + + it "Returns empty array if there are no query matches" do + VCR.use_cassette("recipes2") do + query = 24324234234234.2342432432 + recipe_list = EdamamApiWrapper.list_recipes(query) + recipe_list.must_be_empty end end - # - # it "Can send valid message to real channel" do - # VCR.use_cassette("channels") do - # message = "test message" - # response = SlackApiWrapper.send_message("CAGCPB64A", message) - # response["ok"].must_equal true - # response["message"]["text"].must_equal message - # end - # end - # - # it "Can't send message to fake channel" do - # VCR.use_cassette("channels") do - # response = SlackApiWrapper.send_message("this-channel-does-not-exist", "test message") - # response["ok"].must_equal false - # response["error"].wont_be_nil - # end - # end end diff --git a/test/test_helper.rb b/test/test_helper.rb index b1176f8a6..f25580975 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -29,6 +29,9 @@ VCR.configure do |config| + config.before_record do |i| + i.response.body.force_encoding('UTF-8') + end config.cassette_library_dir = 'test/cassettes' # folder where casettes will be located config.hook_into :webmock # tie into this other tool called webmock config.default_cassette_options = { @@ -43,6 +46,7 @@ end end + class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all From f6ff67d8aaa9de437d725fd7f47d5a284e891d37 Mon Sep 17 00:00:00 2001 From: Jackie Date: Fri, 4 May 2018 14:00:18 -0700 Subject: [PATCH 09/21] Added assertions for api wrapper show method --- test/cassettes/show_recipe.yml | 5822 +++++++++++++++++++++++++++ test/lib/edamam_api_wrapper_test.rb | 49 +- 2 files changed, 5861 insertions(+), 10 deletions(-) create mode 100644 test/cassettes/show_recipe.yml diff --git a/test/cassettes/show_recipe.yml b/test/cassettes/show_recipe.yml new file mode 100644 index 000000000..12a6ebede --- /dev/null +++ b/test/cassettes/show_recipe.yml @@ -0,0 +1,5822 @@ +--- +http_interactions: +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&q=chicken + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Fri, 04 May 2018 20:50:39 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=ee37ea0cbec446fe0dc609c7b4a6323b; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-149-22-246/10.149.22.246 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + { + "q" : "chicken", + "from" : 0, + "to" : 10, + "params" : { + "sane" : [ ], + "q" : [ "chicken" ], + "app_key" : [ "" ], + "app_id" : [ "" ] + }, + "more" : true, + "count" : 191058, + "hits" : [ { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2", + "label" : "Teriyaki Chicken", + "image" : "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg", + "source" : "David Lebovitz", + "url" : "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/", + "shareAs" : "http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/chicken", + "yield" : 6.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup (125ml) mirin", "1/2 cup (125ml) soy sauce", "One 2-inch (5cm) piece of fresh ginger, peeled and grated", "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)" ], + "ingredients" : [ { + "text" : "1/2 cup (125ml) mirin", + "weight" : 122.99850757795392 + }, { + "text" : "1/2 cup (125ml) soy sauce", + "weight" : 134.72774670265568 + }, { + "text" : "One 2-inch (5cm) piece of fresh ginger, peeled and grated", + "weight" : 15.0 + }, { + "text" : "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)", + "weight" : 907.18474 + } ], + "calories" : 2253.101981306866, + "totalWeight" : 1179.9109942806097, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 2253.101981306866, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 151.56383347020517, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 41.169838892692944, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.7711070290000002, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 63.10028137309835, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 31.82952890962799, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.72546514133862, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3778219736212456, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.7939109868106228, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 161.72175016748596, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 889.0410452000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 8139.824735928436, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 116.51301359077408, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 276.82169621464243, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2529.722194651041, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 8.335407066766463, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.950414243828696, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1660.4080117810859, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 208.65249020000002, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.75, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.7104550166118764, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.542818655059382, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 45.028415542590324, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.3713281129199304, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.6245453880000005, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.9071847400000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.944087954, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.065879540000005, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 112.6550990653433, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 233.17512841570027, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 205.8491944634647, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 5.908488380446207, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.511287894484982, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 323.44350033497193, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 296.3470150666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 339.1593639970182, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 11.651301359077408, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 69.20542405366061, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 72.27777699002974, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 46.307817037591455, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 86.33609495885797, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 237.20114454015513, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 23.183610022222226, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 1.25, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 47.3636677741251, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 90.75403853290483, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 225.1420777129516, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 168.56640564599653, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 11.93185668459295, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 93.74242313333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.22679618500000004, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 9.72043977, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 23.832349425000007, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 151.56383347020517, + "hasRDI" : true, + "daily" : 233.17512841570027, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 41.169838892692944, + "hasRDI" : true, + "daily" : 205.8491944634647, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.7711070290000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 63.10028137309835, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 31.82952890962799, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 17.72546514133862, + "hasRDI" : true, + "daily" : 5.908488380446207, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 16.347643167717376, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3778219736212456, + "hasRDI" : true, + "daily" : 5.511287894484982, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.7939109868106228, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 161.72175016748596, + "hasRDI" : true, + "daily" : 323.44350033497193, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 889.0410452000001, + "hasRDI" : true, + "daily" : 296.3470150666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 8139.824735928436, + "hasRDI" : true, + "daily" : 339.1593639970182, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 116.51301359077408, + "hasRDI" : true, + "daily" : 11.651301359077408, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 276.82169621464243, + "hasRDI" : true, + "daily" : 69.20542405366061, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2529.722194651041, + "hasRDI" : true, + "daily" : 72.27777699002974, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 8.335407066766463, + "hasRDI" : true, + "daily" : 46.307817037591455, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.950414243828696, + "hasRDI" : true, + "daily" : 86.33609495885797, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1660.4080117810859, + "hasRDI" : true, + "daily" : 237.20114454015513, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 208.65249020000002, + "hasRDI" : true, + "daily" : 23.183610022222226, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.75, + "hasRDI" : true, + "daily" : 1.25, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.7104550166118764, + "hasRDI" : true, + "daily" : 47.3636677741251, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.542818655059382, + "hasRDI" : true, + "daily" : 90.75403853290483, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 45.028415542590324, + "hasRDI" : true, + "daily" : 225.1420777129516, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.3713281129199304, + "hasRDI" : true, + "daily" : 168.56640564599653, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : true, + "daily" : 11.93185668459295, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.6245453880000005, + "hasRDI" : true, + "daily" : 93.74242313333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.9071847400000002, + "hasRDI" : true, + "daily" : 0.22679618500000004, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.944087954, + "hasRDI" : true, + "daily" : 9.72043977, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 19.065879540000005, + "hasRDI" : true, + "daily" : 23.832349425000007, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_b79327d05b8e5b838ad6cfd9576b30b6", + "label" : "Chicken Vesuvio", + "image" : "https://www.edamam.com/web-img/e42/e42f9119813e890af34c259785ae1cfb.jpg", + "source" : "Serious Eats", + "url" : "http://www.seriouseats.com/recipes/2011/12/chicken-vesuvio-recipe.html", + "shareAs" : "http://www.edamam.com/recipe/chicken-vesuvio-b79327d05b8e5b838ad6cfd9576b30b6/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup olive oil", "5 cloves garlic, peeled", "2 large russet potatoes, peeled and cut into chunks", "1 3-4 pound chicken, cut into 8 pieces (or 3 pound chicken legs)", "3/4 cup white wine", "3/4 cup chicken stock", "3 tablespoons chopped parsley", "1 tablespoon dried oregano", "Salt and pepper", "1 cup frozen peas, thawed" ], + "ingredients" : [ { + "text" : "1/2 cup olive oil", + "weight" : 108.0 + }, { + "text" : "5 cloves garlic, peeled", + "weight" : 15.0 + }, { + "text" : "2 large russet potatoes, peeled and cut into chunks", + "weight" : 738.0 + }, { + "text" : "1 3-4 pound chicken, cut into 8 pieces (or 3 pound chicken legs)", + "weight" : 1587.5732950000001 + }, { + "text" : "3/4 cup white wine", + "weight" : 110.25 + }, { + "text" : "3/4 cup chicken stock", + "weight" : 180.0 + }, { + "text" : "3 tablespoons chopped parsley", + "weight" : 11.399999999999999 + }, { + "text" : "1 tablespoon dried oregano", + "weight" : 6.0 + }, { + "text" : "Salt and pepper", + "weight" : 17.34133977 + }, { + "text" : "Salt and pepper", + "weight" : 8.670669885 + }, { + "text" : "1 cup frozen peas, thawed", + "weight" : 134.0 + } ], + "calories" : 4181.274538701351, + "totalWeight" : 2913.153664598772, + "totalTime" : 60.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 4181.274538701351, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 274.571129832611, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 62.5415118546592, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.047163345382, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 147.41068630389012, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 47.3896991368323, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 176.1886133914575, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 21.058879480905002, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 15.725792287264, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 230.93090795265152, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 815.06238045, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 6741.319937460769, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 441.1083779878552, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 479.3344106204877, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 5906.466677482753, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 23.452202620288947, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 18.340223583205272, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2223.3049241003, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 637.87051551495, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 103.79879744960002, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.7282507278358001, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.917496514513, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 86.96976241599155, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 6.884051091465349, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 282.68750431645003, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 282.68750431645003, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.34660450586, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.1590996812000003, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.174524488604003, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 371.39113421074507, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 209.06372693506756, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 422.4171228194015, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 312.707559273296, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 58.7295377971525, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 84.23551792362001, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 461.8618159053031, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 271.68746015, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 280.88833072753204, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 44.11083779878552, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 119.83360265512192, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 168.75619078522152, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 130.29001455716082, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 122.26815722136848, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 317.61498915718573, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 70.87450172388333, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 172.99799574933337, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 115.21671518905335, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 112.79391261841177, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 434.8488120799578, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 344.2025545732675, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 70.67187607911251, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 55.77674176433333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.5397749203000001, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 100.87262244302002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 464.23891776343135, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 274.571129832611, + "hasRDI" : true, + "daily" : 422.4171228194015, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 62.5415118546592, + "hasRDI" : true, + "daily" : 312.707559273296, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.047163345382, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 147.41068630389012, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 47.3896991368323, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 176.1886133914575, + "hasRDI" : true, + "daily" : 58.7295377971525, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 155.1297339105525, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 21.058879480905002, + "hasRDI" : true, + "daily" : 84.23551792362001, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 15.725792287264, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 230.93090795265152, + "hasRDI" : true, + "daily" : 461.8618159053031, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 815.06238045, + "hasRDI" : true, + "daily" : 271.68746015, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 6741.319937460769, + "hasRDI" : true, + "daily" : 280.88833072753204, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 441.1083779878552, + "hasRDI" : true, + "daily" : 44.11083779878552, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 479.3344106204877, + "hasRDI" : true, + "daily" : 119.83360265512192, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 5906.466677482753, + "hasRDI" : true, + "daily" : 168.75619078522152, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 23.452202620288947, + "hasRDI" : true, + "daily" : 130.29001455716082, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 18.340223583205272, + "hasRDI" : true, + "daily" : 122.26815722136848, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2223.3049241003, + "hasRDI" : true, + "daily" : 317.61498915718573, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 637.87051551495, + "hasRDI" : true, + "daily" : 70.87450172388333, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 103.79879744960002, + "hasRDI" : true, + "daily" : 172.99799574933337, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.7282507278358001, + "hasRDI" : true, + "daily" : 115.21671518905335, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.917496514513, + "hasRDI" : true, + "daily" : 112.79391261841177, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 86.96976241599155, + "hasRDI" : true, + "daily" : 434.8488120799578, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 6.884051091465349, + "hasRDI" : true, + "daily" : 344.2025545732675, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 282.68750431645003, + "hasRDI" : true, + "daily" : 70.67187607911251, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 282.68750431645003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.34660450586, + "hasRDI" : true, + "daily" : 55.77674176433333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.1590996812000003, + "hasRDI" : true, + "daily" : 0.5397749203000001, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 20.174524488604003, + "hasRDI" : true, + "daily" : 100.87262244302002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 371.39113421074507, + "hasRDI" : true, + "daily" : 464.23891776343135, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_0a3f49a3da07cd8379d4e35f7a1a72fc", + "label" : "Chicken Teriyaki", + "image" : "https://www.edamam.com/web-img/827/8275cc33e9f0f4314617d5a356900aa7.jpg", + "source" : "No Recipes", + "url" : "http://norecipes.com/blog/2009/07/16/chicken-teriyaki-recipe/", + "shareAs" : "http://www.edamam.com/recipe/chicken-teriyaki-0a3f49a3da07cd8379d4e35f7a1a72fc/chicken", + "yield" : 8.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup water", "2 tablespoons Japanese soy sauce", "2 tablespoons dark brown sugar", "2 tablespoons mirin", "4-6 skin-on filleted (boneless) chicken thighs", "2 tablespoons mild flavored honey (or maltose)", "2 tablespoons dark soy sauce", "2 tablespoons sake" ], + "ingredients" : [ { + "text" : "1/2 cup water", + "weight" : 118.5 + }, { + "text" : "2 tablespoons Japanese soy sauce", + "weight" : 32.0 + }, { + "text" : "2 tablespoons dark brown sugar", + "weight" : 18.125000000000004 + }, { + "text" : "2 tablespoons mirin", + "weight" : 29.8 + }, { + "text" : "4-6 skin-on filleted (boneless) chicken thighs", + "weight" : 745.0 + }, { + "text" : "2 tablespoons mild flavored honey (or maltose)", + "weight" : 42.0 + }, { + "text" : "2 tablespoons dark soy sauce", + "weight" : 32.0 + }, { + "text" : "2 tablespoons sake", + "weight" : 29.1 + } ], + "calories" : 1955.851, + "totalWeight" : 1046.5249999999999, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1955.851, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 124.1093, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 33.750519999999995, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.6332500000000001, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 51.75932, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 25.997470000000003, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 60.3495125, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.5960000000000001, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 52.331275000000005, + "unit" : "g" + }, + "SUGAR.added" : { + "label" : "Sugars, added", + "quantity" : 52.075275000000005, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 128.72585, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 730.1, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 4131.643, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 97.33375, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 188.65025000000003, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1858.8712500000001, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 6.3579875, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 10.288767499999999, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1281.8290000000002, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 171.35, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.21, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.56497, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.2018099999999998, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 35.9324475, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.69738125, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 32.331250000000004, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 32.331250000000004, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 4.619, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.7450000000000001, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.5645, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 15.645000000000001, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 97.79255, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 190.93738461538462, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 168.75259999999997, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 20.116504166666665, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 2.3840000000000003, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 257.4517, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 243.36666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 172.15179166666667, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 9.733375, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 47.16256250000001, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 53.11060714285714, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 35.32215277777778, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 68.59178333333332, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 183.1184285714286, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 19.038888888888888, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.35, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 37.66466666666667, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 70.69470588235293, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 179.6622375, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 134.86906249999998, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 8.082812500000001, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 76.98333333333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.18625000000000003, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.8225, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.556250000000002, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 124.1093, + "hasRDI" : true, + "daily" : 190.93738461538462, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 33.750519999999995, + "hasRDI" : true, + "daily" : 168.75259999999997, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.6332500000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 51.75932, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 25.997470000000003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 60.3495125, + "hasRDI" : true, + "daily" : 20.116504166666665, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 59.7535125, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.5960000000000001, + "hasRDI" : true, + "daily" : 2.3840000000000003, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 52.331275000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 52.075275000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 128.72585, + "hasRDI" : true, + "daily" : 257.4517, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 730.1, + "hasRDI" : true, + "daily" : 243.36666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 4131.643, + "hasRDI" : true, + "daily" : 172.15179166666667, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 97.33375, + "hasRDI" : true, + "daily" : 9.733375, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 188.65025000000003, + "hasRDI" : true, + "daily" : 47.16256250000001, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1858.8712500000001, + "hasRDI" : true, + "daily" : 53.11060714285714, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 6.3579875, + "hasRDI" : true, + "daily" : 35.32215277777778, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 10.288767499999999, + "hasRDI" : true, + "daily" : 68.59178333333332, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1281.8290000000002, + "hasRDI" : true, + "daily" : 183.1184285714286, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 171.35, + "hasRDI" : true, + "daily" : 19.038888888888888, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.21, + "hasRDI" : true, + "daily" : 0.35, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.56497, + "hasRDI" : true, + "daily" : 37.66466666666667, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.2018099999999998, + "hasRDI" : true, + "daily" : 70.69470588235293, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 35.9324475, + "hasRDI" : true, + "daily" : 179.6622375, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.69738125, + "hasRDI" : true, + "daily" : 134.86906249999998, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 32.331250000000004, + "hasRDI" : true, + "daily" : 8.082812500000001, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 32.331250000000004, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 4.619, + "hasRDI" : true, + "daily" : 76.98333333333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.7450000000000001, + "hasRDI" : true, + "daily" : 0.18625000000000003, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.5645, + "hasRDI" : true, + "daily" : 7.8225, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 15.645000000000001, + "hasRDI" : true, + "daily" : 19.556250000000002, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_888e9fc4a808e9e4ccdb2ac24a6a2f46", + "label" : "Chicken Teriyaki", + "image" : "https://www.edamam.com/web-img/551/551b906bafd4c45d50033742eaf00c02.jpg", + "source" : "Saveur", + "url" : "http://www.saveur.com/article/Recipes/Chicken-Teriyaki", + "shareAs" : "http://www.edamam.com/recipe/chicken-teriyaki-888e9fc4a808e9e4ccdb2ac24a6a2f46/chicken", + "yield" : 2.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 tbsp. vegetable oil", "4 pieces chicken, trimmed, skin pierced with a fork", "½ cup Teriyaki Sauce" ], + "ingredients" : [ { + "text" : "1 tbsp. vegetable oil", + "weight" : 14.0 + }, { + "text" : "4 pieces chicken, trimmed, skin pierced with a fork", + "weight" : 357.6 + }, { + "text" : "½ cup Teriyaki Sauce", + "weight" : 144.0 + } ], + "calories" : 1020.76, + "totalWeight" : 515.6, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1020.7600000000001, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 67.88336000000001, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 16.3241, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.4542520000000001, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 32.39298000000001, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 13.944200000000002, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 22.4064, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.144, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 20.304, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 75.0528, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 268.20000000000005, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 5769.839999999999, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 75.33600000000001, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 159.36, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 999.8640000000001, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 5.6664, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 4.828560000000001, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 747.432, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 146.616, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 5.721600000000001, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.25776000000000004, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.5299200000000001, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 26.149176000000004, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 1.3956, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 32.976, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 32.976, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 1.1085600000000002, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.7152000000000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 4.1248000000000005, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 5.364000000000001, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 51.038000000000004, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 104.43593846153848, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 81.6205, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 7.468800000000001, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.576, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 150.1056, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 89.4, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 240.40999999999994, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 7.533600000000002, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 39.84, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 28.56754285714286, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 31.48, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 32.190400000000004, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 106.776, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 16.29066666666667, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 9.536000000000001, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 17.184, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 31.171764705882357, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 130.74588, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 69.78, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 8.244, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 18.476000000000003, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.17880000000000001, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.624000000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 6.705000000000001, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 67.88336000000001, + "hasRDI" : true, + "daily" : 104.43593846153848, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 16.3241, + "hasRDI" : true, + "daily" : 81.6205, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.4542520000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 32.39298000000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 13.944200000000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 22.4064, + "hasRDI" : true, + "daily" : 7.468800000000001, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 22.262400000000003, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.144, + "hasRDI" : true, + "daily" : 0.576, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 20.304, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 75.0528, + "hasRDI" : true, + "daily" : 150.1056, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 268.20000000000005, + "hasRDI" : true, + "daily" : 89.4, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 5769.839999999999, + "hasRDI" : true, + "daily" : 240.40999999999994, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 75.33600000000001, + "hasRDI" : true, + "daily" : 7.533600000000002, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 159.36, + "hasRDI" : true, + "daily" : 39.84, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 999.8640000000001, + "hasRDI" : true, + "daily" : 28.56754285714286, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 5.6664, + "hasRDI" : true, + "daily" : 31.48, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 4.828560000000001, + "hasRDI" : true, + "daily" : 32.190400000000004, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 747.432, + "hasRDI" : true, + "daily" : 106.776, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 146.616, + "hasRDI" : true, + "daily" : 16.29066666666667, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 5.721600000000001, + "hasRDI" : true, + "daily" : 9.536000000000001, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.25776000000000004, + "hasRDI" : true, + "daily" : 17.184, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.5299200000000001, + "hasRDI" : true, + "daily" : 31.171764705882357, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 26.149176000000004, + "hasRDI" : true, + "daily" : 130.74588, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 1.3956, + "hasRDI" : true, + "daily" : 69.78, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 32.976, + "hasRDI" : true, + "daily" : 8.244, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 32.976, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 1.1085600000000002, + "hasRDI" : true, + "daily" : 18.476000000000003, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.7152000000000002, + "hasRDI" : true, + "daily" : 0.17880000000000001, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 4.1248000000000005, + "hasRDI" : true, + "daily" : 20.624000000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 5.364000000000001, + "hasRDI" : true, + "daily" : 6.705000000000001, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_14ebd7d6d65f761843dba35202de4b37", + "label" : "Chicken Satay", + "image" : "https://www.edamam.com/web-img/ba6/ba6f66d885e4d62a98055b088a5a85a3.jpg", + "source" : "BBC Good Food", + "url" : "http://www.bbcgoodfood.com/recipes/3645/", + "shareAs" : "http://www.edamam.com/recipe/chicken-satay-14ebd7d6d65f761843dba35202de4b37/chicken", + "yield" : 4.0, + "dietLabels" : [ "High-Protein", "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "100.0ml soy sauce (Kikkoman is good)", "4.0 tbsp smooth peanut butter", "4 skinless chicken breasts fillets" ], + "ingredients" : [ { + "text" : "100.0ml soy sauce (Kikkoman is good)", + "weight" : 107.78219736212455 + }, { + "text" : "4.0 tbsp smooth peanut butter", + "weight" : 64.0 + }, { + "text" : "4 skinless chicken breasts fillets", + "weight" : 1088.0 + } ], + "calories" : 1745.4445646019262, + "totalWeight" : 1259.7821973621246, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1745.4445646019262, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 61.99035852496412, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 12.812121004074351, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.12416, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 24.19340833367867, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 12.91898717906239, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 19.59206232995274, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 4.062257578896997, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 7.144728789448498, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 267.78787086527694, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 794.24, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 6420.956101101502, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 121.3281251295011, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 491.9188260479722, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 4459.892558525242, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 6.702041861750805, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 9.942505117050485, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2710.758447621127, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 76.16000000000001, + "unit" : "µg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.1542881251295012, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 2.226480625647506, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 115.20657705407227, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 9.265437652095946, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 168.68950763069745, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 168.68950763069745, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 2.2848, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 10.88, + "unit" : "IU" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 11.916800000000002, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 2.3680000000000003, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 87.27222823009632, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 95.36978234609865, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 64.06060502037175, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 6.530687443317579, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 16.249030315587987, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 535.5757417305539, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 264.74666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 267.5398375458959, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 12.13281251295011, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 122.97970651199304, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 127.42550167214976, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 37.23356589861558, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 66.28336744700324, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 387.25120680301814, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 8.462222222222223, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 76.95254167530008, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 130.96944856750034, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 576.0328852703614, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 463.27188260479727, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 42.17237690767436, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 38.080000000000005, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.72, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 59.58400000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 2.9600000000000004, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 61.99035852496412, + "hasRDI" : true, + "daily" : 95.36978234609865, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 12.812121004074351, + "hasRDI" : true, + "daily" : 64.06060502037175, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.12416, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 24.19340833367867, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 12.91898717906239, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 19.59206232995274, + "hasRDI" : true, + "daily" : 6.530687443317579, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 15.529804751055742, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 4.062257578896997, + "hasRDI" : true, + "daily" : 16.249030315587987, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 7.144728789448498, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 267.78787086527694, + "hasRDI" : true, + "daily" : 535.5757417305539, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 794.24, + "hasRDI" : true, + "daily" : 264.74666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 6420.956101101502, + "hasRDI" : true, + "daily" : 267.5398375458959, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 121.3281251295011, + "hasRDI" : true, + "daily" : 12.13281251295011, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 491.9188260479722, + "hasRDI" : true, + "daily" : 122.97970651199304, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 4459.892558525242, + "hasRDI" : true, + "daily" : 127.42550167214976, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 6.702041861750805, + "hasRDI" : true, + "daily" : 37.23356589861558, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 9.942505117050485, + "hasRDI" : true, + "daily" : 66.28336744700324, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2710.758447621127, + "hasRDI" : true, + "daily" : 387.25120680301814, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 76.16000000000001, + "hasRDI" : true, + "daily" : 8.462222222222223, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.1542881251295012, + "hasRDI" : true, + "daily" : 76.95254167530008, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 2.226480625647506, + "hasRDI" : true, + "daily" : 130.96944856750034, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 115.20657705407227, + "hasRDI" : true, + "daily" : 576.0328852703614, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 9.265437652095946, + "hasRDI" : true, + "daily" : 463.27188260479727, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 168.68950763069745, + "hasRDI" : true, + "daily" : 42.17237690767436, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 168.68950763069745, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 2.2848, + "hasRDI" : true, + "daily" : 38.080000000000005, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 10.88, + "hasRDI" : true, + "daily" : 2.72, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 11.916800000000002, + "hasRDI" : true, + "daily" : 59.58400000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 2.3680000000000003, + "hasRDI" : true, + "daily" : 2.9600000000000004, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_e29feeb250c3cc0f6eb487b7cae5d8b1", + "label" : "Chicken Piccata", + "image" : "https://www.edamam.com/web-img/93e/93e5e22c8792bfbc9fa3654207347c9c.jpg", + "source" : "Leite's Culinaria", + "url" : "http://leitesculinaria.com/5354/recipes-chicken-piccata.html", + "shareAs" : "http://www.edamam.com/recipe/chicken-piccata-e29feeb250c3cc0f6eb487b7cae5d8b1/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)", "Kosher salt and freshly ground black pepper", "1/2 cup all-purpose flour", "2 tablespoons olive oil", "4 tablespoons unsalted butter", "2 tablespoons fresh lemon juice", "1 tablespoon capers, drained", "2 tablespoons chopped fresh flat-leaf parsley" ], + "ingredients" : [ { + "text" : "4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)", + "weight" : 348.0 + }, { + "text" : "Kosher salt and freshly ground black pepper", + "weight" : 3.231 + }, { + "text" : "Kosher salt and freshly ground black pepper", + "weight" : 1.6155 + }, { + "text" : "1/2 cup all-purpose flour", + "weight" : 62.5 + }, { + "text" : "2 tablespoons olive oil", + "weight" : 27.0 + }, { + "text" : "4 tablespoons unsalted butter", + "weight" : 56.8 + }, { + "text" : "2 tablespoons fresh lemon juice", + "weight" : 28.0 + }, { + "text" : "1 tablespoon capers, drained", + "weight" : 8.6 + }, { + "text" : "2 tablespoons chopped fresh flat-leaf parsley", + "weight" : 7.6 + } ], + "calories" : 1305.9649050000003, + "totalWeight" : 542.3978744593117, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 1305.9649050000003, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 83.0544453, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 35.025056760000005, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.8862639999999997, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 34.132949544999995, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 6.36084969, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 51.59456225000001, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 2.7062215, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 1.0186292, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 85.93358045, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 376.15999999999997, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 1256.0277929400006, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 63.98943487023479, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 123.4293287445931, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1339.133584956745, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 5.151776885715728, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 2.9993668244593112, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 832.43249, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 445.9061849999999, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 21.3138, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.83713374, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.9705318999999999, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 37.321661165, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.877883105, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 234.303635, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 70.553635, + "unit" : "µg" + }, + "FOLAC" : { + "label" : "Folic acid", + "quantity" : 96.25, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 0.82736, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.8519999999999999, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.4762912, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 150.5136735, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 65.29824525000001, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 127.7760696923077, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 175.12528380000003, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.19818741666667, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 10.824886, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 171.8671609, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 125.38666666666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 52.334491372500025, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 6.398943487023479, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 30.857332186148277, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 38.26095957019272, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 28.620982698420715, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 19.995778829728742, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 118.91892714285714, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 49.545131666666656, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 35.523, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 55.808916, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 57.090111764705874, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 186.608305825, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 143.89415525, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 58.57590875000001, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 13.789333333333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.21299999999999997, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 37.381456, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 188.142091875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 83.0544453, + "hasRDI" : true, + "daily" : 127.7760696923077, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 35.025056760000005, + "hasRDI" : true, + "daily" : 175.12528380000003, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.8862639999999997, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 34.132949544999995, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 6.36084969, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 51.59456225000001, + "hasRDI" : true, + "daily" : 17.19818741666667, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 48.88834075000001, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 2.7062215, + "hasRDI" : true, + "daily" : 10.824886, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 1.0186292, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 85.93358045, + "hasRDI" : true, + "daily" : 171.8671609, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 376.15999999999997, + "hasRDI" : true, + "daily" : 125.38666666666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 1256.0277929400006, + "hasRDI" : true, + "daily" : 52.334491372500025, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 63.98943487023479, + "hasRDI" : true, + "daily" : 6.398943487023479, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 123.4293287445931, + "hasRDI" : true, + "daily" : 30.857332186148277, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1339.133584956745, + "hasRDI" : true, + "daily" : 38.26095957019272, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 5.151776885715728, + "hasRDI" : true, + "daily" : 28.620982698420715, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 2.9993668244593112, + "hasRDI" : true, + "daily" : 19.995778829728742, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 832.43249, + "hasRDI" : true, + "daily" : 118.91892714285714, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 445.9061849999999, + "hasRDI" : true, + "daily" : 49.545131666666656, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 21.3138, + "hasRDI" : true, + "daily" : 35.523, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.83713374, + "hasRDI" : true, + "daily" : 55.808916, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.9705318999999999, + "hasRDI" : true, + "daily" : 57.090111764705874, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 37.321661165, + "hasRDI" : true, + "daily" : 186.608305825, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.877883105, + "hasRDI" : true, + "daily" : 143.89415525, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 234.303635, + "hasRDI" : true, + "daily" : 58.57590875000001, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 70.553635, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 96.25, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 0.82736, + "hasRDI" : true, + "daily" : 13.789333333333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.8519999999999999, + "hasRDI" : true, + "daily" : 0.21299999999999997, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 7.4762912, + "hasRDI" : true, + "daily" : 37.381456, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 150.5136735, + "hasRDI" : true, + "daily" : 188.142091875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_be3ba087e212f13672b553ecfa876333", + "label" : "Baked Chicken", + "image" : "https://www.edamam.com/web-img/01c/01cacb70890274fb7b7cebb975a93231.jpg", + "source" : "Martha Stewart", + "url" : "http://www.marthastewart.com/318981/baked-chicken", + "shareAs" : "http://www.edamam.com/recipe/baked-chicken-be3ba087e212f13672b553ecfa876333/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "6 bone-in chicken breast halves, or 6 chicken thighs and wings, skin-on", "1/2 teaspoon coarse salt", "1/2 teaspoon Mrs. Dash seasoning", "1/4 teaspoon freshly ground black pepper" ], + "ingredients" : [ { + "text" : "6 bone-in chicken breast halves, or 6 chicken thighs and wings, skin-on", + "weight" : 522.0 + }, { + "text" : "1/2 teaspoon coarse salt", + "weight" : 2.4270833333333335 + }, { + "text" : "1/2 teaspoon Mrs. Dash seasoning", + "weight" : 0.75 + }, { + "text" : "1/4 teaspoon freshly ground black pepper", + "weight" : 0.575 + } ], + "calories" : 901.58575, + "totalWeight" : 525.6156350198669, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 901.58575, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 48.36022, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 13.917879, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.5480999999999999, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 19.953694249999998, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 10.251458499999998, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 0.8596375, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.230225, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.01718, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 108.9686675, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 334.08, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 1216.981821, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 67.98700240476805, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 133.18615635019867, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 1161.3550008015893, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 4.19094159556556, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 4.208683135019868, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 910.471, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 126.42524999999999, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.09, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.33146099999999995, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 0.4461675, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 51.74860724999999, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 2.77817325, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 22.01275, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 22.01275, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 1.7748, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.088, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.42528, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 6.981775, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 45.0792875, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 74.40033846153847, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 69.589395, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 0.28654583333333333, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 0.9209, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 217.937335, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 111.36, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 50.707575875, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 6.798700240476805, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 33.29653908754967, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 33.18157145147398, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 23.283008864253112, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 28.05788756679912, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 130.06728571428573, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 14.04725, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.15, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 22.097399999999997, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 26.245147058823527, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 258.74303625, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 138.9086625, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 5.5031875, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 29.58, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.522, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.126400000000001, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 8.72721875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 48.36022, + "hasRDI" : true, + "daily" : 74.40033846153847, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 13.917879, + "hasRDI" : true, + "daily" : 69.589395, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.5480999999999999, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 19.953694249999998, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 10.251458499999998, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 0.8596375, + "hasRDI" : true, + "daily" : 0.28654583333333333, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 0.6294125, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 0.230225, + "hasRDI" : true, + "daily" : 0.9209, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.01718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 108.9686675, + "hasRDI" : true, + "daily" : 217.937335, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 334.08, + "hasRDI" : true, + "daily" : 111.36, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 1216.981821, + "hasRDI" : true, + "daily" : 50.707575875, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 67.98700240476805, + "hasRDI" : true, + "daily" : 6.798700240476805, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 133.18615635019867, + "hasRDI" : true, + "daily" : 33.29653908754967, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 1161.3550008015893, + "hasRDI" : true, + "daily" : 33.18157145147398, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 4.19094159556556, + "hasRDI" : true, + "daily" : 23.283008864253112, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 4.208683135019868, + "hasRDI" : true, + "daily" : 28.05788756679912, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 910.471, + "hasRDI" : true, + "daily" : 130.06728571428573, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 126.42524999999999, + "hasRDI" : true, + "daily" : 14.04725, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.09, + "hasRDI" : true, + "daily" : 0.15, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.33146099999999995, + "hasRDI" : true, + "daily" : 22.097399999999997, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 0.4461675, + "hasRDI" : true, + "daily" : 26.245147058823527, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 51.74860724999999, + "hasRDI" : true, + "daily" : 258.74303625, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 2.77817325, + "hasRDI" : true, + "daily" : 138.9086625, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 22.01275, + "hasRDI" : true, + "daily" : 5.5031875, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 22.01275, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 1.7748, + "hasRDI" : true, + "daily" : 29.58, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.088, + "hasRDI" : true, + "daily" : 0.522, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.42528, + "hasRDI" : true, + "daily" : 7.126400000000001, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 6.981775, + "hasRDI" : true, + "daily" : 8.72721875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_2463f2482609d7a471dbbf3b268bd956", + "label" : "Catalan Chicken", + "image" : "https://www.edamam.com/web-img/4d9/4d9084cbc170789caa9e997108b595de.jpg", + "source" : "Bon Appetit", + "url" : "http://www.bonappetit.com/columns/breadwinner/article/how-to-get-your-kids-to-eat-sauce-let-them-cook-it-themselves", + "shareAs" : "http://www.edamam.com/recipe/catalan-chicken-2463f2482609d7a471dbbf3b268bd956/chicken", + "yield" : 12.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 whole 4-pound chicken, quartered", "8 slices bacon", "30 cloves garlic", "3 lemons, peeled, rinds thinly sliced and reserved", "½ cup Banyuls or another fortified dessert wine", "1 cup veal or chicken stock" ], + "ingredients" : [ { + "text" : "1 whole 4-pound chicken, quartered", + "weight" : 920.0 + }, { + "text" : "8 slices bacon", + "weight" : 224.0 + }, { + "text" : "30 cloves garlic", + "weight" : 90.0 + }, { + "text" : "3 lemons, peeled, rinds thinly sliced and reserved", + "weight" : 174.0 + }, { + "text" : "½ cup Banyuls or another fortified dessert wine", + "weight" : 51.5 + }, { + "text" : "1 cup veal or chicken stock", + "weight" : 240.0 + } ], + "calories" : 3265.44, + "totalWeight" : 1699.5, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3265.4400000000005, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 231.3096, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 70.3534, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.19032, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 97.8972, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 45.063120000000005, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 64.36035, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 6.7620000000000005, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 15.2887, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 213.17780000000002, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 845.0400000000002, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 2493.4950000000003, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 331.86, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 261.535, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 3082.7200000000003, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 12.4, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 16.21565, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1909.935, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 405.98, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 135.49999999999997, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.5131100000000002, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.63251, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 76.29377500000001, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 5.21294, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 89.04, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 89.04, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.9720000000000004, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 2.7360000000000007, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 4.1282000000000005, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 15.81, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 163.27200000000002, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 355.8609230769231, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 351.76699999999994, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 21.45345, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 27.048000000000002, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 426.35560000000004, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 281.68000000000006, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 103.89562500000001, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 33.186, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 65.38375, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 88.07771428571428, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 68.88888888888889, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 108.10433333333334, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 272.84785714285715, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 45.10888888888889, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 225.8333333333333, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 100.87400000000001, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 96.02999999999999, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 381.4688750000001, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 260.647, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 22.26, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 66.2, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.6840000000000002, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 20.641000000000002, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.7625, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 231.3096, + "hasRDI" : true, + "daily" : 355.8609230769231, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 70.3534, + "hasRDI" : true, + "daily" : 351.76699999999994, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.19032, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 97.8972, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 45.063120000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 64.36035, + "hasRDI" : true, + "daily" : 21.45345, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 57.598349999999996, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 6.7620000000000005, + "hasRDI" : true, + "daily" : 27.048000000000002, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 15.2887, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 213.17780000000002, + "hasRDI" : true, + "daily" : 426.35560000000004, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 845.0400000000002, + "hasRDI" : true, + "daily" : 281.68000000000006, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 2493.4950000000003, + "hasRDI" : true, + "daily" : 103.89562500000001, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 331.86, + "hasRDI" : true, + "daily" : 33.186, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 261.535, + "hasRDI" : true, + "daily" : 65.38375, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 3082.7200000000003, + "hasRDI" : true, + "daily" : 88.07771428571428, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 12.4, + "hasRDI" : true, + "daily" : 68.88888888888889, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 16.21565, + "hasRDI" : true, + "daily" : 108.10433333333334, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1909.935, + "hasRDI" : true, + "daily" : 272.84785714285715, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 405.98, + "hasRDI" : true, + "daily" : 45.10888888888889, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 135.49999999999997, + "hasRDI" : true, + "daily" : 225.8333333333333, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.5131100000000002, + "hasRDI" : true, + "daily" : 100.87400000000001, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.63251, + "hasRDI" : true, + "daily" : 96.02999999999999, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 76.29377500000001, + "hasRDI" : true, + "daily" : 381.4688750000001, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 5.21294, + "hasRDI" : true, + "daily" : 260.647, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 89.04, + "hasRDI" : true, + "daily" : 22.26, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 89.04, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.9720000000000004, + "hasRDI" : true, + "daily" : 66.2, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 2.7360000000000007, + "hasRDI" : true, + "daily" : 0.6840000000000002, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 4.1282000000000005, + "hasRDI" : true, + "daily" : 20.641000000000002, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 15.81, + "hasRDI" : true, + "daily" : 19.7625, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_6b71506eaed4102c0b97dce1eaddd9a6", + "label" : "Roast Chicken", + "image" : "https://www.edamam.com/web-img/52c/52cdd87b67b161cce8e8a3f15237368f.jpg", + "source" : "Pioneer Woman", + "url" : "http://thepioneerwoman.com/cooking/2012/08/roast-chicken/", + "shareAs" : "http://www.edamam.com/recipe/roast-chicken-6b71506eaed4102c0b97dce1eaddd9a6/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1 whole Chicken, Rinsed And Patted Dry", "3/4 cups Butter, Softened", "3 whole Lemons", "4 sprigs Rosemary", "Salt And Pepper, to taste" ], + "ingredients" : [ { + "text" : "1 whole Chicken, Rinsed And Patted Dry", + "weight" : 920.0 + }, { + "text" : "3/4 cups Butter, Softened", + "weight" : 170.25 + }, { + "text" : "3 whole Lemons", + "weight" : 174.0 + }, { + "text" : "4 sprigs Rosemary", + "weight" : 20.0 + }, { + "text" : "Salt And Pepper, to taste", + "weight" : 7.7055 + }, { + "text" : "Salt And Pepper, to taste", + "weight" : 3.85275 + } ], + "calories" : 3285.0229024999994, + "totalWeight" : 1294.0970715157387, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3285.0229025, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 278.4613746500001, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 127.79511028, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 6.4731950000000005, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 93.4758643225, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 35.270217945000006, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 22.922783625, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 8.66674575, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 4.4768076, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 175.54342572500002, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 1056.0375000000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 2995.4571830700006, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 269.2063196637773, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 226.17314571515737, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2205.0625932212592, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 11.081933286001941, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.54746704651574, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1440.3873449999999, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 1573.6902425, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 111.3, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.6414734700000001, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.23401995, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 63.04114193250001, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.4427190025, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 101.9024675, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 101.9024675, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 3.1414250000000004, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 4.393750000000001, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 7.0108686, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 32.02445175, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 164.251145125, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 428.402114846154, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 638.9755514000001, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 7.640927875000001, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 34.666983, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 351.08685145000004, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 352.01250000000005, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 124.81071596125003, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 26.920631966377734, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 56.543286428789344, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 63.001788377750266, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 61.566296033344116, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 83.64978031010493, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 205.7696207142857, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 174.8544713888889, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 185.5, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 42.76489800000001, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 72.58940882352941, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 315.20570966250006, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 172.135950125, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 25.475616875, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 52.35708333333334, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 1.0984375000000002, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 35.054343, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 40.0305646875, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 278.4613746500001, + "hasRDI" : true, + "daily" : 428.402114846154, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 127.79511028, + "hasRDI" : true, + "daily" : 638.9755514000001, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 6.4731950000000005, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 93.4758643225, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 35.270217945000006, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 22.922783625, + "hasRDI" : true, + "daily" : 7.640927875000001, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 14.256037875, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 8.66674575, + "hasRDI" : true, + "daily" : 34.666983, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 4.4768076, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 175.54342572500002, + "hasRDI" : true, + "daily" : 351.08685145000004, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 1056.0375000000001, + "hasRDI" : true, + "daily" : 352.01250000000005, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 2995.4571830700006, + "hasRDI" : true, + "daily" : 124.81071596125003, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 269.2063196637773, + "hasRDI" : true, + "daily" : 26.920631966377734, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 226.17314571515737, + "hasRDI" : true, + "daily" : 56.543286428789344, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2205.0625932212592, + "hasRDI" : true, + "daily" : 63.001788377750266, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 11.081933286001941, + "hasRDI" : true, + "daily" : 61.566296033344116, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.54746704651574, + "hasRDI" : true, + "daily" : 83.64978031010493, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1440.3873449999999, + "hasRDI" : true, + "daily" : 205.7696207142857, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 1573.6902425, + "hasRDI" : true, + "daily" : 174.8544713888889, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 111.3, + "hasRDI" : true, + "daily" : 185.5, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.6414734700000001, + "hasRDI" : true, + "daily" : 42.76489800000001, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.23401995, + "hasRDI" : true, + "daily" : 72.58940882352941, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 63.04114193250001, + "hasRDI" : true, + "daily" : 315.20570966250006, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.4427190025, + "hasRDI" : true, + "daily" : 172.135950125, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 101.9024675, + "hasRDI" : true, + "daily" : 25.475616875, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 101.9024675, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 3.1414250000000004, + "hasRDI" : true, + "daily" : 52.35708333333334, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 4.393750000000001, + "hasRDI" : true, + "daily" : 1.0984375000000002, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 7.0108686, + "hasRDI" : true, + "daily" : 35.054343, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 32.02445175, + "hasRDI" : true, + "daily" : 40.0305646875, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + }, { + "recipe" : { + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_44d56ce15bf57f82e886a54c45539033", + "label" : "Roast Chicken", + "image" : "https://www.edamam.com/web-img/0f1/0f1cb835e1967f2d9816657a5bb388a8.jpg", + "source" : "Fine Cooking", + "url" : "http://www.finecooking.com/recipes/roast-chicken.aspx", + "shareAs" : "http://www.edamam.com/recipe/roast-chicken-44d56ce15bf57f82e886a54c45539033/chicken", + "yield" : 4.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1-1/2 Tbs. olive oil", "2 tsp. granulated sugar", "3-1/2 to 4-lb. whole chicken", "Freshly ground black pepper", "2 Tbs. kosher salt" ], + "ingredients" : [ { + "text" : "1-1/2 Tbs. olive oil", + "weight" : 20.25 + }, { + "text" : "2 tsp. granulated sugar", + "weight" : 8.4 + }, { + "text" : "3-1/2 to 4-lb. whole chicken", + "weight" : 1700.9713875 + }, { + "text" : "Freshly ground black pepper", + "weight" : 5.2762391625000005 + }, { + "text" : "2 Tbs. kosher salt", + "weight" : 29.125 + } ], + "calories" : 3881.849843422875, + "totalWeight" : 1742.2309398204768, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 3881.849843422875, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 276.5882963541975, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 76.18143205039199, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 1.649942245875, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 120.95420848741088, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 57.124940183091745, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 11.77247494441875, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3348885081125004, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 8.41696793064, + "unit" : "g" + }, + "SUGAR.added" : { + "label" : "Sugars, added", + "quantity" : 8.3832, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 316.9288793239837, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 1275.728540625, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 4034.469732851111, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 212.52708727278937, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 349.2899795994548, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 3285.914305897263, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 15.962865243600072, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 22.353685735441726, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 2508.76439750175, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 698.822853448875, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 27.2155422, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 1.0262811707955, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 2.0522588954925, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 115.74337147750236, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 5.968753712212874, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 102.95524390762499, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 102.95524390762499, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.2730113012499995, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 3.401942775, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 8.063662049789999, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 46.3422743215125, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 194.09249217114376, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 425.5204559295346, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 380.9071602519599, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 3.92415831480625, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.3395540324500015, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 633.8577586479674, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 425.242846875, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 168.10290553546298, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 21.252708727278936, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 87.3224948998637, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 93.88326588277894, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 88.68258468666707, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 149.0245715696115, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 358.39491392882144, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 77.64698371654165, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 45.359237, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 68.4187447197, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 120.72111149955882, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 578.7168573875118, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 298.4376856106437, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 25.738810976906247, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 87.8835216875, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.85048569375, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 40.31831024895, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 57.92784290189062, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 276.5882963541975, + "hasRDI" : true, + "daily" : 425.5204559295346, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 76.18143205039199, + "hasRDI" : true, + "daily" : 380.9071602519599, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 1.649942245875, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 120.95420848741088, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 57.124940183091745, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 11.77247494441875, + "hasRDI" : true, + "daily" : 3.92415831480625, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 10.43758643630625, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3348885081125004, + "hasRDI" : true, + "daily" : 5.3395540324500015, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 8.41696793064, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 8.3832, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 316.9288793239837, + "hasRDI" : true, + "daily" : 633.8577586479674, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 1275.728540625, + "hasRDI" : true, + "daily" : 425.242846875, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 4034.469732851111, + "hasRDI" : true, + "daily" : 168.10290553546298, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 212.52708727278937, + "hasRDI" : true, + "daily" : 21.252708727278936, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 349.2899795994548, + "hasRDI" : true, + "daily" : 87.3224948998637, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 3285.914305897263, + "hasRDI" : true, + "daily" : 93.88326588277894, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 15.962865243600072, + "hasRDI" : true, + "daily" : 88.68258468666707, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 22.353685735441726, + "hasRDI" : true, + "daily" : 149.0245715696115, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 2508.76439750175, + "hasRDI" : true, + "daily" : 358.39491392882144, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 698.822853448875, + "hasRDI" : true, + "daily" : 77.64698371654165, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 27.2155422, + "hasRDI" : true, + "daily" : 45.359237, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 1.0262811707955, + "hasRDI" : true, + "daily" : 68.4187447197, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 2.0522588954925, + "hasRDI" : true, + "daily" : 120.72111149955882, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 115.74337147750236, + "hasRDI" : true, + "daily" : 578.7168573875118, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 5.968753712212874, + "hasRDI" : true, + "daily" : 298.4376856106437, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 102.95524390762499, + "hasRDI" : true, + "daily" : 25.738810976906247, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 102.95524390762499, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.2730113012499995, + "hasRDI" : true, + "daily" : 87.8835216875, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 3.401942775, + "hasRDI" : true, + "daily" : 0.85048569375, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 8.063662049789999, + "hasRDI" : true, + "daily" : 40.31831024895, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 46.3422743215125, + "hasRDI" : true, + "daily" : 57.92784290189062, + "unit" : "µg" + } ] + }, + "bookmarked" : false, + "bought" : false + } ] + } + http_version: + recorded_at: Fri, 04 May 2018 20:50:39 GMT +recorded_with: VCR 4.0.0 diff --git a/test/lib/edamam_api_wrapper_test.rb b/test/lib/edamam_api_wrapper_test.rb index 981b7373b..16da10fb1 100644 --- a/test/lib/edamam_api_wrapper_test.rb +++ b/test/lib/edamam_api_wrapper_test.rb @@ -1,21 +1,50 @@ require 'test_helper' require 'pry' + describe EdamamApiWrapper do - it "Can return array of recipes based on query" do - VCR.use_cassette("recipes") do - query = "chicken" - recipe_list = EdamamApiWrapper.list_recipes(query) - recipe_list.must_be_kind_of Array + describe "list_recipes" do + it "Can return array of recipes based on query" do + VCR.use_cassette("recipes") do + query = "chicken" + recipe_list = EdamamApiWrapper.list_recipes(query) + recipe_list.must_be_kind_of Array + end + end + + it "Returns empty array if there are no query matches" do + VCR.use_cassette("recipes2") do + query = 24324234234234.2342432432 + recipe_list = EdamamApiWrapper.list_recipes(query) + recipe_list.must_be_empty + end end end - it "Returns empty array if there are no query matches" do - VCR.use_cassette("recipes2") do - query = 24324234234234.2342432432 - recipe_list = EdamamApiWrapper.list_recipes(query) - recipe_list.must_be_empty + describe "find_recipe" do + + before do + VCR.use_cassette("show_recipe") do + EdamamApiWrapper.list_recipes("chicken") + recipe_id = "7bf4a371c6884d809682a72808da7dc2" + @recipe = EdamamApiWrapper.find_recipe(recipe_id) + end end + it "Can return Recipe" do + VCR.use_cassette("show_recipe") do + @recipe.must_be_kind_of Recipe + end + end + + it "returns the accurate information of a recipe" do + VCR.use_cassette("show_recipe") do + @recipe.name.must_equal "Teriyaki Chicken" + @recipe.image.must_equal "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg" + @recipe.must_respond_to :id + @recipe.must_respond_to :name + end + end + end end From e24a657861019f4a3380e7ac6795ed9f72a1704c Mon Sep 17 00:00:00 2001 From: Jackie Date: Fri, 4 May 2018 14:11:55 -0700 Subject: [PATCH 10/21] Added navigation bar to certain pages --- app/views/recipes/create.html.erb | 2 -- app/views/recipes/index.html.erb | 12 ++++++++++++ app/views/recipes/new.html.erb | 2 -- app/views/recipes/show.html.erb | 11 +++++++++++ 4 files changed, 23 insertions(+), 4 deletions(-) delete mode 100644 app/views/recipes/create.html.erb delete mode 100644 app/views/recipes/new.html.erb diff --git a/app/views/recipes/create.html.erb b/app/views/recipes/create.html.erb deleted file mode 100644 index c3982a70a..000000000 --- a/app/views/recipes/create.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

Recipes#create

-

Find me in app/views/recipes/create.html.erb

diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index 64208aca6..fa59dbe9d 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -1,5 +1,17 @@ + +
+

Results for <%= @query %>

<% if @recipes %>
    diff --git a/app/views/recipes/new.html.erb b/app/views/recipes/new.html.erb deleted file mode 100644 index 4590c48fc..000000000 --- a/app/views/recipes/new.html.erb +++ /dev/null @@ -1,2 +0,0 @@ -

    Recipes#new

    -

    Find me in app/views/recipes/new.html.erb

    diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 8251338b8..f6a399039 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -1,3 +1,14 @@ + +

    <%= @recipe.name %>

    By: <%= @recipe.contributor %>

    From 2c65c0255aa3a609376795b5c01cea09ad9ed991 Mon Sep 17 00:00:00 2001 From: Jackie Date: Fri, 4 May 2018 14:28:32 -0700 Subject: [PATCH 11/21] Changed config.autoload_paths to config.eager_load_paths --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index 77e33f4cb..5f10925dc 100644 --- a/config/application.rb +++ b/config/application.rb @@ -22,7 +22,7 @@ class Application < Rails::Application # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. - config.autoload_paths << Rails.root.join('lib') + config.eager_load_paths << Rails.root.join('lib') end end From 0702a566fad78ad65290a085a4f890b479483d2f Mon Sep 17 00:00:00 2001 From: Jackie Date: Sat, 5 May 2018 12:29:58 -0700 Subject: [PATCH 12/21] Added styling to home page to be responsive --- app/assets/stylesheets/application.css | 30 +++++++++++++++++ app/assets/stylesheets/recipes.scss | 46 ++++++++++++++++++++++++++ app/views/layouts/application.html.erb | 28 ++++++++++------ app/views/recipes/home.html.erb | 21 ++++++++---- test/lib/edamam_api_wrapper_test.rb | 3 -- 5 files changed, 108 insertions(+), 20 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 3a3841832..c16d6c484 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -17,3 +17,33 @@ *= require foundation_and_overrides */ + +body { + margin: 3em; +} + +body * { + font-family: 'Nixie One', cursive; + font-weight: bold; +} + +.muncher a{ + font-family: 'Special Elite', cursive; + color: black; +} + +.muncher { + text-align: center; + margin-bottom: 80px; + +} + +.footer { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: black; + color: white; + text-align: center; +} diff --git a/app/assets/stylesheets/recipes.scss b/app/assets/stylesheets/recipes.scss index 1e10ffa50..3efb9610d 100644 --- a/app/assets/stylesheets/recipes.scss +++ b/app/assets/stylesheets/recipes.scss @@ -1,3 +1,49 @@ // Place all the styles related to the recipes controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ + +input[type=text], select, textarea{ + width: 100%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + resize: vertical; +} + +label { + padding: 12px 12px 12px 0; + font-size: 1.5em; +} + +input[type=submit] { + background-color: black; + color: white; + padding: 12px 20px; + border: none; + border-radius: 4px; + cursor: pointer; + float: right; +} + +.container { + max-width: 500px; + border-radius: 5px; + background-color: #f2f2f2; + padding: 50px; + padding-top: 20px; + margin: auto; +} + +.row:after { + content: ""; + display: table; + clear: both; +} + +@media screen and (max-width: 600px) { + .col-25, .col-75, input[type=submit] { + width: 100%; + margin-top: 0; + } +} diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index cd6000489..70141f12c 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,19 +1,25 @@ - - - + + + + - <%= content_for?(:title) ? yield(:title) : "Untitled" %> - <%= stylesheet_link_tag "application" %> - <%= javascript_include_tag "application", 'data-turbolinks-track' => true %> - <%= csrf_meta_tags %> - - + <%= content_for?(:title) ? yield(:title) : "Untitled" %> - <%= yield %> + <%= stylesheet_link_tag "application" %> + <%= javascript_include_tag "application", 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + - + +

    <%= link_to "Seattle Muncher", root_path%>

    + + <%= yield %> + + diff --git a/app/views/recipes/home.html.erb b/app/views/recipes/home.html.erb index 21c1cd2d6..9c41a8a1e 100644 --- a/app/views/recipes/home.html.erb +++ b/app/views/recipes/home.html.erb @@ -1,7 +1,16 @@ -

    Muncher

    -<%= form_tag recipes_path, method: :get do %> - <%= label_tag(:search, "Search for Recipe") %> - <%= text_field_tag(:search) %> - <%= submit_tag("Search") %> -<% end %> +
    + <%= form_tag recipes_path, method: :get do %> +
    +
    + <%= label_tag(:search, "Find your flavor...") %> +
    +
    + <%= text_field_tag(:search) %> +
    +
    +
    + <%= submit_tag("Search") %> +
    + + <% end %> diff --git a/test/lib/edamam_api_wrapper_test.rb b/test/lib/edamam_api_wrapper_test.rb index 16da10fb1..6b81aa914 100644 --- a/test/lib/edamam_api_wrapper_test.rb +++ b/test/lib/edamam_api_wrapper_test.rb @@ -39,9 +39,6 @@ it "returns the accurate information of a recipe" do VCR.use_cassette("show_recipe") do @recipe.name.must_equal "Teriyaki Chicken" - @recipe.image.must_equal "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg" - @recipe.must_respond_to :id - @recipe.must_respond_to :name end end From caaef502c48e088fe7c6b0424efe086fb495e8ae Mon Sep 17 00:00:00 2001 From: Jackie Date: Sat, 5 May 2018 12:45:13 -0700 Subject: [PATCH 13/21] Added styling to index recipe page --- app/assets/stylesheets/application.css | 57 ++++++++++++++++++++++++++ app/views/recipes/index.html.erb | 25 ++++++----- 2 files changed, 71 insertions(+), 11 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index c16d6c484..29cf581a5 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -47,3 +47,60 @@ body * { color: white; text-align: center; } + +a { + text-decoration: none; + color: inherit; +} + +ul { + list-style-type: none; +} + + + +.recipe-title { + font-size: 2em; +} + +.entry { + border: solid black 2px; + width: 450px; + padding: 70px; + margin-top: 30px; + margin-right: 10px; + color: black; +} + +.date { + font-size: .8em; +} + +.journal-entries { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-content: center; + margin-bottom: 100px; +} + +.button-container{ + padding-top: 30px; +} + +.read-more-button { + text-transform: uppercase; + border: 1px solid white; + padding: 10px; + border-radius: 10px; +} + +.read-more-button { + color: black; +} + +.read-more-button:hover { + background-color: rgb(109, 191, 15); + color: black; + cursor: default; +} diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index fa59dbe9d..629f8cde5 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -10,16 +10,19 @@ -
    -

    Results for <%= @query %>

    - <% if @recipes %> -
      - <% @recipes.each do |recipe| %> -
    • - <%= link_to recipe.name, recipe_path(recipe.id) %> -
    • - <% end %> -
    +

    Results for <%= @query %>

    +<% if @recipes %> +
    + + <% @recipes.each do |recipe| %> +
    +

    <%= link_to recipe.name, recipe_path(recipe.id) %>

    +
    + <%= image_tag(recipe.image, :alt => "food image") %> +
    +
    + <% end %> -
    +<% end %> +
    From 3bd4cc1dc3f5d4566e89246fd5e8fc18e80b686c Mon Sep 17 00:00:00 2001 From: Jackie Date: Sat, 5 May 2018 14:03:45 -0700 Subject: [PATCH 14/21] Added search bar to index and show pages --- app/assets/stylesheets/application.css | 8 ++++++++ app/assets/stylesheets/recipes.scss | 4 ++++ app/views/recipes/index.html.erb | 25 ++++++++++++++++--------- app/views/recipes/show.html.erb | 23 +++++++++++++++-------- 4 files changed, 43 insertions(+), 17 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 29cf581a5..8f142be02 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -104,3 +104,11 @@ ul { color: black; cursor: default; } + +nav ul { + display: flex; +} + +.search { + margin-left: auto; +} diff --git a/app/assets/stylesheets/recipes.scss b/app/assets/stylesheets/recipes.scss index 3efb9610d..aee6a9fa4 100644 --- a/app/assets/stylesheets/recipes.scss +++ b/app/assets/stylesheets/recipes.scss @@ -47,3 +47,7 @@ input[type=submit] { margin-top: 0; } } + +.index-search { + margin-bottom: 60px; +} diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index 629f8cde5..5afc98347 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -1,12 +1,19 @@ @@ -19,7 +26,7 @@

    <%= link_to recipe.name, recipe_path(recipe.id) %>

    - <%= image_tag(recipe.image, :alt => "food image") %> + <%= link_to image_tag(recipe.image, :alt => "food image"), recipe_path(recipe.id) %>
    diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index f6a399039..013700464 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -1,12 +1,19 @@

    <%= @recipe.name %>

    From 519e22ea56e52489df3f721bb410daa554829e34 Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 10:23:15 -0700 Subject: [PATCH 15/21] Added pagination and updated styling for pagination bar --- Gemfile | 1 + Gemfile.lock | 2 ++ app/assets/stylesheets/application.css | 13 +++++++++++++ app/controllers/recipes_controller.rb | 3 ++- app/views/recipes/index.html.erb | 3 +++ lib/edamam_api_wrapper.rb | 2 +- 6 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 1986c02a7..1ecfe7371 100644 --- a/Gemfile +++ b/Gemfile @@ -23,6 +23,7 @@ gem 'uglifier', '>= 1.3.0' gem 'turbolinks', '~> 5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.5' +gem 'will_paginate', '~> 3.1.6' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use ActiveModel has_secure_password diff --git a/Gemfile.lock b/Gemfile.lock index 79c219caa..4925d1c83 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -239,6 +239,7 @@ GEM websocket-driver (0.7.0) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.3) + will_paginate (3.1.6) xpath (3.0.0) nokogiri (~> 1.8) @@ -276,6 +277,7 @@ DEPENDENCIES uglifier (>= 1.3.0) web-console (>= 3.3.0) webmock + will_paginate (~> 3.1.6) RUBY VERSION ruby 2.5.0p0 diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 8f142be02..9bee79dbe 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -112,3 +112,16 @@ nav ul { .search { margin-left: auto; } + + +.pagination a { + border: 1px solid #ddd; + padding: 8px 16px; + display: inline; +} + +.pagination { + display: flex; + justify-content: center; + padding-bottom: 100px; +} diff --git a/app/controllers/recipes_controller.rb b/app/controllers/recipes_controller.rb index 29d338b12..d3daeb9c8 100644 --- a/app/controllers/recipes_controller.rb +++ b/app/controllers/recipes_controller.rb @@ -5,7 +5,8 @@ def home def index @query = params[:search] - @recipes = EdamamApiWrapper.list_recipes(@query) + @recipes = EdamamApiWrapper.list_recipes(@query).paginate(:page => params[:page], :per_page => 10) + end def show diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index 5afc98347..9e884cf3c 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -20,6 +20,7 @@

    Results for <%= @query %>

    <% if @recipes %> +
    <% @recipes.each do |recipe| %> @@ -33,3 +34,5 @@ <% end %> <% end %>
    + +
    <%= will_paginate @recipes %>
    diff --git a/lib/edamam_api_wrapper.rb b/lib/edamam_api_wrapper.rb index f1a931525..5bd8f2814 100644 --- a/lib/edamam_api_wrapper.rb +++ b/lib/edamam_api_wrapper.rb @@ -12,7 +12,7 @@ def self.list_recipes(search) @recipe_list = [] end - response = HTTParty.get("#{URL}?q=#{search}&app_id=#{APP_ID}&app_key=#{APP_KEY}") + response = HTTParty.get("#{URL}?q=#{search}&app_id=#{APP_ID}&app_key=#{APP_KEY}&from=0&to=100") if response["hits"] From 88d269640b512e3f02d1202396972fa182a81d10 Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 10:56:49 -0700 Subject: [PATCH 16/21] Added styles to show page and added url link to recipe initialization --- app/assets/stylesheets/application.css | 1 + app/assets/stylesheets/recipes.scss | 21 +++++ app/views/recipes/index.html.erb | 2 +- app/views/recipes/show.html.erb | 106 ++++++++++++++----------- lib/recipe.rb | 3 +- 5 files changed, 84 insertions(+), 49 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 9bee79dbe..938446407 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -124,4 +124,5 @@ nav ul { display: flex; justify-content: center; padding-bottom: 100px; + flex-wrap: wrap; } diff --git a/app/assets/stylesheets/recipes.scss b/app/assets/stylesheets/recipes.scss index aee6a9fa4..54b6eb1f5 100644 --- a/app/assets/stylesheets/recipes.scss +++ b/app/assets/stylesheets/recipes.scss @@ -51,3 +51,24 @@ input[type=submit] { .index-search { margin-bottom: 60px; } + +.recipe-details { + display: flex; +} + +.recipe-details section { + padding: 70px 20px; +} + +.ingredients, .labels { + list-style-type: circle; +} + +.label-section { + padding-left: 30px; + padding-bottom: 40px; +} + +.label-section section { + padding-bottom: 20px; +} diff --git a/app/views/recipes/index.html.erb b/app/views/recipes/index.html.erb index 9e884cf3c..071525ffb 100644 --- a/app/views/recipes/index.html.erb +++ b/app/views/recipes/index.html.erb @@ -35,4 +35,4 @@ <% end %> -
    <%= will_paginate @recipes %>
    +<%= will_paginate @recipes %> diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 013700464..a011a3cca 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -1,59 +1,71 @@ + -

    <%= @recipe.name %>

    -

    By: <%= @recipe.contributor %>

    +

    <%= link_to @recipe.name, @recipe.url %>

    +

    By: <%= @recipe.contributor %>

    -
    - <%= image_tag @recipe.image %> +
    +
    + <%= image_tag @recipe.image %> +
    -
    +
    +

    Ingredients

    +
      + <% @recipe.ingredients.each do |ingredient| %> +
    • + <%= ingredient %> +
    • + <% end %> +
    +
    +
    -
    -

    Ingredients

    -
      - <% @recipe.ingredients.each do |ingredient| %> -
    • - <%= ingredient %> -
    • - <% end %> -
    -
    +
    +
    +

    Dietary Labels

    + <% if @recipe.dietary_labels.empty? %> +

    + None +

    + <% else %> +
      + <% @recipe.dietary_labels.each do |label| %> +
    • + <%= label %> +
    • + <% end %> +
    + <% end %> +
    -
    -

    Dietary Labels

    -
      - <% @recipe.dietary_labels.each do |label| %> -
    • - <%= label %> -
    • - <% end %> -
    -
    - -
    -

    Health Labels

    -
      - <% @recipe.health_labels.each do |label| %> -
    • - <%= label %> -
    • - <% end %> -
    -
    +
    +

    Health Labels

    +
      + <% @recipe.health_labels.each do |label| %> +
    • + <%= label %> +
    • + <% end %> +
    +
    + + + +
    diff --git a/lib/recipe.rb b/lib/recipe.rb index d6e36ac1a..e71a43f54 100644 --- a/lib/recipe.rb +++ b/lib/recipe.rb @@ -1,5 +1,5 @@ class Recipe - attr_reader :name, :id, :image, :contributor, :ingredients, :dietary_labels, :health_labels + attr_reader :name, :id, :image, :contributor, :ingredients, :dietary_labels, :health_labels, :url def initialize(recipe) @id = recipe["uri"].partition('_').last @@ -9,5 +9,6 @@ def initialize(recipe) @ingredients = recipe["ingredientLines"] @dietary_labels = recipe["dietLabels"] @health_labels = recipe["healthLabels"] + @url = recipe["url"] end end From 6be193c3f69b343155737045dc82ff7f7a16206d Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 11:39:03 -0700 Subject: [PATCH 17/21] changed button to see recipe link --- app/views/recipes/show.html.erb | 2 +- test/cassettes/recipes.yml | 22224 ++++++++++++++++++++++++++++++ test/cassettes/recipes2.yml | 59 + test/cassettes/show_recipe.yml | 22165 +++++++++++++++++++++++++++++ 4 files changed, 44449 insertions(+), 1 deletion(-) diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index a011a3cca..232f33cf1 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -66,6 +66,6 @@
- +
diff --git a/test/cassettes/recipes.yml b/test/cassettes/recipes.yml index b05a80a57..fad6b0916 100644 --- a/test/cassettes/recipes.yml +++ b/test/cassettes/recipes.yml @@ -5819,4 +5819,22228 @@ http_interactions: } http_version: recorded_at: Fri, 04 May 2018 20:36:08 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&from=0&q=chicken&to=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Sun, 06 May 2018 18:00:51 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: "{\n \"q\" : \"chicken\",\n \"from\" : 0,\n \"to\" : 100,\n \"params\" + : {\n \"sane\" : [ ],\n \"q\" : [ \"chicken\" ],\n \"from\" : [ \"0\" + ],\n \"app_key\" : [ \"\" ],\n \"to\" : [ \"100\" ],\n \"app_id\" + : [ \"\" ]\n },\n \"more\" : true,\n \"count\" : 191058,\n \"hits\" + : [ {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2\",\n + \ \"label\" : \"Teriyaki Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1/2 cup (125ml) + mirin\", \"1/2 cup (125ml) soy sauce\", \"One 2-inch (5cm) piece of fresh + ginger, peeled and grated\", \"2-pounds (900g) boneless chicken thighs (4-8 + thighs, depending on size)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1/2 cup (125ml) mirin\",\n \"weight\" : 122.99850757795392\n }, + {\n \"text\" : \"1/2 cup (125ml) soy sauce\",\n \"weight\" : + 134.72774670265568\n }, {\n \"text\" : \"One 2-inch (5cm) piece + of fresh ginger, peeled and grated\",\n \"weight\" : 15.0\n }, + {\n \"text\" : \"2-pounds (900g) boneless chicken thighs (4-8 thighs, + depending on size)\",\n \"weight\" : 907.18474\n } ],\n \"calories\" + : 2253.101981306866,\n \"totalWeight\" : 1179.9109942806097,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2253.101981306866,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 151.56383347020517,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.169838892692944,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7711070290000002,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 63.10028137309835,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 31.82952890962799,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 17.72546514133862,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.3778219736212456,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.7939109868106228,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 161.72175016748596,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 889.0410452000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 8139.824735928436,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 116.51301359077408,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 276.82169621464243,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2529.722194651041,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.335407066766463,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.950414243828696,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1660.4080117810859,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 208.65249020000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 0.75,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7104550166118764,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.542818655059382,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 45.028415542590324,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.3713281129199304,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 47.7274267383718,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 47.7274267383718,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.6245453880000005,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 1.944087954,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.065879540000005,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 112.6550990653433,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 233.17512841570027,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 205.8491944634647,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.908488380446207,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.511287894484982,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 323.44350033497193,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 296.3470150666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 339.1593639970182,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.651301359077408,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.20542405366061,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 72.27777699002974,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.307817037591455,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 86.33609495885797,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 237.20114454015513,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 23.183610022222226,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 1.25,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 47.3636677741251,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 90.75403853290483,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 225.1420777129516,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 168.56640564599653,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 11.93185668459295,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 93.74242313333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.22679618500000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 9.72043977,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 23.832349425000007,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 151.56383347020517,\n \"hasRDI\" + : true,\n \"daily\" : 233.17512841570027,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 41.169838892692944,\n \"hasRDI\" : true,\n \"daily\" : + 205.8491944634647,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.7711070290000002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 63.10028137309835,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.82952890962799,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 17.72546514133862,\n \"hasRDI\" : true,\n \"daily\" : 5.908488380446207,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.347643167717376,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.3778219736212456,\n \"hasRDI\" + : true,\n \"daily\" : 5.511287894484982,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.7939109868106228,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 161.72175016748596,\n \"hasRDI\" : true,\n \"daily\" : 323.44350033497193,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 889.0410452000001,\n \"hasRDI\" : true,\n \"daily\" + : 296.3470150666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 8139.824735928436,\n \"hasRDI\" : true,\n \"daily\" + : 339.1593639970182,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 116.51301359077408,\n \"hasRDI\" : true,\n \"daily\" + : 11.651301359077408,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 276.82169621464243,\n \"hasRDI\" : true,\n \"daily\" + : 69.20542405366061,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2529.722194651041,\n \"hasRDI\" : true,\n \"daily\" + : 72.27777699002974,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.335407066766463,\n \"hasRDI\" : true,\n \"daily\" + : 46.307817037591455,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 12.950414243828696,\n \"hasRDI\" : true,\n \"daily\" + : 86.33609495885797,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1660.4080117810859,\n \"hasRDI\" : true,\n \"daily\" + : 237.20114454015513,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 208.65249020000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.183610022222226,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.75,\n \"hasRDI\" : true,\n \"daily\" + : 1.25,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.7104550166118764,\n \"hasRDI\" : true,\n \"daily\" : 47.3636677741251,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.542818655059382,\n \"hasRDI\" : true,\n \"daily\" : 90.75403853290483,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.028415542590324,\n \"hasRDI\" : true,\n \"daily\" : 225.1420777129516,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.3713281129199304,\n \"hasRDI\" : true,\n \"daily\" : 168.56640564599653,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 47.7274267383718,\n \"hasRDI\" : true,\n \"daily\" + : 11.93185668459295,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 47.7274267383718,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.6245453880000005,\n \"hasRDI\" : true,\n \"daily\" + : 93.74242313333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.9071847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.22679618500000004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.944087954,\n \"hasRDI\" : true,\n \"daily\" + : 9.72043977,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.065879540000005,\n \"hasRDI\" : true,\n \"daily\" + : 23.832349425000007,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b79327d05b8e5b838ad6cfd9576b30b6\",\n + \ \"label\" : \"Chicken Vesuvio\",\n \"image\" : \"https://www.edamam.com/web-img/e42/e42f9119813e890af34c259785ae1cfb.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/12/chicken-vesuvio-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-vesuvio-b79327d05b8e5b838ad6cfd9576b30b6/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup olive oil\", \"5 cloves garlic, + peeled\", \"2 large russet potatoes, peeled and cut into chunks\", \"1 3-4 + pound chicken, cut into 8 pieces (or 3 pound chicken legs)\", \"3/4 cup white + wine\", \"3/4 cup chicken stock\", \"3 tablespoons chopped parsley\", \"1 + tablespoon dried oregano\", \"Salt and pepper\", \"1 cup frozen peas, thawed\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup olive oil\",\n + \ \"weight\" : 108.0\n }, {\n \"text\" : \"5 cloves garlic, + peeled\",\n \"weight\" : 15.0\n }, {\n \"text\" : \"2 large + russet potatoes, peeled and cut into chunks\",\n \"weight\" : 738.0\n + \ }, {\n \"text\" : \"1 3-4 pound chicken, cut into 8 pieces (or + 3 pound chicken legs)\",\n \"weight\" : 1587.5732950000001\n }, + {\n \"text\" : \"3/4 cup white wine\",\n \"weight\" : 110.25\n + \ }, {\n \"text\" : \"3/4 cup chicken stock\",\n \"weight\" + : 180.0\n }, {\n \"text\" : \"3 tablespoons chopped parsley\",\n + \ \"weight\" : 11.399999999999999\n }, {\n \"text\" : \"1 + tablespoon dried oregano\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 17.34133977\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 8.670669885\n }, {\n \"text\" + : \"1 cup frozen peas, thawed\",\n \"weight\" : 134.0\n } ],\n + \ \"calories\" : 4181.274538701351,\n \"totalWeight\" : 2913.153664598772,\n + \ \"totalTime\" : 60.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4181.274538701351,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 274.571129832611,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 62.5415118546592,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.047163345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 147.41068630389012,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 47.3896991368323,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 176.1886133914575,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 21.058879480905002,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 15.725792287264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 230.93090795265152,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 815.06238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6741.319937460769,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 441.1083779878552,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 479.3344106204877,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5906.466677482753,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 23.452202620288947,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.340223583205272,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2223.3049241003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 637.87051551495,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 103.79879744960002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.7282507278358001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.917496514513,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 86.96976241599155,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 6.884051091465349,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 282.68750431645003,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 282.68750431645003,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 20.174524488604003,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 371.39113421074507,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 209.06372693506756,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 422.4171228194015,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 312.707559273296,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 58.7295377971525,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 84.23551792362001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 461.8618159053031,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 271.68746015,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 280.88833072753204,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 44.11083779878552,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 119.83360265512192,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 168.75619078522152,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 130.29001455716082,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 122.26815722136848,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 317.61498915718573,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 70.87450172388333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 172.99799574933337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 115.21671518905335,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 112.79391261841177,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 434.8488120799578,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 344.2025545732675,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 70.67187607911251,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 100.87262244302002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 464.23891776343135,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 274.571129832611,\n \"hasRDI\" : true,\n \"daily\" : 422.4171228194015,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 62.5415118546592,\n \"hasRDI\" : true,\n \"daily\" + : 312.707559273296,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 147.41068630389012,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.3896991368323,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 176.1886133914575,\n \"hasRDI\" : true,\n \"daily\" : 58.7295377971525,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 155.1297339105525,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 21.058879480905002,\n \"hasRDI\" + : true,\n \"daily\" : 84.23551792362001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 15.725792287264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 230.93090795265152,\n \"hasRDI\" : true,\n \"daily\" : 461.8618159053031,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 815.06238045,\n \"hasRDI\" : true,\n \"daily\" + : 271.68746015,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6741.319937460769,\n \"hasRDI\" : true,\n \"daily\" + : 280.88833072753204,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 441.1083779878552,\n \"hasRDI\" : true,\n \"daily\" + : 44.11083779878552,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 479.3344106204877,\n \"hasRDI\" : true,\n \"daily\" + : 119.83360265512192,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5906.466677482753,\n \"hasRDI\" : true,\n \"daily\" + : 168.75619078522152,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.452202620288947,\n \"hasRDI\" : true,\n \"daily\" + : 130.29001455716082,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.340223583205272,\n \"hasRDI\" : true,\n \"daily\" + : 122.26815722136848,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2223.3049241003,\n \"hasRDI\" : true,\n \"daily\" + : 317.61498915718573,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 637.87051551495,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.87450172388333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 103.79879744960002,\n \"hasRDI\" : true,\n + \ \"daily\" : 172.99799574933337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.7282507278358001,\n \"hasRDI\" : true,\n + \ \"daily\" : 115.21671518905335,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.917496514513,\n \"hasRDI\" + : true,\n \"daily\" : 112.79391261841177,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 86.96976241599155,\n + \ \"hasRDI\" : true,\n \"daily\" : 434.8488120799578,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.884051091465349,\n + \ \"hasRDI\" : true,\n \"daily\" : 344.2025545732675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 282.68750431645003,\n \"hasRDI\" : true,\n \"daily\" : 70.67187607911251,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 282.68750431645003,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.174524488604003,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.87262244302002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 371.39113421074507,\n + \ \"hasRDI\" : true,\n \"daily\" : 464.23891776343135,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_888e9fc4a808e9e4ccdb2ac24a6a2f46\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/551/551b906bafd4c45d50033742eaf00c02.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Teriyaki\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-888e9fc4a808e9e4ccdb2ac24a6a2f46/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 tbsp. vegetable oil\", \"4 pieces + chicken, trimmed, skin pierced with a fork\", \"½ cup Teriyaki Sauce\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 tbsp. vegetable oil\",\n + \ \"weight\" : 14.0\n }, {\n \"text\" : \"4 pieces chicken, + trimmed, skin pierced with a fork\",\n \"weight\" : 357.6\n }, + {\n \"text\" : \"½ cup Teriyaki Sauce\",\n \"weight\" : 144.0\n + \ } ],\n \"calories\" : 1020.76,\n \"totalWeight\" : 515.6,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1020.7600000000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 67.88336000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 16.3241,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.4542520000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 32.39298000000001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 13.944200000000002,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 22.4064,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.144,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 20.304,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 75.0528,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 268.20000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5769.839999999999,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 75.33600000000001,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 159.36,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 999.8640000000001,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 5.6664,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.828560000000001,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 747.432,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 146.616,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.721600000000001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.25776000000000004,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.5299200000000001,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 26.149176000000004,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.3956,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.976,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 32.976,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.1085600000000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.7152000000000002,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.1248000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 5.364000000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 51.038000000000004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 104.43593846153848,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 81.6205,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.468800000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.576,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 150.1056,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 89.4,\n \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 240.40999999999994,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 7.533600000000002,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 39.84,\n \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 28.56754285714286,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 31.48,\n \"unit\" : \"%\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 32.190400000000004,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 106.776,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 16.29066666666667,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 9.536000000000001,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 17.184,\n \"unit\" : \"%\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 31.171764705882357,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 130.74588,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 69.78,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 8.244,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 18.476000000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.17880000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 20.624000000000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 6.705000000000001,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 67.88336000000001,\n \"hasRDI\" : true,\n \"daily\" + : 104.43593846153848,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 16.3241,\n \"hasRDI\" + : true,\n \"daily\" : 81.6205,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.4542520000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.39298000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.944200000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.4064,\n \"hasRDI\" : true,\n \"daily\" : 7.468800000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.262400000000003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.144,\n \"hasRDI\" : + true,\n \"daily\" : 0.576,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 20.304,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 75.0528,\n + \ \"hasRDI\" : true,\n \"daily\" : 150.1056,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 268.20000000000005,\n \"hasRDI\" : true,\n \"daily\" : 89.4,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 5769.839999999999,\n \"hasRDI\" : true,\n \"daily\" : 240.40999999999994,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 75.33600000000001,\n \"hasRDI\" : true,\n \"daily\" : 7.533600000000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 159.36,\n \"hasRDI\" : true,\n \"daily\" : 39.84,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 999.8640000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.56754285714286,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.6664,\n \"hasRDI\" + : true,\n \"daily\" : 31.48,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.828560000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.190400000000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 747.432,\n \"hasRDI\" : true,\n \"daily\" + : 106.776,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 146.616,\n \"hasRDI\" : true,\n \"daily\" + : 16.29066666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 5.721600000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 9.536000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.25776000000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.184,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.5299200000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.171764705882357,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.149176000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 130.74588,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3956,\n \"hasRDI\" : true,\n \"daily\" + : 69.78,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate + equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.976,\n \"hasRDI\" : true,\n \"daily\" + : 8.244,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.976,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.1085600000000002,\n \"hasRDI\" : true,\n \"daily\" + : 18.476000000000003,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7152000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.17880000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.1248000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.624000000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.364000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.705000000000001,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_14ebd7d6d65f761843dba35202de4b37\",\n + \ \"label\" : \"Chicken Satay\",\n \"image\" : \"https://www.edamam.com/web-img/ba6/ba6f66d885e4d62a98055b088a5a85a3.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3645/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-satay-14ebd7d6d65f761843dba35202de4b37/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Sugar-Conscious\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"100.0ml soy + sauce (Kikkoman is good)\", \"4.0 tbsp smooth peanut butter\", \"4 skinless + chicken breasts fillets\" ],\n \"ingredients\" : [ {\n \"text\" + : \"100.0ml soy sauce (Kikkoman is good)\",\n \"weight\" : 107.78219736212455\n + \ }, {\n \"text\" : \"4.0 tbsp smooth peanut butter\",\n \"weight\" + : 64.0\n }, {\n \"text\" : \"4 skinless chicken breasts fillets\",\n + \ \"weight\" : 1088.0\n } ],\n \"calories\" : 1745.4445646019262,\n + \ \"totalWeight\" : 1259.7821973621246,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1745.4445646019262,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 61.99035852496412,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 12.812121004074351,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.12416,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 24.19340833367867,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 12.91898717906239,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 19.59206232995274,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 4.062257578896997,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 7.144728789448498,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 267.78787086527694,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 794.24,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 6420.956101101502,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 121.3281251295011,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 491.9188260479722,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4459.892558525242,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.702041861750805,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.942505117050485,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2710.758447621127,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 76.16000000000001,\n \"unit\" : \"µg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.1542881251295012,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.226480625647506,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 115.20657705407227,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 9.265437652095946,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 168.68950763069745,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 168.68950763069745,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.2848,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 10.88,\n \"unit\" : \"IU\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 11.916800000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.3680000000000003,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 87.27222823009632,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 95.36978234609865,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 64.06060502037175,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.530687443317579,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 16.249030315587987,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 535.5757417305539,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.74666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 267.5398375458959,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.13281251295011,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 122.97970651199304,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 127.42550167214976,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 37.23356589861558,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 66.28336744700324,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 387.25120680301814,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 8.462222222222223,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 76.95254167530008,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 130.96944856750034,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 576.0328852703614,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 463.27188260479727,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 42.17237690767436,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 38.080000000000005,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 2.72,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 59.58400000000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.9600000000000004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 61.99035852496412,\n \"hasRDI\" : true,\n \"daily\" + : 95.36978234609865,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 12.812121004074351,\n \"hasRDI\" + : true,\n \"daily\" : 64.06060502037175,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.12416,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.19340833367867,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.91898717906239,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 19.59206232995274,\n \"hasRDI\" : true,\n \"daily\" : 6.530687443317579,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 15.529804751055742,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.062257578896997,\n \"hasRDI\" + : true,\n \"daily\" : 16.249030315587987,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.144728789448498,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 267.78787086527694,\n \"hasRDI\" : true,\n \"daily\" : 535.5757417305539,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 794.24,\n \"hasRDI\" : true,\n \"daily\" + : 264.74666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6420.956101101502,\n \"hasRDI\" : true,\n \"daily\" + : 267.5398375458959,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 121.3281251295011,\n \"hasRDI\" : true,\n \"daily\" + : 12.13281251295011,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 491.9188260479722,\n \"hasRDI\" : true,\n \"daily\" + : 122.97970651199304,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4459.892558525242,\n \"hasRDI\" : true,\n \"daily\" + : 127.42550167214976,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.702041861750805,\n \"hasRDI\" : true,\n \"daily\" + : 37.23356589861558,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.942505117050485,\n \"hasRDI\" : true,\n \"daily\" + : 66.28336744700324,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2710.758447621127,\n \"hasRDI\" : true,\n \"daily\" + : 387.25120680301814,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 76.16000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 8.462222222222223,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.1542881251295012,\n \"hasRDI\" : true,\n \"daily\" : 76.95254167530008,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.226480625647506,\n \"hasRDI\" : true,\n \"daily\" : 130.96944856750034,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 115.20657705407227,\n \"hasRDI\" : true,\n \"daily\" : 576.0328852703614,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.265437652095946,\n \"hasRDI\" : true,\n \"daily\" : 463.27188260479727,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 168.68950763069745,\n \"hasRDI\" : true,\n \"daily\" + : 42.17237690767436,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 168.68950763069745,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2.2848,\n \"hasRDI\" : true,\n \"daily\" + : 38.080000000000005,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 10.88,\n \"hasRDI\" : true,\n \"daily\" + : 2.72,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 11.916800000000002,\n \"hasRDI\" : true,\n \"daily\" : 59.58400000000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.3680000000000003,\n \"hasRDI\" : true,\n \"daily\" : 2.9600000000000004,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_be3ba087e212f13672b553ecfa876333\",\n + \ \"label\" : \"Baked Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/01c/01cacb70890274fb7b7cebb975a93231.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/318981/baked-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/baked-chicken-be3ba087e212f13672b553ecfa876333/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"6 bone-in chicken + breast halves, or 6 chicken thighs and wings, skin-on\", \"1/2 teaspoon coarse + salt\", \"1/2 teaspoon Mrs. Dash seasoning\", \"1/4 teaspoon freshly ground + black pepper\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 bone-in + chicken breast halves, or 6 chicken thighs and wings, skin-on\",\n \"weight\" + : 522.0\n }, {\n \"text\" : \"1/2 teaspoon coarse salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"1/2 teaspoon Mrs. Dash + seasoning\",\n \"weight\" : 0.75\n }, {\n \"text\" : \"1/4 + teaspoon freshly ground black pepper\",\n \"weight\" : 0.575\n } + ],\n \"calories\" : 901.58575,\n \"totalWeight\" : 525.6156350198669,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 901.58575,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 48.36022,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 13.917879,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.5480999999999999,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 19.953694249999998,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 10.251458499999998,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.8596375,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.230225,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.01718,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 108.9686675,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 334.08,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1216.981821,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 67.98700240476805,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 133.18615635019867,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1161.3550008015893,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 4.19094159556556,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 4.208683135019868,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 910.471,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 126.42524999999999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 0.09,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.33146099999999995,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.4461675,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 51.74860724999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 2.77817325,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 22.01275,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 22.01275,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.7748,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.088,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.42528,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 6.981775,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 45.0792875,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 74.40033846153847,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 69.589395,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.28654583333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.9209,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 217.937335,\n \"unit\" : + \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 111.36,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.707575875,\n \"unit\" : \"%\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.798700240476805,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 33.29653908754967,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 33.18157145147398,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.283008864253112,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 28.05788756679912,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 130.06728571428573,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 14.04725,\n \"unit\" : \"%\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.15,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 22.097399999999997,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 26.245147058823527,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 258.74303625,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 138.9086625,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 5.5031875,\n \"unit\" : \"%\"\n },\n \"VITB12\" : + {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 29.58,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.522,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 7.126400000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 8.72721875,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 48.36022,\n \"hasRDI\" : true,\n \"daily\" : 74.40033846153847,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 13.917879,\n \"hasRDI\" : true,\n \"daily\" + : 69.589395,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.5480999999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 19.953694249999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.251458499999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.8596375,\n \"hasRDI\" : true,\n \"daily\" : 0.28654583333333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6294125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.230225,\n \"hasRDI\" : + true,\n \"daily\" : 0.9209,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.01718,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 108.9686675,\n + \ \"hasRDI\" : true,\n \"daily\" : 217.937335,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 334.08,\n \"hasRDI\" : true,\n \"daily\" : 111.36,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1216.981821,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.707575875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.98700240476805,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.798700240476805,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 133.18615635019867,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.29653908754967,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1161.3550008015893,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.18157145147398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.19094159556556,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.283008864253112,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.208683135019868,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.05788756679912,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 910.471,\n + \ \"hasRDI\" : true,\n \"daily\" : 130.06728571428573,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 126.42524999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.04725,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.09,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.15,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.33146099999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.097399999999997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.4461675,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.245147058823527,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.74860724999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 258.74303625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.77817325,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.9086625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 22.01275,\n \"hasRDI\" : true,\n \"daily\" : 5.5031875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 22.01275,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.7748,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.58,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.088,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.522,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.42528,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.126400000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.981775,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.72721875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0a3f49a3da07cd8379d4e35f7a1a72fc\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/827/8275cc33e9f0f4314617d5a356900aa7.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2009/07/16/chicken-teriyaki-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-0a3f49a3da07cd8379d4e35f7a1a72fc/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup water\", \"2 tablespoons Japanese + soy sauce\", \"2 tablespoons dark brown sugar\", \"2 tablespoons mirin\", + \"4-6 skin-on filleted (boneless) chicken thighs\", \"2 tablespoons mild flavored + honey (or maltose)\", \"2 tablespoons dark soy sauce\", \"2 tablespoons sake\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup water\",\n \"weight\" + : 118.5\n }, {\n \"text\" : \"2 tablespoons Japanese soy sauce\",\n + \ \"weight\" : 32.0\n }, {\n \"text\" : \"2 tablespoons + dark brown sugar\",\n \"weight\" : 18.125000000000004\n }, {\n + \ \"text\" : \"2 tablespoons mirin\",\n \"weight\" : 29.8\n }, + {\n \"text\" : \"4-6 skin-on filleted (boneless) chicken thighs\",\n + \ \"weight\" : 745.0\n }, {\n \"text\" : \"2 tablespoons + mild flavored honey (or maltose)\",\n \"weight\" : 42.0\n }, {\n + \ \"text\" : \"2 tablespoons dark soy sauce\",\n \"weight\" : + 32.0\n }, {\n \"text\" : \"2 tablespoons sake\",\n \"weight\" + : 29.1\n } ],\n \"calories\" : 1955.851,\n \"totalWeight\" + : 1046.5249999999999,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1955.851,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : + {\n \"label\" : \"Fat\",\n \"quantity\" : 124.1093,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.750519999999995,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6332500000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 51.75932,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 25.997470000000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 60.3495125,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.5960000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 52.331275000000005,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 52.075275000000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.72585,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 730.1,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4131.643,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 97.33375,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 188.65025000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1858.8712500000001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 6.3579875,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.288767499999999,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1281.8290000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 171.35,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.21,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.56497,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2018099999999998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 35.9324475,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.69738125,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.619,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7450000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.5645,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 15.645000000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 97.79255,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 190.93738461538462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 168.75259999999997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.116504166666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.3840000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 257.4517,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.36666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 172.15179166666667,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.733375,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.16256250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 53.11060714285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.32215277777778,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 68.59178333333332,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 183.1184285714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.038888888888888,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.35,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 37.66466666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 70.69470588235293,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 179.6622375,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 134.86906249999998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 8.082812500000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 76.98333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.18625000000000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 7.8225,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.556250000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 124.1093,\n \"hasRDI\" : true,\n + \ \"daily\" : 190.93738461538462,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.750519999999995,\n \"hasRDI\" : true,\n \"daily\" : + 168.75259999999997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.6332500000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.75932,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.997470000000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 60.3495125,\n \"hasRDI\" : true,\n \"daily\" : 20.116504166666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.7535125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5960000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 2.3840000000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 52.331275000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 52.075275000000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 128.72585,\n \"hasRDI\" : + true,\n \"daily\" : 257.4517,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 730.1,\n \"hasRDI\" + : true,\n \"daily\" : 243.36666666666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 4131.643,\n \"hasRDI\" : + true,\n \"daily\" : 172.15179166666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.33375,\n \"hasRDI\" + : true,\n \"daily\" : 9.733375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 188.65025000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.16256250000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1858.8712500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 53.11060714285714,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.3579875,\n \"hasRDI\" : true,\n \"daily\" + : 35.32215277777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.288767499999999,\n \"hasRDI\" : true,\n \"daily\" + : 68.59178333333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1281.8290000000002,\n \"hasRDI\" : true,\n \"daily\" + : 183.1184285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 171.35,\n \"hasRDI\" : true,\n \"daily\" + : 19.038888888888888,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.21,\n \"hasRDI\" : true,\n \"daily\" + : 0.35,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.56497,\n \"hasRDI\" : true,\n \"daily\" : 37.66466666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2018099999999998,\n \"hasRDI\" : true,\n \"daily\" : 70.69470588235293,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 35.9324475,\n \"hasRDI\" : true,\n \"daily\" : 179.6622375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.69738125,\n \"hasRDI\" : true,\n \"daily\" : 134.86906249999998,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.331250000000004,\n \"hasRDI\" : true,\n \"daily\" + : 8.082812500000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.331250000000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.619,\n \"hasRDI\" : true,\n \"daily\" + : 76.98333333333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7450000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.18625000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5645,\n \"hasRDI\" : true,\n \"daily\" + : 7.8225,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 15.645000000000001,\n \"hasRDI\" : true,\n \"daily\" : 19.556250000000002,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8275bb28647abcedef0baaf2dcf34f8b\",\n + \ \"label\" : \"Chicken Paprikash\",\n \"image\" : \"https://www.edamam.com/web-img/e12/e12b8c5581226d7639168f41d126f2ff.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-paprikash/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-paprikash-8275bb28647abcedef0baaf2dcf34f8b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"640 grams chicken - drumsticks and + thighs ( 3 whole chicken legs cut apart)\", \"1/2 teaspoon salt\", \"1/4 teaspoon + black pepper\", \"1 tablespoon butter – cultured unsalted (or olive oil)\", + \"240 grams onion sliced thin (1 large onion)\", \"70 grams Anaheim pepper + chopped (1 large pepper)\", \"25 grams paprika (about 1/4 cup)\", \"1 cup + chicken stock\", \"1/2 teaspoon salt\", \"1/2 cup sour cream\", \"1 tablespoon + flour – all-purpose\" ],\n \"ingredients\" : [ {\n \"text\" : + \"640 grams chicken - drumsticks and thighs ( 3 whole chicken legs cut apart)\",\n + \ \"weight\" : 640.0\n }, {\n \"text\" : \"640 grams chicken + - drumsticks and thighs ( 3 whole chicken legs cut apart)\",\n \"weight\" + : 640.0\n }, {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1/4 teaspoon black pepper\",\n \"weight\" + : 0.725\n }, {\n \"text\" : \"1 tablespoon butter – cultured unsalted + (or olive oil)\",\n \"weight\" : 13.5\n }, {\n \"text\" + : \"240 grams onion sliced thin (1 large onion)\",\n \"weight\" : 78.125\n + \ }, {\n \"text\" : \"70 grams Anaheim pepper chopped (1 large + pepper)\",\n \"weight\" : 56.25\n }, {\n \"text\" : \"25 + grams paprika (about 1/4 cup)\",\n \"weight\" : 27.2\n }, {\n + \ \"text\" : \"1 cup chicken stock\",\n \"weight\" : 240.0\n + \ }, {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1/2 cup sour cream\",\n \"weight\" + : 115.0\n }, {\n \"text\" : \"1 tablespoon flour – all-purpose\",\n + \ \"weight\" : 7.8125\n } ],\n \"calories\" : 3033.2012500000005,\n + \ \"totalWeight\" : 1824.6125,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3033.2012500000005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 208.05040250000002,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.207636375,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8448,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 85.78187337499999,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 39.88905187500001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 47.816761250000006,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 12.0590375,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 16.12346375,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 236.58131375,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1283.0,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3945.65975,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 326.04037500000004,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 324.8095,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 4014.232125,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 16.441846249999998,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 22.4816375,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n + \ \"label\" : \"Phosphorus\",\n \"quantity\" : 2388.57225,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1144.9192500000001,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 143.94729999999998,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.3102805,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 2.9885087500000003,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 67.976613,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.47877425,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 101.71375,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.71375,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 7.682,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.7400000000000002,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 13.4064275,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 71.5251125,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 151.66006250000004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 320.07754230769234,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 306.038181875,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.938920416666669,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 48.236149999999995,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 473.16262750000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 427.6666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 164.40248958333333,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 32.604037500000004,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 81.202375,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 114.69234642857144,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 91.34359027777776,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 149.87758333333335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 341.22460714285717,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 127.21325000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 239.91216666666662,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 87.35203333333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 175.7946323529412,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 339.883065,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 273.9387125,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 25.4284375,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 128.03333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.43500000000000005,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 67.0321375,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 89.406390625,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 208.05040250000002,\n \"hasRDI\" + : true,\n \"daily\" : 320.07754230769234,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 61.207636375,\n \"hasRDI\" : true,\n \"daily\" : 306.038181875,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.8448,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.78187337499999,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 39.88905187500001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 47.816761250000006,\n \"hasRDI\" : true,\n \"daily\" + : 15.938920416666669,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 35.757723750000004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 12.0590375,\n \"hasRDI\" : true,\n \"daily\" : 48.236149999999995,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 16.12346375,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 236.58131375,\n \"hasRDI\" + : true,\n \"daily\" : 473.16262750000004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1283.0,\n + \ \"hasRDI\" : true,\n \"daily\" : 427.6666666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3945.65975,\n + \ \"hasRDI\" : true,\n \"daily\" : 164.40248958333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 326.04037500000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.604037500000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 324.8095,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.202375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 4014.232125,\n + \ \"hasRDI\" : true,\n \"daily\" : 114.69234642857144,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.441846249999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 91.34359027777776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 22.4816375,\n \"hasRDI\" + : true,\n \"daily\" : 149.87758333333335,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2388.57225,\n \"hasRDI\" + : true,\n \"daily\" : 341.22460714285717,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1144.9192500000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 127.21325000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 143.94729999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 239.91216666666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3102805,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.35203333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9885087500000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 175.7946323529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.976613,\n + \ \"hasRDI\" : true,\n \"daily\" : 339.883065,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.47877425,\n + \ \"hasRDI\" : true,\n \"daily\" : 273.9387125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.71375,\n \"hasRDI\" : true,\n \"daily\" : 25.4284375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.71375,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.682,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.03333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.7400000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.43500000000000005,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.4064275,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.0321375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 71.5251125,\n + \ \"hasRDI\" : true,\n \"daily\" : 89.406390625,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7db0abb2a417276a5390ff8f50af31fd\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/b66/b66e7eb3b7a552912a8465b63429089d.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/chicken-teriyaki-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-7db0abb2a417276a5390ff8f50af31fd/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup water\", \"2 tbsps japanese + soy sauce\", \"2 tbsps dark brown sugar\", \"2 tbsps mirin\", \"4-6 skin-on + filleted (boneless) chicken thighs\", \"2 tbsps mild flavored honey (or maltose)\", + \"2 tbsps dark soy sauce\", \"2 tbsps sake\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1/2 cup water\",\n \"weight\" : 118.5\n }, + {\n \"text\" : \"2 tbsps japanese soy sauce\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tbsps dark brown sugar\",\n \"weight\" + : 18.125000000000004\n }, {\n \"text\" : \"2 tbsps mirin\",\n + \ \"weight\" : 29.8\n }, {\n \"text\" : \"4-6 skin-on filleted + (boneless) chicken thighs\",\n \"weight\" : 745.0\n }, {\n \"text\" + : \"2 tbsps mild flavored honey (or maltose)\",\n \"weight\" : 42.0\n + \ }, {\n \"text\" : \"2 tbsps dark soy sauce\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tbsps sake\",\n \"weight\" + : 29.1\n } ],\n \"calories\" : 1955.851,\n \"totalWeight\" + : 1046.5249999999999,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1955.851,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : + {\n \"label\" : \"Fat\",\n \"quantity\" : 124.1093,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.750519999999995,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6332500000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 51.75932,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 25.997470000000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 60.3495125,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.5960000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 52.331275000000005,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 52.075275000000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.72585,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 730.1,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4131.643,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 97.33375,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 188.65025000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1858.8712500000001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 6.3579875,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.288767499999999,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1281.8290000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 171.35,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.21,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.56497,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2018099999999998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 35.9324475,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.69738125,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.619,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7450000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.5645,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 15.645000000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 97.79255,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 190.93738461538462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 168.75259999999997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.116504166666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.3840000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 257.4517,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.36666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 172.15179166666667,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.733375,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.16256250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 53.11060714285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.32215277777778,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 68.59178333333332,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 183.1184285714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.038888888888888,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.35,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 37.66466666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 70.69470588235293,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 179.6622375,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 134.86906249999998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 8.082812500000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 76.98333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.18625000000000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 7.8225,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.556250000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 124.1093,\n \"hasRDI\" : true,\n + \ \"daily\" : 190.93738461538462,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.750519999999995,\n \"hasRDI\" : true,\n \"daily\" : + 168.75259999999997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.6332500000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.75932,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.997470000000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 60.3495125,\n \"hasRDI\" : true,\n \"daily\" : 20.116504166666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.7535125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5960000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 2.3840000000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 52.331275000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 52.075275000000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 128.72585,\n \"hasRDI\" : + true,\n \"daily\" : 257.4517,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 730.1,\n \"hasRDI\" + : true,\n \"daily\" : 243.36666666666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 4131.643,\n \"hasRDI\" : + true,\n \"daily\" : 172.15179166666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.33375,\n \"hasRDI\" + : true,\n \"daily\" : 9.733375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 188.65025000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.16256250000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1858.8712500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 53.11060714285714,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.3579875,\n \"hasRDI\" : true,\n \"daily\" + : 35.32215277777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.288767499999999,\n \"hasRDI\" : true,\n \"daily\" + : 68.59178333333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1281.8290000000002,\n \"hasRDI\" : true,\n \"daily\" + : 183.1184285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 171.35,\n \"hasRDI\" : true,\n \"daily\" + : 19.038888888888888,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.21,\n \"hasRDI\" : true,\n \"daily\" + : 0.35,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.56497,\n \"hasRDI\" : true,\n \"daily\" : 37.66466666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2018099999999998,\n \"hasRDI\" : true,\n \"daily\" : 70.69470588235293,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 35.9324475,\n \"hasRDI\" : true,\n \"daily\" : 179.6622375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.69738125,\n \"hasRDI\" : true,\n \"daily\" : 134.86906249999998,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.331250000000004,\n \"hasRDI\" : true,\n \"daily\" + : 8.082812500000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.331250000000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.619,\n \"hasRDI\" : true,\n \"daily\" + : 76.98333333333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7450000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.18625000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5645,\n \"hasRDI\" : true,\n \"daily\" + : 7.8225,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 15.645000000000001,\n \"hasRDI\" : true,\n \"daily\" : 19.556250000000002,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_10abfbc20e802c832453500bcc50e1bd\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/ce0/ce0601eba5b5a77a2dcb359a0051c68c.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-piccata-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-10abfbc20e802c832453500bcc50e1bd/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chicken breasts\", \"1/2 cup + flour\", \"3 tablespoons vegetable oil\", \"2 scallions white part only, minced\", + \"3 tablespoons lemon juice\", \"1 cup chicken stock\", \"1 teaspoon honey\", + \"2 tablespoons unsalted butter cut into small pieces\", \"2 tablespoons parsley + minced\", \"2 tablespoons capers\", \"1 teaspoon lemon zest finely zested\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 large chicken breasts\",\n + \ \"weight\" : 435.0\n }, {\n \"text\" : \"1/2 cup flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"3 tablespoons + vegetable oil\",\n \"weight\" : 42.0\n }, {\n \"text\" + : \"2 scallions white part only, minced\",\n \"weight\" : 30.0\n }, + {\n \"text\" : \"3 tablespoons lemon juice\",\n \"weight\" : + 42.0\n }, {\n \"text\" : \"1 cup chicken stock\",\n \"weight\" + : 240.0\n }, {\n \"text\" : \"1 teaspoon honey\",\n \"weight\" + : 7.062500000000001\n }, {\n \"text\" : \"2 tablespoons unsalted + butter cut into small pieces\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 tablespoons parsley minced\",\n \"weight\" : 7.6\n }, {\n + \ \"text\" : \"2 tablespoons capers\",\n \"weight\" : 17.2\n + \ }, {\n \"text\" : \"1 teaspoon lemon zest finely zested\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 1684.95,\n \"totalWeight\" + : 913.7625,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1684.95,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 109.137,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 29.838694999999998,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.709842,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 54.318454999999986,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 17.435209,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 68.74445,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 3.6208250000000004,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 11.753435,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.799725000000001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 104.82197750000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.66,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1035.3584999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 115.83275,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 151.10525000000004,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1464.6075000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.7416325,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 4.5739575,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 917.1265000000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 349.316,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.836912500000004,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.47188199999999997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6743457500000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 48.118775625,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.533803,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.5272800000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1660000000000004,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 11.54024,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 193.6267,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.2475,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 167.90307692307692,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 149.19347499999998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.914816666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.483300000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 209.64395500000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.55333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 43.13993749999999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.583275,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 37.77631250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.84592857142858,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 31.89795833333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 30.493049999999997,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 131.01807142857146,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.812888888888885,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.728187500000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 31.458799999999997,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 39.667397058823546,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 240.593878125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 126.69014999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.502812500000005,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 25.45466666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5415000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 57.70120000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 242.03337499999998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 109.137,\n \"hasRDI\" : true,\n \"daily\" : 167.90307692307692,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 29.838694999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 149.19347499999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 1.709842,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 54.318454999999986,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.435209,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.74445,\n \"hasRDI\" : true,\n \"daily\" : 22.914816666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.123625,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.6208250000000004,\n \"hasRDI\" + : true,\n \"daily\" : 14.483300000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 11.753435,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.799725000000001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 104.82197750000002,\n \"hasRDI\" + : true,\n \"daily\" : 209.64395500000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 346.66,\n + \ \"hasRDI\" : true,\n \"daily\" : 115.55333333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1035.3584999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.13993749999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 115.83275,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.583275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.10525000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.77631250000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1464.6075000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.84592857142858,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.7416325,\n \"hasRDI\" + : true,\n \"daily\" : 31.89795833333333,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.5739575,\n \"hasRDI\" : true,\n \"daily\" + : 30.493049999999997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 917.1265000000002,\n \"hasRDI\" : true,\n \"daily\" + : 131.01807142857146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 349.316,\n \"hasRDI\" : true,\n \"daily\" + : 38.812888888888885,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 35.836912500000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.728187500000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.47188199999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.458799999999997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.6743457500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.667397058823546,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.118775625,\n + \ \"hasRDI\" : true,\n \"daily\" : 240.593878125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.533803,\n + \ \"hasRDI\" : true,\n \"daily\" : 126.69014999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : true,\n \"daily\" : 22.502812500000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5272800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.45466666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1660000000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5415000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.54024,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.70120000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.6267,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.03337499999998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e46651453f86086ff2f4e3f842641066\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/eb5/eb5985a8a19a9fc72b0cf627282199ed.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-piccata-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-e46651453f86086ff2f4e3f842641066/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chicken breasts\", \"1/2 cup + flour\", \"3 tbsps vegetable oil\", \"2 scallions white part only, minced\", + \"3 tbsps lemon juice\", \"1 cup chicken stock\", \"1 tsp honey\", \"2 tbsps + unsalted butter cut into small pieces\", \"2 tbsps parsley minced\", \"2 tbsps + capers\", \"1 tsp lemon zest finely zested\" ],\n \"ingredients\" : [ + {\n \"text\" : \"2 large chicken breasts\",\n \"weight\" : 435.0\n + \ }, {\n \"text\" : \"1/2 cup flour\",\n \"weight\" : 62.5\n + \ }, {\n \"text\" : \"3 tbsps vegetable oil\",\n \"weight\" + : 42.0\n }, {\n \"text\" : \"2 scallions white part only, minced\",\n + \ \"weight\" : 30.0\n }, {\n \"text\" : \"3 tbsps lemon + juice\",\n \"weight\" : 42.0\n }, {\n \"text\" : \"1 cup + chicken stock\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"1 tsp honey\",\n \"weight\" : 7.062500000000001\n }, {\n \"text\" + : \"2 tbsps unsalted butter cut into small pieces\",\n \"weight\" : + 28.4\n }, {\n \"text\" : \"2 tbsps parsley minced\",\n \"weight\" + : 7.6\n }, {\n \"text\" : \"2 tbsps capers\",\n \"weight\" + : 17.2\n }, {\n \"text\" : \"1 tsp lemon zest finely zested\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 1684.95,\n \"totalWeight\" + : 913.7625,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1684.95,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 109.137,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 29.838694999999998,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.709842,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 54.318454999999986,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 17.435209,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 68.74445,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 3.6208250000000004,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 11.753435,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.799725000000001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 104.82197750000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.66,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1035.3584999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 115.83275,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 151.10525000000004,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1464.6075000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.7416325,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 4.5739575,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 917.1265000000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 349.316,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.836912500000004,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.47188199999999997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6743457500000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 48.118775625,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.533803,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.5272800000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1660000000000004,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 11.54024,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 193.6267,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.2475,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 167.90307692307692,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 149.19347499999998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.914816666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.483300000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 209.64395500000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.55333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 43.13993749999999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.583275,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 37.77631250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.84592857142858,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 31.89795833333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 30.493049999999997,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 131.01807142857146,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.812888888888885,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.728187500000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 31.458799999999997,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 39.667397058823546,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 240.593878125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 126.69014999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.502812500000005,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 25.45466666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5415000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 57.70120000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 242.03337499999998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 109.137,\n \"hasRDI\" : true,\n \"daily\" : 167.90307692307692,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 29.838694999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 149.19347499999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 1.709842,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 54.318454999999986,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.435209,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.74445,\n \"hasRDI\" : true,\n \"daily\" : 22.914816666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.123625,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.6208250000000004,\n \"hasRDI\" + : true,\n \"daily\" : 14.483300000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 11.753435,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.799725000000001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 104.82197750000002,\n \"hasRDI\" + : true,\n \"daily\" : 209.64395500000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 346.66,\n + \ \"hasRDI\" : true,\n \"daily\" : 115.55333333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1035.3584999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.13993749999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 115.83275,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.583275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.10525000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.77631250000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1464.6075000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.84592857142858,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.7416325,\n \"hasRDI\" + : true,\n \"daily\" : 31.89795833333333,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.5739575,\n \"hasRDI\" : true,\n \"daily\" + : 30.493049999999997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 917.1265000000002,\n \"hasRDI\" : true,\n \"daily\" + : 131.01807142857146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 349.316,\n \"hasRDI\" : true,\n \"daily\" + : 38.812888888888885,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 35.836912500000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.728187500000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.47188199999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.458799999999997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.6743457500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.667397058823546,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.118775625,\n + \ \"hasRDI\" : true,\n \"daily\" : 240.593878125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.533803,\n + \ \"hasRDI\" : true,\n \"daily\" : 126.69014999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : true,\n \"daily\" : 22.502812500000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5272800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.45466666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1660000000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5415000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.54024,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.70120000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.6267,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.03337499999998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3da1169eb633a5e4607890ebf7dee89f\",\n + \ \"label\" : \"Grilled Butterflied Chicken Recipe\",\n \"image\" + : \"https://www.edamam.com/web-img/7a2/7a2f41a7891e8a8f8a087a96930c6463.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2012/08/grilled-butterflied-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/grilled-butterflied-chicken-recipe-3da1169eb633a5e4607890ebf7dee89f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + 3 1/2 to 4 pounds\", \"Kosher salt and freshly ground black pepper\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 whole chicken, 3 1/2 to + 4 pounds\",\n \"weight\" : 1700.9713875\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper\",\n \"weight\" : 10.205828325\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 5.1029141625\n } ],\n \"calories\" : 2499.628483072875,\n + \ \"totalWeight\" : 1714.2190942311247,\n \"totalTime\" : 60.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2499.628483072875,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 174.35943285279748,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 49.92310198999199,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.121960727195,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 72.21332845006087,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.41106263839175,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 3.2633136069187505,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.2910372831125,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.03265865064,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 215.66905387248374,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 867.495407625,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3967.4416670301102,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 151.79331974134493,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 240.13953984356124,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2254.557739840115,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 10.932315672155212,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.221122590952376,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1708.35360332175,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 475.60860965887497,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.506568696,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.6995074733954999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.3971778976925,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 78.72280987231237,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.063161382462875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 70.267128017625,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 70.267128017625,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.58564768485,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.313321087,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.52305193779,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 25.703378636512497,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 124.98142415364374,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.2452813119961,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 249.61550994995997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.08777120230625,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.164149132450001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 431.3381077449675,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 289.165135875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 165.31006945958794,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 15.179331974134493,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 60.03488496089031,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 64.4159354240033,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 60.73508706752895,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 101.47415060634918,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 244.05051476024997,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 52.845401073208336,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.844281159999998,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.63383155969999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.18693515838235,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 393.6140493615618,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 203.15806912314375,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 17.56678200440625,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 59.7607947475,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.57833027175,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 17.615259688949997,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.12922329564062,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 174.35943285279748,\n \"hasRDI\" : true,\n \"daily\" + : 268.2452813119961,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 49.92310198999199,\n \"hasRDI\" + : true,\n \"daily\" : 249.61550994995997,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.121960727195,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.21332845006087,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.41106263839175,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 3.2633136069187505,\n \"hasRDI\" : true,\n \"daily\" : 1.08777120230625,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9722763238062504,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.2910372831125,\n \"hasRDI\" + : true,\n \"daily\" : 5.164149132450001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.03265865064,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 215.66905387248374,\n \"hasRDI\" : true,\n \"daily\" : 431.3381077449675,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 867.495407625,\n \"hasRDI\" : true,\n \"daily\" + : 289.165135875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3967.4416670301102,\n \"hasRDI\" : true,\n \"daily\" + : 165.31006945958794,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 151.79331974134493,\n \"hasRDI\" : true,\n \"daily\" + : 15.179331974134493,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 240.13953984356124,\n \"hasRDI\" : true,\n \"daily\" + : 60.03488496089031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2254.557739840115,\n \"hasRDI\" : true,\n \"daily\" + : 64.4159354240033,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.932315672155212,\n \"hasRDI\" : true,\n \"daily\" + : 60.73508706752895,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.221122590952376,\n \"hasRDI\" : true,\n \"daily\" + : 101.47415060634918,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1708.35360332175,\n \"hasRDI\" : true,\n \"daily\" + : 244.05051476024997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 475.60860965887497,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.845401073208336,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.506568696,\n \"hasRDI\" : true,\n \"daily\" + : 30.844281159999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6995074733954999,\n \"hasRDI\" : true,\n + \ \"daily\" : 46.63383155969999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3971778976925,\n \"hasRDI\" + : true,\n \"daily\" : 82.18693515838235,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 78.72280987231237,\n + \ \"hasRDI\" : true,\n \"daily\" : 393.6140493615618,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.063161382462875,\n + \ \"hasRDI\" : true,\n \"daily\" : 203.15806912314375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.267128017625,\n \"hasRDI\" : true,\n \"daily\" : 17.56678200440625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.267128017625,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.58564768485,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7607947475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.313321087,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.57833027175,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.52305193779,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.615259688949997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.703378636512497,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.12922329564062,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e29feeb250c3cc0f6eb487b7cae5d8b1\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/93e/93e5e22c8792bfbc9fa3654207347c9c.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/5354/recipes-chicken-piccata.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-e29feeb250c3cc0f6eb487b7cae5d8b1/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 boneless, + skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)\", \"Kosher + salt and freshly ground black pepper\", \"1/2 cup all-purpose flour\", \"2 + tablespoons olive oil\", \"4 tablespoons unsalted butter\", \"2 tablespoons + fresh lemon juice\", \"1 tablespoon capers, drained\", \"2 tablespoons chopped + fresh flat-leaf parsley\" ],\n \"ingredients\" : [ {\n \"text\" + : \"4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds + total)\",\n \"weight\" : 348.0\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 3.231\n }, + {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n \"weight\" + : 1.6155\n }, {\n \"text\" : \"1/2 cup all-purpose flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"2 tablespoons + olive oil\",\n \"weight\" : 27.0\n }, {\n \"text\" : \"4 + tablespoons unsalted butter\",\n \"weight\" : 56.8\n }, {\n \"text\" + : \"2 tablespoons fresh lemon juice\",\n \"weight\" : 28.0\n }, + {\n \"text\" : \"1 tablespoon capers, drained\",\n \"weight\" + : 8.6\n }, {\n \"text\" : \"2 tablespoons chopped fresh flat-leaf + parsley\",\n \"weight\" : 7.6\n } ],\n \"calories\" : 1305.9649050000003,\n + \ \"totalWeight\" : 542.3978744593117,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1305.9649050000003,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 83.0544453,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 35.025056760000005,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.8862639999999997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 34.132949544999995,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 6.36084969,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 51.59456225000001,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.7062215,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.0186292,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 85.93358045,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 376.15999999999997,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1256.0277929400006,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 63.98943487023479,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 123.4293287445931,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1339.133584956745,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 5.151776885715728,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 2.9993668244593112,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 832.43249,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 445.9061849999999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 21.3138,\n \"unit\" : + \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.83713374,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.9705318999999999,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.321661165,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 2.877883105,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 234.303635,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 70.553635,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 96.25,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.82736,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.8519999999999999,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 7.4762912,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 150.5136735,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 65.29824525000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 127.7760696923077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 175.12528380000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 17.19818741666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.824886,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 171.8671609,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 125.38666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 52.334491372500025,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.398943487023479,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 30.857332186148277,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 38.26095957019272,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 28.620982698420715,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.995778829728742,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 118.91892714285714,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.545131666666656,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.523,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.808916,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 57.090111764705874,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 186.608305825,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 143.89415525,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 58.57590875000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 13.789333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.21299999999999997,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 37.381456,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 188.142091875,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 83.0544453,\n \"hasRDI\" : true,\n + \ \"daily\" : 127.7760696923077,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 35.025056760000005,\n \"hasRDI\" : true,\n \"daily\" : + 175.12528380000003,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.8862639999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 34.132949544999995,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.36084969,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 51.59456225000001,\n \"hasRDI\" : true,\n \"daily\" : 17.19818741666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 48.88834075000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 2.7062215,\n \"hasRDI\" + : true,\n \"daily\" : 10.824886,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.0186292,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 85.93358045,\n + \ \"hasRDI\" : true,\n \"daily\" : 171.8671609,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 376.15999999999997,\n \"hasRDI\" : true,\n \"daily\" : 125.38666666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1256.0277929400006,\n \"hasRDI\" : true,\n \"daily\" : 52.334491372500025,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.98943487023479,\n \"hasRDI\" : true,\n \"daily\" : 6.398943487023479,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 123.4293287445931,\n \"hasRDI\" : true,\n \"daily\" : 30.857332186148277,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1339.133584956745,\n \"hasRDI\" : true,\n \"daily\" : 38.26095957019272,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.151776885715728,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.620982698420715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.9993668244593112,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.995778829728742,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 832.43249,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.91892714285714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 445.9061849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.545131666666656,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.3138,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.523,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.83713374,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.808916,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9705318999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.090111764705874,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.321661165,\n + \ \"hasRDI\" : true,\n \"daily\" : 186.608305825,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.877883105,\n + \ \"hasRDI\" : true,\n \"daily\" : 143.89415525,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 234.303635,\n \"hasRDI\" : true,\n \"daily\" : 58.57590875000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.553635,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 96.25,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.82736,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.789333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8519999999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.21299999999999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.4762912,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.381456,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 150.5136735,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.142091875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_d6cf07aafab2c259d298d3f83768af36\",\n + \ \"label\" : \"Chicken Gravy\",\n \"image\" : \"https://www.edamam.com/web-img/fd1/fd1afed1849c44f5185720394e363b4e.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/332664/chicken-gravy\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-gravy-d6cf07aafab2c259d298d3f83768af36/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"4 cups chicken bones and wings\", \"2 tablespoons unsalted butter, softened\", + \"2 tablespoons all-purpose flour\", \"4 cups homemade bruce and eric bromberg's + chicken stock, or store-bought low-sodium chicken stock\", \"1 tablespoon + fresh thyme leaves\", \"Coarse salt and freshly ground black pepper\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"4 cups chicken bones and + wings\",\n \"weight\" : 568.0\n }, {\n \"text\" : \"2 tablespoons + unsalted butter, softened\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 tablespoons all-purpose flour\",\n \"weight\" : 15.6\n }, + {\n \"text\" : \"4 cups homemade bruce and eric bromberg's chicken + stock, or store-bought low-sodium chicken stock\",\n \"weight\" : 960.0\n + \ }, {\n \"text\" : \"1 tablespoon fresh thyme leaves\",\n \"weight\" + : 7.500000000000001\n }, {\n \"text\" : \"Coarse salt and freshly + ground black pepper\",\n \"weight\" : 9.477\n }, {\n \"text\" + : \"Coarse salt and freshly ground black pepper\",\n \"weight\" : 4.7385\n + \ } ],\n \"calories\" : 1092.360635,\n \"totalWeight\" : 1590.8628259378193,\n + \ \"totalTime\" : 270.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1092.360635,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 68.9885951,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.47207692,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.9309519999999999,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 8.655028515,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 2.22543023,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 28.305420750000003,\n \"unit\" + : \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 2.6700405000000007,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 1.3374864000000002,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 84.44221015,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 242.82,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3684.1149469800007,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 100.51239322507664,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 33.7690782593782,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 958.2876110750256,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.920238625594804,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 1.2935224759378194,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 327.10083,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 213.38539499999996,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 12.007500000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.13259758000000002,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.41857429999999995,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 14.275913055000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 0.14360503500000002,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 50.428545,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 9.556545,\n \"unit\" : \"µg\"\n },\n + \ \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n \"quantity\" + : 24.024,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.00828,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.42599999999999993,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.7440403999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 9.7917245,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 54.61803175,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 106.13630015384615,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 167.3603846,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 9.435140250000002,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 10.680162000000003,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 168.8844203,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 80.94,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 153.50478945750004,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 10.051239322507662,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 8.44226956484455,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 27.379646030715016,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 66.22354791997114,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 8.623483172918798,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 46.72869,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 23.70948833333333,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 20.012500000000003,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 8.839838666666667,\n \"unit\" : + \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 24.622017647058822,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 71.379565275,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 7.180251750000001,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 12.607136250000002,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 16.804666666666666,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.10649999999999998,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 3.7202019999999996,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 12.239655625000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 68.9885951,\n \"hasRDI\" : true,\n \"daily\" : 106.13630015384615,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 33.47207692,\n \"hasRDI\" : true,\n \"daily\" + : 167.3603846,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9309519999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.655028515,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.22543023,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 28.305420750000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.435140250000002,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.635380250000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.6700405000000007,\n \"hasRDI\" + : true,\n \"daily\" : 10.680162000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.3374864000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 84.44221015,\n \"hasRDI\" : true,\n \"daily\" : 168.8844203,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 242.82,\n \"hasRDI\" : true,\n \"daily\" + : 80.94,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3684.1149469800007,\n \"hasRDI\" : true,\n \"daily\" + : 153.50478945750004,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.51239322507664,\n \"hasRDI\" : true,\n \"daily\" + : 10.051239322507662,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 33.7690782593782,\n \"hasRDI\" : true,\n \"daily\" + : 8.44226956484455,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 958.2876110750256,\n \"hasRDI\" : true,\n \"daily\" + : 27.379646030715016,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.920238625594804,\n \"hasRDI\" : true,\n \"daily\" + : 66.22354791997114,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.2935224759378194,\n \"hasRDI\" : true,\n \"daily\" + : 8.623483172918798,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 327.10083,\n \"hasRDI\" : true,\n \"daily\" + : 46.72869,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 213.38539499999996,\n \"hasRDI\" : true,\n \"daily\" + : 23.70948833333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 12.007500000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.012500000000003,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.13259758000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 8.839838666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.41857429999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.622017647058822,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.275913055000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.379565275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.14360503500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.180251750000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 50.428545,\n \"hasRDI\" : true,\n \"daily\" : 12.607136250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.556545,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.024,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.00828,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.804666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.42599999999999993,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.10649999999999998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7440403999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.7202019999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.7917245,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.239655625000001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_80d017d0e6fa3024f60a2ace10869a8b\",\n + \ \"label\" : \"Chicken Meatballs\",\n \"image\" : \"https://www.edamam.com/web-img/f63/f634a87784722694d9fa17c50a3a3c4f.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/84147/recipes-chicken-meatballs.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-meatballs-80d017d0e6fa3024f60a2ace10869a8b/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 tablespoons olive oil\", \"2 pounds + ground chicken, preferably thigh meat\", \"2 large eggs\", \"1/2 cup fresh + bread crumbs\", \"1/2 cup chopped fresh parsley\", \"1/4 cup dry white wine\", + \"1 tablespoon salt\", \"1 teaspoon ground fennel, preferably freshly ground + from fennel seeds\", \"1 teaspoon freshly ground pepper\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 tablespoons olive oil\",\n \"weight\" + : 27.0\n }, {\n \"text\" : \"2 pounds ground chicken, preferably + thigh meat\",\n \"weight\" : 907.18474\n }, {\n \"text\" + : \"2 large eggs\",\n \"weight\" : 100.0\n }, {\n \"text\" + : \"1/2 cup fresh bread crumbs\",\n \"weight\" : 54.0\n }, {\n + \ \"text\" : \"1/2 cup chopped fresh parsley\",\n \"weight\" + : 30.0\n }, {\n \"text\" : \"1/4 cup dry white wine\",\n \"weight\" + : 36.75\n }, {\n \"text\" : \"1 tablespoon salt\",\n \"weight\" + : 18.0\n }, {\n \"text\" : \"1 teaspoon ground fennel, preferably + freshly ground from fennel seeds\",\n \"weight\" : 2.0\n }, {\n + \ \"text\" : \"1 teaspoon freshly ground pepper\",\n \"weight\" + : 2.9\n } ],\n \"calories\" : 1829.4341620000002,\n \"totalWeight\" + : 1163.5028834712195,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1829.4341620000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 83.63652599399998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 25.6281806312,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.30596185,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 46.988357974,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 8.776824694,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" : + {\n \"label\" : \"Carbs\",\n \"quantity\" : 46.43267168800001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 4.9497,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.34436,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 217.61781273600002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 943.5263862,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2697.1724911752012,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 355.3788706330926,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 257.0994768347122,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3892.9160316776984,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 26.093280939455024,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 51.62897257747122,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2294.0278857999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 305.3666948,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 40.32,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 1.326857292,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 2.2640265580000003,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 48.57921524380001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.451363323200001,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 209.2360422,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 134.1760422,\n \"unit\" : \"µg\"\n + \ },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 44.28,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 21.672093598000004,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.90718474,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 6.855792532,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 530.6200711,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 91.47170810000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 128.67157845230767,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 128.14090315599998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.477557229333337,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.7988,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 435.23562547200004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 314.5087954,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 112.38218713230005,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 35.537887063309256,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 64.27486920867806,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 111.22617233364853,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 144.96267188586125,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 344.19315051647476,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 327.71826939999994,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 33.92963275555556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 67.2,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 88.4571528,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 133.17803282352943,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 242.89607621900004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 272.56816616000003,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 52.30901055,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 361.2015599666667,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.726796185,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 34.27896266,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 663.2750888749999,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 83.63652599399998,\n \"hasRDI\" : true,\n \"daily\" + : 128.67157845230767,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 25.6281806312,\n \"hasRDI\" + : true,\n \"daily\" : 128.14090315599998,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 2.30596185,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.988357974,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.776824694,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 46.43267168800001,\n \"hasRDI\" : true,\n \"daily\" : 15.477557229333337,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 41.48297168800001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.9497,\n \"hasRDI\" : + true,\n \"daily\" : 19.7988,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 4.34436,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 217.61781273600002,\n + \ \"hasRDI\" : true,\n \"daily\" : 435.23562547200004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 943.5263862,\n \"hasRDI\" : true,\n \"daily\" : 314.5087954,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2697.1724911752012,\n \"hasRDI\" : true,\n \"daily\" : 112.38218713230005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 355.3788706330926,\n \"hasRDI\" : true,\n \"daily\" : 35.537887063309256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.0994768347122,\n \"hasRDI\" : true,\n \"daily\" : 64.27486920867806,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3892.9160316776984,\n \"hasRDI\" : true,\n \"daily\" : 111.22617233364853,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.093280939455024,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.96267188586125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.62897257747122,\n + \ \"hasRDI\" : true,\n \"daily\" : 344.19315051647476,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2294.0278857999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 327.71826939999994,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 305.3666948,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.92963275555556,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.32,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.2,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.326857292,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.4571528,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2640265580000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 133.17803282352943,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.57921524380001,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.89607621900004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.451363323200001,\n + \ \"hasRDI\" : true,\n \"daily\" : 272.56816616000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 209.2360422,\n \"hasRDI\" : true,\n \"daily\" : 52.30901055,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 134.1760422,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 44.28,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.672093598000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 361.2015599666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.90718474,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.726796185,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.855792532,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.27896266,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 530.6200711,\n + \ \"hasRDI\" : true,\n \"daily\" : 663.2750888749999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3617247b4850a38df81556e1f506992e\",\n + \ \"label\" : \"Chicken Tsukune (Japanese Chicken Sausage)\",\n \"image\" + : \"https://www.edamam.com/web-img/c30/c303babe2c5d94693167b3647133cb04.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/tsukune\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-tsukune-japanese-chicken-sausage-3617247b4850a38df81556e1f506992e/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 small dried + shiitake mushroom\", \"1 tsp grated ginger\", \"1 scallion minced\", \"4 skin + on chicken thighs (about 1.5 lbs)\", \"1 tbs mirin\", \"2 tsp sugar\", \"1 + tsp soy sauce\", \"1 tsp kosher salt (less if you use table salt)\", \"Smoked + sea salt and lime wedges for serving\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 small dried shiitake mushroom\",\n \"weight\" : 2.7\n }, + {\n \"text\" : \"1 tsp grated ginger\",\n \"weight\" : 2.0\n + \ }, {\n \"text\" : \"1 scallion minced\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"4 skin on chicken thighs (about 1.5 + lbs)\",\n \"weight\" : 680.388555\n }, {\n \"text\" : \"1 + tbs mirin\",\n \"weight\" : 14.9\n }, {\n \"text\" : \"2 + tsp sugar\",\n \"weight\" : 8.4\n }, {\n \"text\" : \"1 + tsp soy sauce\",\n \"weight\" : 5.3\n }, {\n \"text\" : + \"1 tsp kosher salt (less if you use table salt)\",\n \"weight\" : + 4.854166666666667\n } ],\n \"calories\" : 1122.2360945849998,\n + \ \"totalWeight\" : 731.3054298392497,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1122.236094585,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 79.20921728984999,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 21.565348759740004,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.404831190225,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 33.0736290019,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 16.544545841295,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 14.086679971250001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.7829,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 8.847570000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 8.3832,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.7556125002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 466.74654873000003,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1694.5506608814,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 47.96208915641993,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 97.99512667839251,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1089.87020652714,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 3.623675208769524,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.46857552648925,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 771.607021945,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 117.042557355,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.0145,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.366277551605,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.747905383325,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 22.618417468125003,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.698912800095,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 29.251159655000002,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 29.251159655000002,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.9528863287,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.5815719885,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.0878711758500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 41.0537117585,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 56.111804729250004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 121.8603342920769,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 107.82674379870002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.695559990416667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.1316,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.5112250004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 155.58218291,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 70.606277536725,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 4.7962089156419925,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 24.49878166959813,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 31.139148757918285,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 20.131528937608465,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 43.123836843261664,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 110.22957456357143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.004728595000001,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 5.024166666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 24.41850344033333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 43.994434313235296,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 113.09208734062501,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 84.94564000475,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 7.3127899137500005,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 49.214772145000005,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.145392997125,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 5.439355879250001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 51.317139698125004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 79.20921728984999,\n \"hasRDI\" : true,\n \"daily\" + : 121.8603342920769,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 21.565348759740004,\n \"hasRDI\" + : true,\n \"daily\" : 107.82674379870002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.404831190225,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.0736290019,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.544545841295,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 14.086679971250001,\n \"hasRDI\" : true,\n \"daily\" : 4.695559990416667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 13.303779971250002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.7829,\n \"hasRDI\" : + true,\n \"daily\" : 3.1316,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 8.847570000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.3832,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 79.7556125002,\n + \ \"hasRDI\" : true,\n \"daily\" : 159.5112250004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 466.74654873000003,\n \"hasRDI\" : true,\n \"daily\" : 155.58218291,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1694.5506608814,\n \"hasRDI\" : true,\n \"daily\" : 70.606277536725,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 47.96208915641993,\n \"hasRDI\" : true,\n \"daily\" : 4.7962089156419925,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 97.99512667839251,\n \"hasRDI\" : true,\n \"daily\" : 24.49878166959813,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1089.87020652714,\n \"hasRDI\" : true,\n \"daily\" : 31.139148757918285,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.623675208769524,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.131528937608465,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.46857552648925,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.123836843261664,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 771.607021945,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.22957456357143,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 117.042557355,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.004728595000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0145,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.024166666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.366277551605,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.41850344033333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.747905383325,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.994434313235296,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.618417468125003,\n + \ \"hasRDI\" : true,\n \"daily\" : 113.09208734062501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.698912800095,\n + \ \"hasRDI\" : true,\n \"daily\" : 84.94564000475,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.251159655000002,\n \"hasRDI\" : true,\n \"daily\" : 7.3127899137500005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.251159655000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9528863287,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.214772145000005,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5815719885,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.145392997125,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0878711758500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.439355879250001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0537117585,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.317139698125004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_589c4f7c38014675ad5a3a848c4aa370\",\n + \ \"label\" : \"Chicken Stock\",\n \"image\" : \"https://www.edamam.com/web-img/0ec/0ecc99cda650d5da2a2285231c066b84.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Stock\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stock-589c4f7c38014675ad5a3a848c4aa370/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 3-lb. chicken\", + \"2 carrots, peeled and roughly chopped\", \"2 stalks celery\", \"1 medium + yellow onion, peeled\", \"6 black peppercorns\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 3-lb. chicken\",\n \"weight\" : 1360.77711\n + \ }, {\n \"text\" : \"2 carrots, peeled and roughly chopped\",\n + \ \"weight\" : 122.0\n }, {\n \"text\" : \"2 stalks celery\",\n + \ \"weight\" : 80.0\n }, {\n \"text\" : \"1 medium yellow + onion, peeled\",\n \"weight\" : 110.0\n }, {\n \"text\" + : \"6 black peppercorns\",\n \"weight\" : 1.7999999999999998\n } + ],\n \"calories\" : 84.03176539279998,\n \"totalWeight\" : 66.98308440000001,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.0317653928,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 5.598077691235201,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 1.6012660615952,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.035902743270240005,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 2.3124310532608003,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 1.2052284977616001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 1.0195480000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.280856,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.46121280000000003,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 7.007788354912001,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 27.759853044,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 32.026796174400005,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 8.292805113120002,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 8.9033474784,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 101.27170967088001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 0.370389436528,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 0.5090808998352001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 58.275071966240006,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 56.64682633072001,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 1.304930198272,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.0282024424352,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 0.0503877648704,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 2.58140083402992,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 0.144137900872,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 5.14822824352,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 5.14822824352,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.1147407259152,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.074026274784,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.153516212176,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.2724210608799997,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4.201588269639999,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 8.612427217284925,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 8.006330307975999,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.33984933333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.123424,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 14.015576709824002,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 9.253284348000001,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1.3344498406000003,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 0.8292805113120002,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 2.2258368696,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2.893477419168,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 2.0577190918222223,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.393872665568001,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 8.325010280891428,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 6.294091814524446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 2.174883663786667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.8801628290133332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.963986168847059,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 12.9070041701496,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 7.2068950436,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 1.28705706088,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.9123454319200002,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.018506568696,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.76758106088,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 2.8405263261,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 5.598077691235201,\n \"hasRDI\" : true,\n \"daily\" : 8.612427217284925,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 1.6012660615952,\n \"hasRDI\" : true,\n \"daily\" + : 8.006330307975999,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.035902743270240005,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.3124310532608003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2052284977616001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 1.0195480000000001,\n \"hasRDI\" : true,\n \"daily\" : 0.33984933333333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7386920000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.280856,\n \"hasRDI\" + : true,\n \"daily\" : 1.123424,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.46121280000000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 7.007788354912001,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.015576709824002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 27.759853044,\n \"hasRDI\" : true,\n \"daily\" : 9.253284348000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 32.026796174400005,\n \"hasRDI\" : true,\n \"daily\" : 1.3344498406000003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.292805113120002,\n \"hasRDI\" : true,\n \"daily\" : 0.8292805113120002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.9033474784,\n \"hasRDI\" : true,\n \"daily\" : 2.2258368696,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.27170967088001,\n \"hasRDI\" : true,\n \"daily\" : 2.893477419168,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.370389436528,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.0577190918222223,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.5090808998352001,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.393872665568001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.275071966240006,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.325010280891428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 56.64682633072001,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.294091814524446,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.304930198272,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.174883663786667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0282024424352,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.8801628290133332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0503877648704,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.963986168847059,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.58140083402992,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.9070041701496,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.144137900872,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.2068950436,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.14822824352,\n \"hasRDI\" : true,\n \"daily\" : 1.28705706088,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.14822824352,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.1147407259152,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.9123454319200002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.074026274784,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.018506568696,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.153516212176,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.76758106088,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2724210608799997,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.8405263261,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_2463f2482609d7a471dbbf3b268bd956\",\n + \ \"label\" : \"Catalan Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/4d9/4d9084cbc170789caa9e997108b595de.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/columns/breadwinner/article/how-to-get-your-kids-to-eat-sauce-let-them-cook-it-themselves\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/catalan-chicken-2463f2482609d7a471dbbf3b268bd956/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 whole 4-pound chicken, quartered\", + \"8 slices bacon\", \"30 cloves garlic\", \"3 lemons, peeled, rinds thinly + sliced and reserved\", \"½ cup Banyuls or another fortified dessert wine\", + \"1 cup veal or chicken stock\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 whole 4-pound chicken, quartered\",\n \"weight\" : 920.0\n }, + {\n \"text\" : \"8 slices bacon\",\n \"weight\" : 224.0\n }, + {\n \"text\" : \"30 cloves garlic\",\n \"weight\" : 90.0\n }, + {\n \"text\" : \"3 lemons, peeled, rinds thinly sliced and reserved\",\n + \ \"weight\" : 174.0\n }, {\n \"text\" : \"½ cup Banyuls + or another fortified dessert wine\",\n \"weight\" : 51.5\n }, + {\n \"text\" : \"1 cup veal or chicken stock\",\n \"weight\" + : 240.0\n } ],\n \"calories\" : 3265.44,\n \"totalWeight\" + : 1699.5,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 3265.4400000000005,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 231.3096,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 70.3534,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.19032,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 97.8972,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 45.063120000000005,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 64.36035,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.7620000000000005,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 15.2887,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 213.17780000000002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 845.0400000000002,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2493.4950000000003,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 331.86,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 261.535,\n \"unit\" : + \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3082.7200000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.4,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 16.21565,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1909.935,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 405.98,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 135.49999999999997,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.5131100000000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.63251,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 76.29377500000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.21294,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 89.04,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 89.04,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 3.9720000000000004,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 2.7360000000000007,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.1282000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 15.81,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 163.27200000000002,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 355.8609230769231,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 351.76699999999994,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 21.45345,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 27.048000000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 426.35560000000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 281.68000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.89562500000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.186,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 65.38375,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 88.07771428571428,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 68.88888888888889,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 108.10433333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 272.84785714285715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 45.10888888888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 225.8333333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 100.87400000000001,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 96.02999999999999,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 381.4688750000001,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 260.647,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 22.26,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 66.2,\n \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6840000000000002,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 20.641000000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 19.7625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 231.3096,\n \"hasRDI\" : true,\n \"daily\" : 355.8609230769231,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.3534,\n \"hasRDI\" : true,\n \"daily\" + : 351.76699999999994,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.19032,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.8972,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 45.063120000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 64.36035,\n \"hasRDI\" : true,\n \"daily\" : 21.45345,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 57.598349999999996,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.7620000000000005,\n \"hasRDI\" + : true,\n \"daily\" : 27.048000000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 15.2887,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 213.17780000000002,\n \"hasRDI\" : true,\n \"daily\" : 426.35560000000004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 845.0400000000002,\n \"hasRDI\" : true,\n \"daily\" + : 281.68000000000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2493.4950000000003,\n \"hasRDI\" : true,\n \"daily\" + : 103.89562500000001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 331.86,\n \"hasRDI\" : true,\n \"daily\" + : 33.186,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 261.535,\n \"hasRDI\" : true,\n \"daily\" : 65.38375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3082.7200000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.07771428571428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.4,\n \"hasRDI\" + : true,\n \"daily\" : 68.88888888888889,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.21565,\n \"hasRDI\" : true,\n \"daily\" + : 108.10433333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1909.935,\n \"hasRDI\" : true,\n \"daily\" + : 272.84785714285715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 405.98,\n \"hasRDI\" : true,\n \"daily\" + : 45.10888888888889,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 135.49999999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 225.8333333333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5131100000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 100.87400000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.63251,\n \"hasRDI\" + : true,\n \"daily\" : 96.02999999999999,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.29377500000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 381.4688750000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.21294,\n + \ \"hasRDI\" : true,\n \"daily\" : 260.647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.04,\n \"hasRDI\" : true,\n \"daily\" : 22.26,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 89.04,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.9720000000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.2,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.7360000000000007,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.6840000000000002,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.1282000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.641000000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 15.81,\n \"hasRDI\" : true,\n \"daily\" + : 19.7625,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6b71506eaed4102c0b97dce1eaddd9a6\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/52c/52cdd87b67b161cce8e8a3f15237368f.jpg\",\n + \ \"source\" : \"Pioneer Woman\",\n \"url\" : \"http://thepioneerwoman.com/cooking/2012/08/roast-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-6b71506eaed4102c0b97dce1eaddd9a6/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole Chicken, + Rinsed And Patted Dry\", \"3/4 cups Butter, Softened\", \"3 whole Lemons\", + \"4 sprigs Rosemary\", \"Salt And Pepper, to taste\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole Chicken, Rinsed And Patted Dry\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"3/4 cups Butter, Softened\",\n \"weight\" + : 170.25\n }, {\n \"text\" : \"3 whole Lemons\",\n \"weight\" + : 174.0\n }, {\n \"text\" : \"4 sprigs Rosemary\",\n \"weight\" + : 20.0\n }, {\n \"text\" : \"Salt And Pepper, to taste\",\n \"weight\" + : 7.7055\n }, {\n \"text\" : \"Salt And Pepper, to taste\",\n + \ \"weight\" : 3.85275\n } ],\n \"calories\" : 3285.0229024999994,\n + \ \"totalWeight\" : 1294.0970715157387,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3285.0229025,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 278.4613746500001,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 127.79511028,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 6.4731950000000005,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 93.4758643225,\n \"unit\" : \"g\"\n },\n \"FAPU\" : + {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : 35.270217945000006,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 22.922783625,\n \"unit\" : + \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 8.66674575,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.4768076,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : + {\n \"label\" : \"Protein\",\n \"quantity\" : 175.54342572500002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1056.0375000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2995.4571830700006,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 269.2063196637773,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 226.17314571515737,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2205.0625932212592,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.081933286001941,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.54746704651574,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1440.3873449999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1573.6902425,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 111.3,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.6414734700000001,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 1.23401995,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 63.04114193250001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.4427190025,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 101.9024675,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.9024675,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.1414250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.393750000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 7.0108686,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.02445175,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 164.251145125,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 428.402114846154,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 638.9755514000001,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.640927875000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 34.666983,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 351.08685145000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 352.01250000000005,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 124.81071596125003,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 26.920631966377734,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 56.543286428789344,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 63.001788377750266,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 61.566296033344116,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 83.64978031010493,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 205.7696207142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 174.8544713888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 185.5,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 42.76489800000001,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 72.58940882352941,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.20570966250006,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 172.135950125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 25.475616875,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 52.35708333333334,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.0984375000000002,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 35.054343,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 40.0305646875,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 278.4613746500001,\n \"hasRDI\" : true,\n \"daily\" : 428.402114846154,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 127.79511028,\n \"hasRDI\" : true,\n \"daily\" + : 638.9755514000001,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 6.4731950000000005,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 93.4758643225,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.270217945000006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.922783625,\n \"hasRDI\" : true,\n \"daily\" : 7.640927875000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.256037875,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 8.66674575,\n \"hasRDI\" + : true,\n \"daily\" : 34.666983,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 4.4768076,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 175.54342572500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 351.08685145000004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1056.0375000000001,\n \"hasRDI\" : true,\n \"daily\" : 352.01250000000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2995.4571830700006,\n \"hasRDI\" : true,\n \"daily\" : 124.81071596125003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 269.2063196637773,\n \"hasRDI\" : true,\n \"daily\" : 26.920631966377734,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 226.17314571515737,\n \"hasRDI\" : true,\n \"daily\" : 56.543286428789344,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2205.0625932212592,\n \"hasRDI\" : true,\n \"daily\" : 63.001788377750266,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.081933286001941,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.566296033344116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.54746704651574,\n + \ \"hasRDI\" : true,\n \"daily\" : 83.64978031010493,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1440.3873449999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.7696207142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1573.6902425,\n + \ \"hasRDI\" : true,\n \"daily\" : 174.8544713888889,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 111.3,\n + \ \"hasRDI\" : true,\n \"daily\" : 185.5,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6414734700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.76489800000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.23401995,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.58940882352941,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.04114193250001,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.20570966250006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4427190025,\n + \ \"hasRDI\" : true,\n \"daily\" : 172.135950125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.9024675,\n \"hasRDI\" : true,\n \"daily\" : 25.475616875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.9024675,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1414250000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 52.35708333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.393750000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0984375000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.0108686,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.054343,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 32.02445175,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.0305646875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_40808a28f527b82c94ecf5281df3d45c\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/b9e/b9e17c0b2b0ddccd6a7ead841bade121.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2015/02/chicken-marsala-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-40808a28f527b82c94ecf5281df3d45c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4 boneless, skinless chicken breasts + (about 1 1/2 pound, 680g), cut in half crosswise\", \"salt\", \"freshly ground + black pepper\", \"8 to 10 ounces (230-280g) button mushrooms, stems trimmed + and sliced\", \"3 tablespoons (total) olive oil\", \"4 tablespoons (total) + unsalted butter\", \"2 large cloves garlic, peeled and minced\", \"about 1/3 + cup (50g) flour\", \"1/3 cup (80ml) chicken stock or water\", \"1 teaspoon + corn starch\", \"2/3 cup (160ml) Marsala wine (preferably dry)\", \"1 1/2 + teaspoons balsamic vinegar\", \"2 tablespoons chopped parsley\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4 boneless, skinless chicken breasts (about 1 + 1/2 pound, 680g), cut in half crosswise\",\n \"weight\" : 1088.0\n + \ }, {\n \"text\" : \"salt\",\n \"weight\" : 10.558634298572732\n + \ }, {\n \"text\" : \"freshly ground black pepper\",\n \"weight\" + : 5.279317149286366\n }, {\n \"text\" : \"8 to 10 ounces (230-280g) + button mushrooms, stems trimmed and sliced\",\n \"weight\" : 255.145708125\n + \ }, {\n \"text\" : \"3 tablespoons (total) olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"4 tablespoons (total) unsalted butter\",\n + \ \"weight\" : 56.8\n }, {\n \"text\" : \"2 large cloves + garlic, peeled and minced\",\n \"weight\" : 10.0\n }, {\n \"text\" + : \"about 1/3 cup (50g) flour\",\n \"weight\" : 50.0\n }, {\n + \ \"text\" : \"1/3 cup (80ml) chicken stock or water\",\n \"weight\" + : 81.1536544844232\n }, {\n \"text\" : \"1 teaspoon corn starch\",\n + \ \"weight\" : 3.0208333333333335\n }, {\n \"text\" : \"2/3 + cup (160ml) Marsala wine (preferably dry)\",\n \"weight\" : 159.60218715269895\n + \ }, {\n \"text\" : \"1 1/2 teaspoons balsamic vinegar\",\n \"weight\" + : 7.949999999999999\n }, {\n \"text\" : \"2 tablespoons chopped + parsley\",\n \"weight\" : 7.6\n } ],\n \"calories\" : 2511.1741894500074,\n + \ \"totalWeight\" : 1773.9810924186893,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2511.174189450008,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 117.73034625050481,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.462517888008904,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.938275458333333,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.57685142283257,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 11.492672460535035,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 62.794717729030516,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.758340986686118,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 9.340066836657309,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 262.03657330688776,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 918.7946096345327,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4104.592427885141,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 155.11950161025138,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 378.0301350777764,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4926.178580615248,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.141676330210341,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.73670474141049,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2690.5775958913737,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 499.1768271751515,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.953783846260514,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.3655318661963292,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.12605908522143,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 116.13397455479182,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 9.39693663465238,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 175.67070889237687,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 175.67070889237687,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4834182832500002,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.36229141625,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.424190148843739,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 164.30661198235063,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 125.55870947250038,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 181.12360961616125,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 207.31258944004452,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.931572576343505,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.033363946744473,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 524.0731466137755,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 306.26486987817754,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 171.0246844952142,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 15.511950161025137,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 94.5075337694441,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 140.74795944614996,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 45.23153516783523,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 64.9113649427366,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 384.36822798448196,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 55.46409190835016,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 31.589639743767524,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 91.03545774642195,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 183.88582854243708,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 580.6698727739591,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 469.846831732619,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 43.917677223094216,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 41.390304720833335,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34057285406249993,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 67.12095074421869,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 205.38326497793827,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 117.73034625050481,\n \"hasRDI\" : true,\n \"daily\" + : 181.12360961616125,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 41.462517888008904,\n \"hasRDI\" + : true,\n \"daily\" : 207.31258944004452,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.938275458333333,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 49.57685142283257,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.492672460535035,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 62.794717729030516,\n \"hasRDI\" : true,\n \"daily\" : 20.931572576343505,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.0363767423444,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 5.758340986686118,\n \"hasRDI\" + : true,\n \"daily\" : 23.033363946744473,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 9.340066836657309,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 262.03657330688776,\n \"hasRDI\" : true,\n \"daily\" : 524.0731466137755,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 918.7946096345327,\n \"hasRDI\" : true,\n \"daily\" + : 306.26486987817754,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4104.592427885141,\n \"hasRDI\" : true,\n \"daily\" + : 171.0246844952142,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 155.11950161025138,\n \"hasRDI\" : true,\n \"daily\" + : 15.511950161025137,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 378.0301350777764,\n \"hasRDI\" : true,\n \"daily\" + : 94.5075337694441,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4926.178580615248,\n \"hasRDI\" : true,\n \"daily\" + : 140.74795944614996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.141676330210341,\n \"hasRDI\" : true,\n \"daily\" + : 45.23153516783523,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.73670474141049,\n \"hasRDI\" : true,\n \"daily\" + : 64.9113649427366,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2690.5775958913737,\n \"hasRDI\" : true,\n \"daily\" + : 384.36822798448196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 499.1768271751515,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.46409190835016,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.953783846260514,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.589639743767524,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3655318661963292,\n \"hasRDI\" : true,\n + \ \"daily\" : 91.03545774642195,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.12605908522143,\n + \ \"hasRDI\" : true,\n \"daily\" : 183.88582854243708,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 116.13397455479182,\n + \ \"hasRDI\" : true,\n \"daily\" : 580.6698727739591,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.39693663465238,\n + \ \"hasRDI\" : true,\n \"daily\" : 469.846831732619,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 175.67070889237687,\n \"hasRDI\" : true,\n \"daily\" : 43.917677223094216,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 175.67070889237687,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4834182832500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.390304720833335,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.36229141625,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34057285406249993,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.424190148843739,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.12095074421869,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 164.30661198235063,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.38326497793827,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b7ad27e3e2c9440baca6ac8f7fac2a53\",\n + \ \"label\" : \"Twistin’ Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/245/245252a20f66378b825b918781a422b4.jpg\",\n + \ \"source\" : \"Cookstr\",\n \"url\" : \"http://www.cookstr.com/recipes/twistinrsquo-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/twistin-chicken-b7ad27e3e2c9440baca6ac8f7fac2a53/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", + \"Alcohol-Free\" ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 boneless, skinless chicken breasts , or 1 pound chicken tenders\", + \"2 egg whites\", \"juice from ½ lemon\", \"2 teaspoons cornstarch\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"2 boneless, skinless chicken + breasts , or 1 pound chicken tenders\",\n \"weight\" : 544.0\n }, + {\n \"text\" : \"2 egg whites\",\n \"weight\" : 52.8\n }, + {\n \"text\" : \"juice from ½ lemon\",\n \"weight\" : 29.0\n + \ }, {\n \"text\" : \"2 teaspoons cornstarch\",\n \"weight\" + : 5.2\n } ],\n \"calories\" : 708.4780000000001,\n \"totalWeight\" + : 631.0,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 708.4780000000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 14.432160000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 3.074498,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.03808,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 3.752182,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 2.33367,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 7.83428,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.8588,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 1.09988,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.48772,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 397.12,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 333.49600000000004,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 38.540000000000006,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 160.604,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1943.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 2.2534799999999997,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.7355600000000004,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1171.9560000000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.370000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 15.37,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.525072,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.2004720000000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 52.308440000000004,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.437680000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 54.262,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 54.262,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 1.18992,\n \"unit\" : \"µg\"\n },\n \"VITD\" : {\n + \ \"label\" : \"Vitamin D\",\n \"quantity\" : 5.44,\n \"unit\" + : \"IU\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 3.0899000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1.088,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 35.4239,\n \"unit\" : \"%\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 22.20332307692308,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 15.372490000000003,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 2.6114266666666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 3.4352,\n \"unit\" : \"%\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 256.97544,\n \"unit\" : \"%\"\n },\n \"CHOLE\" : + {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 132.37333333333333,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 13.895666666666669,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 3.8540000000000005,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 40.151,\n \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 55.52,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.51933333333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 24.903733333333335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 167.42228571428572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 4.263333333333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.616666666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 35.004799999999996,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 70.61600000000001,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 261.5422,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 221.88400000000007,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.5655,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 19.832,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.36,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 15.449500000000004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1.36,\n \"unit\" : \"%\"\n }\n },\n + \ \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n + \ \"schemaOrgTag\" : \"fatContent\",\n \"total\" : 14.432160000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.20332307692308,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 3.074498,\n \"hasRDI\" : true,\n \"daily\" : 15.372490000000003,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.03808,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.752182,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.33367,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.83428,\n \"hasRDI\" : true,\n \"daily\" : 2.6114266666666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.975479999999999,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.8588,\n \"hasRDI\" : + true,\n \"daily\" : 3.4352,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.09988,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 128.48772,\n + \ \"hasRDI\" : true,\n \"daily\" : 256.97544,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 397.12,\n \"hasRDI\" : true,\n \"daily\" : 132.37333333333333,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 333.49600000000004,\n \"hasRDI\" : true,\n \"daily\" : 13.895666666666669,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 38.540000000000006,\n \"hasRDI\" : true,\n \"daily\" : 3.8540000000000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.604,\n \"hasRDI\" : true,\n \"daily\" : 40.151,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1943.2,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.52,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.2534799999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.51933333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.7355600000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.903733333333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1171.9560000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 167.42228571428572,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.370000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.263333333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.37,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.616666666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.525072,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.004799999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2004720000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.61600000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 52.308440000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 261.5422,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.437680000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 221.88400000000007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 54.262,\n \"hasRDI\" : true,\n \"daily\" : 13.5655,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.262,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.18992,\n \"hasRDI\" : true,\n \"daily\" + : 19.832,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.44,\n \"hasRDI\" : true,\n \"daily\" : 1.36,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0899000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.449500000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.088,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.36,\n \"unit\" : + \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n + \ }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_44d56ce15bf57f82e886a54c45539033\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/0f1/0f1cb835e1967f2d9816657a5bb388a8.jpg\",\n + \ \"source\" : \"Fine Cooking\",\n \"url\" : \"http://www.finecooking.com/recipes/roast-chicken.aspx\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-44d56ce15bf57f82e886a54c45539033/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1-1/2 Tbs. + olive oil\", \"2 tsp. granulated sugar\", \"3-1/2 to 4-lb. whole chicken\", + \"Freshly ground black pepper\", \"2 Tbs. kosher salt\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1-1/2 Tbs. olive oil\",\n \"weight\" : + 20.25\n }, {\n \"text\" : \"2 tsp. granulated sugar\",\n \"weight\" + : 8.4\n }, {\n \"text\" : \"3-1/2 to 4-lb. whole chicken\",\n + \ \"weight\" : 1700.9713875\n }, {\n \"text\" : \"Freshly + ground black pepper\",\n \"weight\" : 5.2762391625000005\n }, + {\n \"text\" : \"2 Tbs. kosher salt\",\n \"weight\" : 29.125\n + \ } ],\n \"calories\" : 3881.849843422875,\n \"totalWeight\" + : 1742.2309398204768,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3881.849843422875,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 276.5882963541975,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 76.18143205039199,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.649942245875,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 120.95420848741088,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 57.124940183091745,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 11.77247494441875,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.3348885081125004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 8.41696793064,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 8.3832,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 316.9288793239837,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1275.728540625,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4034.469732851111,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 212.52708727278937,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 349.2899795994548,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3285.914305897263,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 15.962865243600072,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 22.353685735441726,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2508.76439750175,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 698.822853448875,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 27.2155422,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0262811707955,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 2.0522588954925,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 115.74337147750236,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.968753712212874,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 102.95524390762499,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 102.95524390762499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.2730113012499995,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.401942775,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.063662049789999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 46.3422743215125,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 194.09249217114376,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 425.5204559295346,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 380.9071602519599,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.92415831480625,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.3395540324500015,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 633.8577586479674,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 425.242846875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 168.10290553546298,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 21.252708727278936,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.3224948998637,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.88326588277894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 88.68258468666707,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 149.0245715696115,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 358.39491392882144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 77.64698371654165,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 45.359237,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 68.4187447197,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 120.72111149955882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 578.7168573875118,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 298.4376856106437,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 25.738810976906247,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 87.8835216875,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.85048569375,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 40.31831024895,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 57.92784290189062,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 276.5882963541975,\n \"hasRDI\" : true,\n \"daily\" + : 425.5204559295346,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 76.18143205039199,\n \"hasRDI\" + : true,\n \"daily\" : 380.9071602519599,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.649942245875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 120.95420848741088,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 57.124940183091745,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 11.77247494441875,\n \"hasRDI\" : true,\n \"daily\" : 3.92415831480625,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.43758643630625,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.3348885081125004,\n \"hasRDI\" + : true,\n \"daily\" : 5.3395540324500015,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 8.41696793064,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.3832,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 316.9288793239837,\n \"hasRDI\" : true,\n \"daily\" : 633.8577586479674,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1275.728540625,\n \"hasRDI\" : true,\n \"daily\" + : 425.242846875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4034.469732851111,\n \"hasRDI\" : true,\n \"daily\" + : 168.10290553546298,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 212.52708727278937,\n \"hasRDI\" : true,\n \"daily\" + : 21.252708727278936,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 349.2899795994548,\n \"hasRDI\" : true,\n \"daily\" + : 87.3224948998637,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3285.914305897263,\n \"hasRDI\" : true,\n \"daily\" + : 93.88326588277894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.962865243600072,\n \"hasRDI\" : true,\n \"daily\" + : 88.68258468666707,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.353685735441726,\n \"hasRDI\" : true,\n \"daily\" + : 149.0245715696115,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2508.76439750175,\n \"hasRDI\" : true,\n \"daily\" + : 358.39491392882144,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 698.822853448875,\n \"hasRDI\" : true,\n + \ \"daily\" : 77.64698371654165,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.2155422,\n \"hasRDI\" : true,\n \"daily\" + : 45.359237,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.0262811707955,\n \"hasRDI\" : true,\n \"daily\" : 68.4187447197,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.0522588954925,\n \"hasRDI\" : true,\n \"daily\" : 120.72111149955882,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 115.74337147750236,\n \"hasRDI\" : true,\n \"daily\" : 578.7168573875118,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.968753712212874,\n \"hasRDI\" : true,\n \"daily\" : 298.4376856106437,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 102.95524390762499,\n \"hasRDI\" : true,\n \"daily\" + : 25.738810976906247,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 102.95524390762499,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.2730113012499995,\n \"hasRDI\" : true,\n \"daily\" + : 87.8835216875,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 3.401942775,\n \"hasRDI\" : true,\n \"daily\" + : 0.85048569375,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.063662049789999,\n \"hasRDI\" : true,\n + \ \"daily\" : 40.31831024895,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.3422743215125,\n \"hasRDI\" : true,\n + \ \"daily\" : 57.92784290189062,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_85ef4933c59628b6dccf9d6704f90bd8\",\n + \ \"label\" : \"Chicken Stroganoff\",\n \"image\" : \"https://www.edamam.com/web-img/e86/e8612df6b67bb4e4cbb0b3272dc8c284.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/chicken-stroganoff-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stroganoff-85ef4933c59628b6dccf9d6704f90bd8/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4-5 skinless boneless chicken thighs + washed, dried, trimmed of excess fat and cut into bite size pieces\", \"Sweet + hungarian paprika\", \"1/2 tsp kosher salt\", \"Freshly ground black pepper\", + \"2 tbs flour for dusting\", \"1/2 medium onion diced\", \"8 oz. mushrooms + cleaned and sliced\", \"1/4 c vermouth or sherry\", \"1/2 c chicken stock\", + \"1 tsp tomato paste\", \"1 bay leaf\", \"1/4 c plain yogurt\", \"Salt and + pepper to taste\", \"Chopped parsley (optional)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4-5 skinless boneless chicken thighs washed, dried, + trimmed of excess fat and cut into bite size pieces\",\n \"weight\" + : 670.5\n }, {\n \"text\" : \"Sweet hungarian paprika\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"1/2 tsp kosher salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"Freshly ground black + pepper\",\n \"weight\" : 3.648594805\n }, {\n \"text\" + : \"2 tbs flour for dusting\",\n \"weight\" : 15.625\n }, {\n + \ \"text\" : \"1/2 medium onion diced\",\n \"weight\" : 55.0\n + \ }, {\n \"text\" : \"8 oz. mushrooms cleaned and sliced\",\n \"weight\" + : 226.796185\n }, {\n \"text\" : \"1/4 c vermouth or sherry\",\n + \ \"weight\" : 59.0\n }, {\n \"text\" : \"1/2 c chicken + stock\",\n \"weight\" : 120.0\n }, {\n \"text\" : \"1 tsp + tomato paste\",\n \"weight\" : 5.0\n }, {\n \"text\" : + \"1 bay leaf\",\n \"weight\" : 0.6\n }, {\n \"text\" : + \"1/4 c plain yogurt\",\n \"weight\" : 61.25\n }, {\n \"text\" + : \"Salt and pepper to taste\",\n \"weight\" : 7.29718961\n }, + {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" : + 3.648594805\n } ],\n \"calories\" : 1764.4016066211,\n \"totalWeight\" + : 1226.3286830279164,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1764.4016066211,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 116.09145541028602,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 32.2833937218712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.569925,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 47.8659224812179,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 24.089456098307807,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 40.887165886595014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.8338258213300005,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 12.736803976504,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 126.20417761697901,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.6525,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2839.570083788062,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 191.55815954259992,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 184.02995396727917,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2616.672592890333,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.625534553910125,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 10.783537026776918,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1399.2997786838005,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 179.57674119470002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 10.752969885000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7908673746288002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.130901604998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 41.7441902701923,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8025128541651,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 86.9808736837,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 86.9808736837,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 4.474443474,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.18534237,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 1.814745390444,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 27.225374391569993,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 88.220080331055,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 178.6022390927477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 161.416968609356,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.629055295531671,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.335303285320002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 252.40835523395802,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88416666666666,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 118.31542015783593,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.155815954259992,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.00748849181979,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.76207408258094,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.364080855056244,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 71.89024684517945,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 199.89996838340008,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.952971243855558,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.921616475000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.72449164192002,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.34715323517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 208.7209513509615,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 140.12564270825501,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 21.745218420925,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 74.5740579,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2963355925,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.073726952220001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.03171798946249,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 116.09145541028602,\n \"hasRDI\" : true,\n \"daily\" + : 178.6022390927477,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.2833937218712,\n \"hasRDI\" + : true,\n \"daily\" : 161.416968609356,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.569925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.8659224812179,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.089456098307807,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 40.887165886595014,\n \"hasRDI\" : true,\n \"daily\" : 13.629055295531671,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 35.05334006526501,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.8338258213300005,\n \"hasRDI\" + : true,\n \"daily\" : 23.335303285320002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 12.736803976504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 126.20417761697901,\n \"hasRDI\" : true,\n \"daily\" : 252.40835523395802,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.6525,\n \"hasRDI\" : true,\n \"daily\" + : 222.88416666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2839.570083788062,\n \"hasRDI\" : true,\n \"daily\" + : 118.31542015783593,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 191.55815954259992,\n \"hasRDI\" : true,\n \"daily\" + : 19.155815954259992,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.02995396727917,\n \"hasRDI\" : true,\n \"daily\" + : 46.00748849181979,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2616.672592890333,\n \"hasRDI\" : true,\n \"daily\" + : 74.76207408258094,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.625534553910125,\n \"hasRDI\" : true,\n \"daily\" + : 42.364080855056244,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.783537026776918,\n \"hasRDI\" : true,\n \"daily\" + : 71.89024684517945,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1399.2997786838005,\n \"hasRDI\" : true,\n \"daily\" + : 199.89996838340008,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 179.57674119470002,\n \"hasRDI\" : true,\n + \ \"daily\" : 19.952971243855558,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.752969885000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.921616475000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7908673746288002,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.72449164192002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.130901604998,\n \"hasRDI\" + : true,\n \"daily\" : 125.34715323517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.7441902701923,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.7209513509615,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8025128541651,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.12564270825501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : true,\n \"daily\" : 21.745218420925,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474443474,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.5740579,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.18534237,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2963355925,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.814745390444,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.073726952220001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.225374391569993,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.03171798946249,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_dbbcecdf101b25733aebb9f85edea12a\",\n + \ \"label\" : \"Chicken Ramen\",\n \"image\" : \"https://www.edamam.com/web-img/15b/15b3c28a2df3910ec02e68b771de33a3.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-ramen-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-ramen-dbbcecdf101b25733aebb9f85edea12a/chicken\",\n + \ \"yield\" : 18.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 pounds chicken bones\", \"1 pound chicken wing tips\", \"1 small leek + cut into 4 pieces\", \"2 length ginger sliced into 8 coins\", \"4 large cloves + garlic unpeeled\", \"vegetable oil for frying the aromatics\", \"4 inch piece + kombu\", \"10 cups water\", \"1/4 cup sesame oil\", \"3 scallions white part + only, minced\", \"1 tablespoon soy sauce\", \"1 cup soy milk\", \"1 tablespoon + salt\", \"4 servings ramen noodles boiled according to package directions\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 pounds chicken bones\",\n + \ \"weight\" : 907.18474\n }, {\n \"text\" : \"1 pound chicken + wing tips\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1 small leek cut into 4 pieces\",\n \"weight\" : 66.75\n }, + {\n \"text\" : \"2 length ginger sliced into 8 coins\",\n \"weight\" + : 30.0\n }, {\n \"text\" : \"4 large cloves garlic unpeeled\",\n + \ \"weight\" : 20.0\n }, {\n \"text\" : \"vegetable oil + for frying the aromatics\",\n \"weight\" : 59.989968696\n }, {\n + \ \"text\" : \"4 inch piece kombu\",\n \"weight\" : 15.0\n }, + {\n \"text\" : \"10 cups water\",\n \"weight\" : 2370.0\n }, + {\n \"text\" : \"1/4 cup sesame oil\",\n \"weight\" : 54.5\n + \ }, {\n \"text\" : \"3 scallions white part only, minced\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tablespoon soy + sauce\",\n \"weight\" : 16.0\n }, {\n \"text\" : \"1 cup + soy milk\",\n \"weight\" : 243.0\n }, {\n \"text\" : \"1 + tablespoon salt\",\n \"weight\" : 18.0\n }, {\n \"text\" + : \"4 servings ramen noodles boiled according to package directions\",\n \"weight\" + : 172.0\n } ],\n \"calories\" : 6046.47817296,\n \"totalWeight\" + : 4703.549123967689,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 6046.47817296,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 510.968004192,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 87.40426536551499,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.7148140990550003,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 276.059092567615,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 93.08901496176999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 145.823025,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 10.160499999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.61705,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 209.89535462400002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 793.7866475000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 10908.84104332722,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 364.13796809224556,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 275.7302086746769,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1979.2811676974152,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 25.792968248643376,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 7.974910624467691,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 995.7511151,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 121.3458133,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 25.176000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.2863798798000001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2105951411,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.6675773189,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.1493952136000005,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 463.9514659,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 257.55146590000004,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 120.39999999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.563980925,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4535923700000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 74.17562766500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 182.03901005999998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 302.323908648,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 786.1046218338462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 437.0213268275749,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 48.607675,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : + {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.641999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 419.79070924800004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.59554916666673,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 454.5350434719675,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 36.41379680922456,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 68.93255216866922,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 56.55089050564043,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 143.29426804801875,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 53.16607082978461,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 142.2501593,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.482868144444446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.96000000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 85.75865865333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 71.21147888823529,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 188.33788659450002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 157.46976068000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 115.987866475,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 26.066348750000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.11339809250000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 370.87813832500007,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 227.54876257499996,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 510.968004192,\n \"hasRDI\" : true,\n \"daily\" : 786.1046218338462,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 87.40426536551499,\n \"hasRDI\" : true,\n \"daily\" + : 437.0213268275749,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.7148140990550003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 276.059092567615,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 93.08901496176999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 145.823025,\n \"hasRDI\" : true,\n \"daily\" : 48.607675,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 135.66252500000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.160499999999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.641999999999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.61705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 209.89535462400002,\n \"hasRDI\" : true,\n \"daily\" : 419.79070924800004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 793.7866475000001,\n \"hasRDI\" : true,\n \"daily\" + : 264.59554916666673,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 10908.84104332722,\n \"hasRDI\" : true,\n \"daily\" + : 454.5350434719675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 364.13796809224556,\n \"hasRDI\" : true,\n \"daily\" + : 36.41379680922456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 275.7302086746769,\n \"hasRDI\" : true,\n \"daily\" + : 68.93255216866922,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1979.2811676974152,\n \"hasRDI\" : true,\n \"daily\" + : 56.55089050564043,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.792968248643376,\n \"hasRDI\" : true,\n \"daily\" + : 143.29426804801875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.974910624467691,\n \"hasRDI\" : true,\n \"daily\" + : 53.16607082978461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 995.7511151,\n \"hasRDI\" : true,\n \"daily\" + : 142.2501593,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 121.3458133,\n \"hasRDI\" : true,\n \"daily\" + : 13.482868144444446,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 25.176000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.96000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2863798798000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 85.75865865333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.2105951411,\n \"hasRDI\" + : true,\n \"daily\" : 71.21147888823529,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 37.6675773189,\n \"hasRDI\" + : true,\n \"daily\" : 188.33788659450002,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.1493952136000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 157.46976068000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 463.9514659,\n \"hasRDI\" : true,\n \"daily\" : 115.987866475,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.55146590000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.39999999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.563980925,\n \"hasRDI\" : true,\n \"daily\" : 26.066348750000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.4535923700000001,\n \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.17562766500001,\n \"hasRDI\" : true,\n \"daily\" : 370.87813832500007,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 182.03901005999998,\n \"hasRDI\" : true,\n \"daily\" : 227.54876257499996,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1c467782c786df1808bd922a559937e5\",\n + \ \"label\" : \"Chicken Stroganoff\",\n \"image\" : \"https://www.edamam.com/web-img/f6d/f6de0da464ad73467d688125b46eb75b.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2008/04/02/chicken-stroganoff/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stroganoff-1c467782c786df1808bd922a559937e5/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4-5 skinless boneless chicken thighs + washed, dried, trimmed of excess fat and cut into bite size pieces\", \"sweet + hungarian paprika\", \"1/2 teaspoon kosher salt\", \"freshly ground black + pepper\", \"2 Tbs flour for dusting\", \"1/2 medium onion diced\", \"8 oz. + mushrooms cleaned and sliced\", \"1/4 C vermouth or sherry\", \"1/2 C chicken + stock\", \"1 Tsp tomato paste\", \"1 bay leaf\", \"1/4 C plain yogurt\", \"salt + and pepper to taste\", \"chopped parsley (optional)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4-5 skinless boneless chicken thighs washed, dried, + trimmed of excess fat and cut into bite size pieces\",\n \"weight\" + : 670.5\n }, {\n \"text\" : \"sweet hungarian paprika\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"1/2 teaspoon kosher salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"freshly ground black + pepper\",\n \"weight\" : 3.648594805\n }, {\n \"text\" + : \"2 Tbs flour for dusting\",\n \"weight\" : 15.625\n }, {\n + \ \"text\" : \"1/2 medium onion diced\",\n \"weight\" : 55.0\n + \ }, {\n \"text\" : \"8 oz. mushrooms cleaned and sliced\",\n \"weight\" + : 226.796185\n }, {\n \"text\" : \"1/4 C vermouth or sherry\",\n + \ \"weight\" : 59.0\n }, {\n \"text\" : \"1/2 C chicken + stock\",\n \"weight\" : 120.0\n }, {\n \"text\" : \"1 Tsp + tomato paste\",\n \"weight\" : 5.0\n }, {\n \"text\" : + \"1 bay leaf\",\n \"weight\" : 0.6\n }, {\n \"text\" : + \"1/4 C plain yogurt\",\n \"weight\" : 61.25\n }, {\n \"text\" + : \"salt and pepper to taste\",\n \"weight\" : 7.29718961\n }, + {\n \"text\" : \"salt and pepper to taste\",\n \"weight\" : + 3.648594805\n } ],\n \"calories\" : 1764.4016066211,\n \"totalWeight\" + : 1226.3286830279164,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1764.4016066211,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 116.09145541028602,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 32.2833937218712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.569925,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 47.8659224812179,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 24.089456098307807,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 40.887165886595014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.8338258213300005,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 12.736803976504,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 126.20417761697901,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.6525,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2839.570083788062,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 191.55815954259992,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 184.02995396727917,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2616.672592890333,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.625534553910125,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 10.783537026776918,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1399.2997786838005,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 179.57674119470002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 10.752969885000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7908673746288002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.130901604998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 41.7441902701923,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8025128541651,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 86.9808736837,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 86.9808736837,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 4.474443474,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.18534237,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 1.814745390444,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 27.225374391569993,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 88.220080331055,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 178.6022390927477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 161.416968609356,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.629055295531671,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.335303285320002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 252.40835523395802,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88416666666666,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 118.31542015783593,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.155815954259992,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.00748849181979,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.76207408258094,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.364080855056244,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 71.89024684517945,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 199.89996838340008,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.952971243855558,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.921616475000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.72449164192002,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.34715323517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 208.7209513509615,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 140.12564270825501,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 21.745218420925,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 74.5740579,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2963355925,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.073726952220001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.03171798946249,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 116.09145541028602,\n \"hasRDI\" : true,\n \"daily\" + : 178.6022390927477,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.2833937218712,\n \"hasRDI\" + : true,\n \"daily\" : 161.416968609356,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.569925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.8659224812179,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.089456098307807,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 40.887165886595014,\n \"hasRDI\" : true,\n \"daily\" : 13.629055295531671,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 35.05334006526501,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.8338258213300005,\n \"hasRDI\" + : true,\n \"daily\" : 23.335303285320002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 12.736803976504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 126.20417761697901,\n \"hasRDI\" : true,\n \"daily\" : 252.40835523395802,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.6525,\n \"hasRDI\" : true,\n \"daily\" + : 222.88416666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2839.570083788062,\n \"hasRDI\" : true,\n \"daily\" + : 118.31542015783593,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 191.55815954259992,\n \"hasRDI\" : true,\n \"daily\" + : 19.155815954259992,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.02995396727917,\n \"hasRDI\" : true,\n \"daily\" + : 46.00748849181979,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2616.672592890333,\n \"hasRDI\" : true,\n \"daily\" + : 74.76207408258094,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.625534553910125,\n \"hasRDI\" : true,\n \"daily\" + : 42.364080855056244,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.783537026776918,\n \"hasRDI\" : true,\n \"daily\" + : 71.89024684517945,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1399.2997786838005,\n \"hasRDI\" : true,\n \"daily\" + : 199.89996838340008,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 179.57674119470002,\n \"hasRDI\" : true,\n + \ \"daily\" : 19.952971243855558,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.752969885000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.921616475000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7908673746288002,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.72449164192002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.130901604998,\n \"hasRDI\" + : true,\n \"daily\" : 125.34715323517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.7441902701923,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.7209513509615,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8025128541651,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.12564270825501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : true,\n \"daily\" : 21.745218420925,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474443474,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.5740579,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.18534237,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2963355925,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.814745390444,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.073726952220001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.225374391569993,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.03171798946249,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1c199811ae3755b6c0a03b9439941a03\",\n + \ \"label\" : \"Chicken Ramen\",\n \"image\" : \"https://www.edamam.com/web-img/c2e/c2eec6e078f45c9c76c581a816f74157.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-ramen-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-ramen-1c199811ae3755b6c0a03b9439941a03/chicken\",\n + \ \"yield\" : 18.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 lbs chicken bones\", \"1 lb chicken wing tips\", \"1 small leek cut + into 4 pieces\", \"2 length ginger sliced into 8 coins\", \"4 large cloves + garlic unpeeled\", \"Vegetable oil for frying the aromatics\", \"4 inch piece + kombu\", \"10 cups water\", \"1/4 cup sesame oil\", \"3 scallions white part + only, minced\", \"1 tbsp soy sauce\", \"1 cup soy milk\", \"1 tbsp salt\", + \"4 servings ramen noodles boiled according to package directions\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 lbs chicken bones\",\n \"weight\" : 907.18474\n + \ }, {\n \"text\" : \"1 lb chicken wing tips\",\n \"weight\" + : 453.59237\n }, {\n \"text\" : \"1 small leek cut into 4 pieces\",\n + \ \"weight\" : 66.75\n }, {\n \"text\" : \"2 length ginger + sliced into 8 coins\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"4 large cloves garlic unpeeled\",\n \"weight\" : 20.0\n }, + {\n \"text\" : \"Vegetable oil for frying the aromatics\",\n \"weight\" + : 59.989968696\n }, {\n \"text\" : \"4 inch piece kombu\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"10 cups water\",\n \"weight\" + : 2370.0\n }, {\n \"text\" : \"1/4 cup sesame oil\",\n \"weight\" + : 54.5\n }, {\n \"text\" : \"3 scallions white part only, minced\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tbsp soy sauce\",\n + \ \"weight\" : 16.0\n }, {\n \"text\" : \"1 cup soy milk\",\n + \ \"weight\" : 243.0\n }, {\n \"text\" : \"1 tbsp salt\",\n + \ \"weight\" : 18.0\n }, {\n \"text\" : \"4 servings ramen + noodles boiled according to package directions\",\n \"weight\" : 172.0\n + \ } ],\n \"calories\" : 6046.47817296,\n \"totalWeight\" : 4703.549123967689,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 6046.47817296,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 510.968004192,\n \"unit\" : + \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 87.40426536551499,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.7148140990550003,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 276.059092567615,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 93.08901496176999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 145.823025,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 10.160499999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.61705,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 209.89535462400002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 793.7866475000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 10908.84104332722,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 364.13796809224556,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 275.7302086746769,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1979.2811676974152,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 25.792968248643376,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 7.974910624467691,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 995.7511151,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 121.3458133,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 25.176000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.2863798798000001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2105951411,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.6675773189,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.1493952136000005,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 463.9514659,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 257.55146590000004,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 120.39999999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.563980925,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4535923700000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 74.17562766500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 182.03901005999998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 302.323908648,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 786.1046218338462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 437.0213268275749,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 48.607675,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : + {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.641999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 419.79070924800004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.59554916666673,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 454.5350434719675,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 36.41379680922456,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 68.93255216866922,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 56.55089050564043,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 143.29426804801875,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 53.16607082978461,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 142.2501593,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.482868144444446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.96000000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 85.75865865333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 71.21147888823529,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 188.33788659450002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 157.46976068000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 115.987866475,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 26.066348750000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.11339809250000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 370.87813832500007,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 227.54876257499996,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 510.968004192,\n \"hasRDI\" : true,\n \"daily\" : 786.1046218338462,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 87.40426536551499,\n \"hasRDI\" : true,\n \"daily\" + : 437.0213268275749,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.7148140990550003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 276.059092567615,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 93.08901496176999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 145.823025,\n \"hasRDI\" : true,\n \"daily\" : 48.607675,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 135.66252500000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.160499999999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.641999999999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.61705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 209.89535462400002,\n \"hasRDI\" : true,\n \"daily\" : 419.79070924800004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 793.7866475000001,\n \"hasRDI\" : true,\n \"daily\" + : 264.59554916666673,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 10908.84104332722,\n \"hasRDI\" : true,\n \"daily\" + : 454.5350434719675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 364.13796809224556,\n \"hasRDI\" : true,\n \"daily\" + : 36.41379680922456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 275.7302086746769,\n \"hasRDI\" : true,\n \"daily\" + : 68.93255216866922,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1979.2811676974152,\n \"hasRDI\" : true,\n \"daily\" + : 56.55089050564043,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.792968248643376,\n \"hasRDI\" : true,\n \"daily\" + : 143.29426804801875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.974910624467691,\n \"hasRDI\" : true,\n \"daily\" + : 53.16607082978461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 995.7511151,\n \"hasRDI\" : true,\n \"daily\" + : 142.2501593,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 121.3458133,\n \"hasRDI\" : true,\n \"daily\" + : 13.482868144444446,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 25.176000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.96000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2863798798000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 85.75865865333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.2105951411,\n \"hasRDI\" + : true,\n \"daily\" : 71.21147888823529,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 37.6675773189,\n \"hasRDI\" + : true,\n \"daily\" : 188.33788659450002,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.1493952136000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 157.46976068000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 463.9514659,\n \"hasRDI\" : true,\n \"daily\" : 115.987866475,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.55146590000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.39999999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.563980925,\n \"hasRDI\" : true,\n \"daily\" : 26.066348750000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.4535923700000001,\n \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.17562766500001,\n \"hasRDI\" : true,\n \"daily\" : 370.87813832500007,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 182.03901005999998,\n \"hasRDI\" : true,\n \"daily\" : 227.54876257499996,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6289468ceb188ec8103d4a0c4adab6b8\",\n + \ \"label\" : \"Oven-Roasted Chicken Thighs\",\n \"image\" : \"https://www.edamam.com/web-img/676/676a9be0cb7bc68b41ccc0ca765969ed.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/97461/recipes-oven-roasted-chicken-thighs.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/oven-roasted-chicken-thighs-6289468ceb188ec8103d4a0c4adab6b8/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"8 bone-in, + skin-on chicken thighs (6 to 8 ounces each)\", \"1 1/4 teaspoons sea salt\", + \"Freshly ground black pepper\", \"Mild olive oil\" ],\n \"ingredients\" + : [ {\n \"text\" : \"8 bone-in, skin-on chicken thighs (6 to 8 ounces + each)\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"1 1/4 teaspoons sea salt\",\n \"weight\" : 6.067708333333334\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 4.78092301\n }, {\n \"text\" : \"Mild olive oil\",\n \"weight\" + : 21.673517645333334\n } ],\n \"calories\" : 2659.569900104847,\n + \ \"totalWeight\" : 1620.0954439886666,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2659.569900104847,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 206.41652274510935,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 53.33450087082684,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.9446061105250001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 92.97285690135556,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 40.85723416981323,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 5.835653531145001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.20957352153,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.030597907264000003,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 184.083713734539,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1089.07528037,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3253.26610905324,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 100.64356556575332,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 208.27029060043336,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2331.2952839060204,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.162471644784867,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 14.398747546002335,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1752.2969095608,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 256.8901497077,\n + \ \"unit\" : \"µg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.8164133505958,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.619992555843,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 51.4523313756293,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.8701280195141,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 34.1517961067,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 34.1517961067,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 6.890068100300001,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.1113013065000001,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 5.493604125059333,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 44.21115602636067,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 132.97849500524237,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 317.5638811463221,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 266.67250435413416,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.9452178437150003,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.83829408612,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 368.167427469078,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 363.02509345666664,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 135.552754543885,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 10.064356556575332,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 52.06757265010834,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 66.60843668302915,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 45.347064693249266,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 95.99165030668223,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 250.32812993725716,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 28.54334996752222,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 54.42755670638667,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 95.29367975547058,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 257.2616568781465,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 193.506400975705,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 8.537949026675,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 114.83446833833335,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.27782532662500004,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 27.468020625296663,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 55.263945032950836,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 206.41652274510935,\n \"hasRDI\" : true,\n \"daily\" : 317.5638811463221,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 53.33450087082684,\n \"hasRDI\" : true,\n \"daily\" + : 266.67250435413416,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9446061105250001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 92.97285690135556,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.85723416981323,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 5.835653531145001,\n \"hasRDI\" : true,\n \"daily\" : 1.9452178437150003,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.626080009615,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 1.20957352153,\n \"hasRDI\" + : true,\n \"daily\" : 4.83829408612,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.030597907264000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 184.083713734539,\n \"hasRDI\" : true,\n \"daily\" : 368.167427469078,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1089.07528037,\n \"hasRDI\" : true,\n \"daily\" + : 363.02509345666664,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3253.26610905324,\n \"hasRDI\" : true,\n \"daily\" + : 135.552754543885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.64356556575332,\n \"hasRDI\" : true,\n \"daily\" + : 10.064356556575332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.27029060043336,\n \"hasRDI\" : true,\n \"daily\" + : 52.06757265010834,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2331.2952839060204,\n \"hasRDI\" : true,\n \"daily\" + : 66.60843668302915,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.162471644784867,\n \"hasRDI\" : true,\n \"daily\" + : 45.347064693249266,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.398747546002335,\n \"hasRDI\" : true,\n \"daily\" + : 95.99165030668223,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1752.2969095608,\n \"hasRDI\" : true,\n \"daily\" + : 250.32812993725716,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 256.8901497077,\n \"hasRDI\" : true,\n + \ \"daily\" : 28.54334996752222,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.8164133505958,\n \"hasRDI\" : true,\n \"daily\" : 54.42755670638667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.619992555843,\n \"hasRDI\" : true,\n \"daily\" : 95.29367975547058,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 51.4523313756293,\n \"hasRDI\" : true,\n \"daily\" : 257.2616568781465,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.8701280195141,\n \"hasRDI\" : true,\n \"daily\" : 193.506400975705,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.1517961067,\n \"hasRDI\" : true,\n \"daily\" + : 8.537949026675,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 34.1517961067,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.890068100300001,\n \"hasRDI\" : true,\n \"daily\" + : 114.83446833833335,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.1113013065000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.27782532662500004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.493604125059333,\n \"hasRDI\" : true,\n + \ \"daily\" : 27.468020625296663,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 44.21115602636067,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.263945032950836,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8d50e9e1099d5b52a3dd710706ed873e\",\n + \ \"label\" : \"Chicken Karaage | Japanese Fried Chicken\",\n \"image\" + : \"https://www.edamam.com/web-img/9ad/9adad376e81c021a6543925e0aa834ff.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/86227/recipes-chicken-karaage-japanese.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-karaage-japanese-fried-chicken-8d50e9e1099d5b52a3dd710706ed873e/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"3 tablespoons + grated garlic cloves (from about 8 cloves)\", \"4 teaspoons grated fresh ginger\", + \"1/2 cup soy sauce or tamari, preferably low-sodium\", \"1/4 cup sake\", + \"2 tablespoons granulated sugar\", \"2 teaspoons salt\", \"1 teaspoon freshly + ground black pepper\", \"3 pounds boneless, skinless chicken, preferably dark + meat, cut into 1 1/2-inch pieces\", \"3 large egg whites, lightly beaten\", + \"3/4 cup potato starch\", \"Vegetable oil for deep-frying\" ],\n \"ingredients\" + : [ {\n \"text\" : \"3 tablespoons grated garlic cloves (from about + 8 cloves)\",\n \"weight\" : 25.5\n }, {\n \"text\" : \"4 + teaspoons grated fresh ginger\",\n \"weight\" : 8.0\n }, {\n \"text\" + : \"1/2 cup soy sauce or tamari, preferably low-sodium\",\n \"weight\" + : 127.5\n }, {\n \"text\" : \"1/4 cup sake\",\n \"weight\" + : 58.2\n }, {\n \"text\" : \"2 tablespoons granulated sugar\",\n + \ \"weight\" : 25.2\n }, {\n \"text\" : \"2 teaspoons salt\",\n + \ \"weight\" : 12.0\n }, {\n \"text\" : \"1 teaspoon freshly + ground black pepper\",\n \"weight\" : 2.3\n }, {\n \"text\" + : \"3 pounds boneless, skinless chicken, preferably dark meat, cut into 1 + 1/2-inch pieces\",\n \"weight\" : 1360.77711\n }, {\n \"text\" + : \"3 large egg whites, lightly beaten\",\n \"weight\" : 99.0\n }, + {\n \"text\" : \"3/4 cup potato starch\",\n \"weight\" : 96.0\n + \ }, {\n \"text\" : \"Vegetable oil for deep-frying\",\n \"weight\" + : 24.676888696\n } ],\n \"calories\" : 4885.50189086,\n \"totalWeight\" + : 2074.6486765,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4885.5018908600005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 338.830475491,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 44.946005641615,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 5.489498690055001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 230.254219900015,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 51.21239748117,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 135.688292532,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 3.1614000000000004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 26.76822,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 25.1496,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 318.188636604,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 857.2895793,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 8258.8199169,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 288.61202430000003,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 411.1231931,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 5975.649620300001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 31.595021599,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 75.17912165100002,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 3240.7273287000003,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 27.8365422,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 8.356,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 1.190140688,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 2.9980040870000004,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 69.6698163657,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 8.257281984799999,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 64.6693133,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 64.6693133,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 30.978740397,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3607771100000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 61.847920295,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 24.61825665,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 244.27509454300002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 521.2776546015385,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 224.730028208075,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.229430844,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 12.645600000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 636.377273208,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 285.7631931,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 344.1174965375,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 28.861202430000006,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 102.780798275,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 170.73284629428574,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 175.52789777222222,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 501.1941443400001,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 462.96104695714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 3.092949133333333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 13.926666666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 79.34271253333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 176.35318158823532,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 348.3490818285,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 412.8640992399999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 16.167328325,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 516.31233995,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.34019427750000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 309.23960147500003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 30.772820812499997,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 338.830475491,\n \"hasRDI\" : true,\n \"daily\" : 521.2776546015385,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 44.946005641615,\n \"hasRDI\" : true,\n \"daily\" + : 224.730028208075,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 5.489498690055001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 230.254219900015,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.21239748117,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 135.688292532,\n \"hasRDI\" : true,\n \"daily\" : 45.229430844,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 132.52689253199998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.1614000000000004,\n \"hasRDI\" + : true,\n \"daily\" : 12.645600000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.76822,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 25.1496,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 318.188636604,\n \"hasRDI\" : true,\n \"daily\" : 636.377273208,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 857.2895793,\n \"hasRDI\" : true,\n \"daily\" + : 285.7631931,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 8258.8199169,\n \"hasRDI\" : true,\n \"daily\" + : 344.1174965375,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 288.61202430000003,\n \"hasRDI\" : true,\n \"daily\" + : 28.861202430000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 411.1231931,\n \"hasRDI\" : true,\n \"daily\" + : 102.780798275,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5975.649620300001,\n \"hasRDI\" : true,\n \"daily\" + : 170.73284629428574,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 31.595021599,\n \"hasRDI\" : true,\n \"daily\" + : 175.52789777222222,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 75.17912165100002,\n \"hasRDI\" : true,\n \"daily\" + : 501.1941443400001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3240.7273287000003,\n \"hasRDI\" : true,\n \"daily\" + : 462.96104695714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.8365422,\n \"hasRDI\" : true,\n \"daily\" + : 3.092949133333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 8.356,\n \"hasRDI\" : true,\n \"daily\" + : 13.926666666666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.190140688,\n \"hasRDI\" : true,\n \"daily\" + : 79.34271253333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.9980040870000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 176.35318158823532,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 69.6698163657,\n \"hasRDI\" : true,\n + \ \"daily\" : 348.3490818285,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.257281984799999,\n \"hasRDI\" : true,\n + \ \"daily\" : 412.8640992399999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 64.6693133,\n \"hasRDI\" + : true,\n \"daily\" : 16.167328325,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 64.6693133,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 30.978740397,\n \"hasRDI\" : true,\n \"daily\" + : 516.31233995,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3607771100000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34019427750000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 61.847920295,\n \"hasRDI\" : true,\n \"daily\" + : 309.23960147500003,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : + null,\n \"total\" : 24.61825665,\n \"hasRDI\" : true,\n \"daily\" + : 30.772820812499997,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8d2fbf7d699feb086b56ce0cfbd6ba33\",\n + \ \"label\" : \"Chicken Quinoa\",\n \"image\" : \"https://www.edamam.com/web-img/560/5606f4fb972e0789464fecdc9ca595aa.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/14954-chicken-quinoa\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-quinoa-8d2fbf7d699feb086b56ce0cfbd6ba33/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1.5 cups quinoa\", + \"3 cups broth or water\", \"4 chicken thighs\", \"1 onion or leek\", \"Olive + oil\" ],\n \"ingredients\" : [ {\n \"text\" : \"1.5 cups quinoa\",\n + \ \"weight\" : 255.0\n }, {\n \"text\" : \"3 cups broth + or water\",\n \"weight\" : 681.0\n }, {\n \"text\" : \"4 + chicken thighs\",\n \"weight\" : 596.0\n }, {\n \"text\" + : \"1 onion or leek\",\n \"weight\" : 89.0\n }, {\n \"text\" + : \"Olive oil\",\n \"weight\" : 22.0456\n } ],\n \"calories\" + : 2511.2933218049902,\n \"totalWeight\" : 1643.0456,\n \"totalTime\" + : 29.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2511.2933218049902,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 137.04322160375682,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.880414510136326,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.5066,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 61.73051847062965,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 31.560442012660573,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 178.71509187755157,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 19.739703322203766,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 3.835202471460257,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 136.0068308542417,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 584.08,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 621.5623271646633,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 240.8094899986044,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 643.4160019450799,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2845.340999981333,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 17.852585171004904,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 15.81037540517919,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2137.409469462063,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 237.13782136401016,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 12.566286087916877,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.412716343689388,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.7134411748868574,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 31.904265111457477,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.5343860060843273,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 547.8703622940221,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 547.8703622940221,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.695615756245959,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.5984945374757552,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 11.535768799224167,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 78.06457414846271,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 125.5646660902495,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 210.83572554424128,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 159.40207255068162,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 59.571697292517186,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 78.95881328881507,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 272.0136617084834,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 194.69333333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 25.898430298527636,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 24.08094899986044,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 160.85400048626997,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 81.2954571423238,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 99.18102872780501,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 105.4025027011946,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 305.3442099231519,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 26.34864681822335,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.943810146528126,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 94.18108957929253,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 100.79065734628574,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 159.52132555728738,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 176.71930030421638,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 136.96759057350553,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 61.593595937432646,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.1496236343689388,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 57.67884399612084,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 97.58071768557838,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 137.04322160375682,\n \"hasRDI\" : true,\n \"daily\" : 210.83572554424128,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 31.880414510136326,\n \"hasRDI\" : true,\n + \ \"daily\" : 159.40207255068162,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.5066,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 61.73051847062965,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.560442012660573,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 178.71509187755157,\n \"hasRDI\" : true,\n \"daily\" : 59.571697292517186,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 158.97538855534782,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 19.739703322203766,\n \"hasRDI\" + : true,\n \"daily\" : 78.95881328881507,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 3.835202471460257,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 136.0068308542417,\n \"hasRDI\" : true,\n \"daily\" : 272.0136617084834,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 584.08,\n \"hasRDI\" : true,\n \"daily\" + : 194.69333333333336,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 621.5623271646633,\n \"hasRDI\" : true,\n \"daily\" + : 25.898430298527636,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 240.8094899986044,\n \"hasRDI\" : true,\n \"daily\" + : 24.08094899986044,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 643.4160019450799,\n \"hasRDI\" : true,\n \"daily\" + : 160.85400048626997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2845.340999981333,\n \"hasRDI\" : true,\n \"daily\" + : 81.2954571423238,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.852585171004904,\n \"hasRDI\" : true,\n \"daily\" + : 99.18102872780501,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.81037540517919,\n \"hasRDI\" : true,\n \"daily\" + : 105.4025027011946,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2137.409469462063,\n \"hasRDI\" : true,\n \"daily\" + : 305.3442099231519,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 237.13782136401016,\n \"hasRDI\" : true,\n + \ \"daily\" : 26.34864681822335,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.566286087916877,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.943810146528126,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.412716343689388,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.18108957929253,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.7134411748868574,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.79065734628574,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.904265111457477,\n + \ \"hasRDI\" : true,\n \"daily\" : 159.52132555728738,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.5343860060843273,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.71930030421638,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 547.8703622940221,\n \"hasRDI\" : true,\n \"daily\" : 136.96759057350553,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 547.8703622940221,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.695615756245959,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.593595937432646,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5984945374757552,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.1496236343689388,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.535768799224167,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.67884399612084,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.06457414846271,\n + \ \"hasRDI\" : true,\n \"daily\" : 97.58071768557838,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_95275db8dd842849bcb7c8088d089227\",\n + \ \"label\" : \"Tamborine Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ac7/ac71c5f4314554df5a4a6f685a1a1c9c.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/4467/tamborine-chicken-\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tamborine-chicken-95275db8dd842849bcb7c8088d089227/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 boneless + chicken breasts , skin on\", \"Zest 1 and juice 2 lime , plus lime wedges + to serve\", \"1.0 tsp black peppercorns\", \"3 cm chunk root ginger\", \"1.0 + tbsp soy sauce\" ],\n \"ingredients\" : [ {\n \"text\" : \"4 boneless + chicken breasts , skin on\",\n \"weight\" : 784.0\n }, {\n \"text\" + : \"Zest 1 and juice 2 lime , plus lime wedges to serve\",\n \"weight\" + : 8.375\n }, {\n \"text\" : \"1.0 tsp black peppercorns\",\n \"weight\" + : 2.9\n }, {\n \"text\" : \"3 cm chunk root ginger\",\n \"weight\" + : 45.0\n }, {\n \"text\" : \"1.0 tbsp soy sauce\",\n \"weight\" + : 16.0\n } ],\n \"calories\" : 1739.8715,\n \"totalWeight\" + : 856.275,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1739.8715,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 118.61039000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.9356405,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.76048,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 49.02800224999999,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 25.468128249999996,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 11.522575,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.9962,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 0.9890975,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 148.305335,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 588.0,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1434.2775000000001,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 114.33075,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 193.4515,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n + \ \"label\" : \"Potassium\",\n \"quantity\" : 1785.1934999999999,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.88984,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.606322500000001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1200.4295,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 322.39050000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 17.231125,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.49257449999999997,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.9893949999999999,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 54.058597,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 2.85172025,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.39300000000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.39300000000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4304,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.568,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 2.517585,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.60255,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 86.99357499999999,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 182.4775230769231,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 169.6782025,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.8408583333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 7.9848,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 296.61067,\n \"unit\" : + \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 196.0,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 59.7615625,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 11.433074999999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 48.362875,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 51.00552857142856,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 43.83244444444445,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 70.70881666666668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 171.48992857142858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 35.82116666666667,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 28.718541666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 32.8383,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 58.19970588235294,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 270.292985,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 142.5860125,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.848250000000002,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 40.50666666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.392,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.587925,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 20.753187500000003,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 118.61039000000001,\n \"hasRDI\" + : true,\n \"daily\" : 182.4775230769231,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.9356405,\n \"hasRDI\" : true,\n \"daily\" : 169.6782025,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.76048,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 49.02800224999999,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 25.468128249999996,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 11.522575,\n \"hasRDI\" : true,\n \"daily\" + : 3.8408583333333333,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.526375,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.9962,\n \"hasRDI\" : + true,\n \"daily\" : 7.9848,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.9890975,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 148.305335,\n + \ \"hasRDI\" : true,\n \"daily\" : 296.61067,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 588.0,\n \"hasRDI\" : true,\n \"daily\" : 196.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1434.2775000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7615625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 114.33075,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.433074999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.4515,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.362875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1785.1934999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.00552857142856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 7.88984,\n \"hasRDI\" + : true,\n \"daily\" : 43.83244444444445,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.606322500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.70881666666668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1200.4295,\n \"hasRDI\" : true,\n \"daily\" + : 171.48992857142858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 322.39050000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 35.82116666666667,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 17.231125,\n \"hasRDI\" : true,\n \"daily\" + : 28.718541666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.49257449999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.8383,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9893949999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 58.19970588235294,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 54.058597,\n \"hasRDI\" : true,\n \"daily\" + : 270.292985,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.85172025,\n \"hasRDI\" : true,\n \"daily\" + : 142.5860125,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 55.39300000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 13.848250000000002,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 55.39300000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.4304,\n \"hasRDI\" : true,\n \"daily\" + : 40.50666666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.568,\n \"hasRDI\" : true,\n \"daily\" + : 0.392,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.517585,\n \"hasRDI\" : true,\n \"daily\" : 12.587925,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 16.60255,\n \"hasRDI\" : true,\n \"daily\" : 20.753187500000003,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4caf01683bf99ddc7c08c35774aae54c\",\n + \ \"label\" : \"Persian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8f8/8f810dfe198fa3e520d291f3fcf62bbf.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/7343/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/persian-chicken-4caf01683bf99ddc7c08c35774aae54c/chicken\",\n + \ \"yield\" : 5.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"2 large onions\", \"750 g chicken\", \"500 g mushrooms\", \"1 cup water\", + \"1 cup red wine\", \"2 teaspoons chicken stock\", \"200 ml mayonnaise\", + \"200 ml cream\", \"small bunch of parsley\", \"1 teaspoon curry powder\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 large onions\",\n + \ \"weight\" : 300.0\n }, {\n \"text\" : \"750 g chicken\",\n + \ \"weight\" : 750.0\n }, {\n \"text\" : \"500 g mushrooms\",\n + \ \"weight\" : 500.0\n }, {\n \"text\" : \"1 cup water\",\n + \ \"weight\" : 237.0\n }, {\n \"text\" : \"1 cup red wine\",\n + \ \"weight\" : 147.0\n }, {\n \"text\" : \"2 teaspoons chicken + stock\",\n \"weight\" : 10.0\n }, {\n \"text\" : \"200 + ml mayonnaise\",\n \"weight\" : 195.2759811031433\n }, {\n \"text\" + : \"200 ml cream\",\n \"weight\" : 201.53157530298427\n }, {\n + \ \"text\" : \"small bunch of parsley\",\n \"weight\" : 45.0\n + \ }, {\n \"text\" : \"1 teaspoon curry powder\",\n \"weight\" + : 2.0\n } ],\n \"calories\" : 4040.3437240290473,\n \"totalWeight\" + : 2387.8075564061273,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4040.3437240290473,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 340.63488831152455,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 101.69895025064481,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.7275,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 106.42951848978356,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 118.20076711431523,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 58.09753095095326,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 12.649,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 29.749830950953264,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 164.3585972937112,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 915.0558907953143,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1821.224409580271,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 389.2655239469398,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 287.11721027120893,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 4066.5386814772387,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 13.809659472590896,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 14.217522623196864,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1814.39957668785,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1325.3647744952652,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 105.79318945181791,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0904069465666566,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.314854732833283,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 70.61282731436818,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.689888209578776,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.887756835545372,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.91072102712089,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 5.3415346982116345,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 759.5030104096954,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 202.01718620145238,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 524.0536743254224,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 508.4947512532241,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.365843650317753,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 50.596,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 328.7171945874224,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 305.0186302651048,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 75.88435039917795,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.92655239469398,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 71.77930256780223,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 116.18681947077825,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 76.72033040328276,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 94.78348415464576,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 259.19993952683575,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 147.26275272169613,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 176.32198241969652,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.69379643777711,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.99145487254606,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 353.0641365718409,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 184.4944104789388,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 66.63781575302986,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 48.129280592422866,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.9776802567802225,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 26.70767349105817,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 949.3787630121193,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 340.63488831152455,\n \"hasRDI\" : true,\n \"daily\" : 524.0536743254224,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 101.69895025064481,\n \"hasRDI\" : true,\n + \ \"daily\" : 508.4947512532241,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.42951848978356,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 118.20076711431523,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 58.09753095095326,\n \"hasRDI\" : true,\n \"daily\" : 19.365843650317753,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.448530950953256,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.649,\n \"hasRDI\" : + true,\n \"daily\" : 50.596,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 29.749830950953264,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 164.3585972937112,\n + \ \"hasRDI\" : true,\n \"daily\" : 328.7171945874224,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 915.0558907953143,\n \"hasRDI\" : true,\n \"daily\" : 305.0186302651048,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1821.224409580271,\n \"hasRDI\" : true,\n \"daily\" : 75.88435039917795,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 389.2655239469398,\n \"hasRDI\" : true,\n \"daily\" : 38.92655239469398,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 287.11721027120893,\n \"hasRDI\" : true,\n \"daily\" : 71.77930256780223,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4066.5386814772387,\n \"hasRDI\" : true,\n \"daily\" : 116.18681947077825,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.809659472590896,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.72033040328276,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.217522623196864,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.78348415464576,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1814.39957668785,\n + \ \"hasRDI\" : true,\n \"daily\" : 259.19993952683575,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1325.3647744952652,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.26275272169613,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 105.79318945181791,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.32198241969652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0904069465666566,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.69379643777711,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.314854732833283,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.99145487254606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 70.61282731436818,\n + \ \"hasRDI\" : true,\n \"daily\" : 353.0641365718409,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.689888209578776,\n + \ \"hasRDI\" : true,\n \"daily\" : 184.4944104789388,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : true,\n \"daily\" : 66.63781575302986,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.887756835545372,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.129280592422866,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.91072102712089,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9776802567802225,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.3415346982116345,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.70767349105817,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 759.5030104096954,\n + \ \"hasRDI\" : true,\n \"daily\" : 949.3787630121193,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f9d8edbe2dbafcea624b41c281c835f3\",\n + \ \"label\" : \"Persian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/bd4/bd47ac0557ade02871750518d56ba928.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/7343/persian-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/persian-chicken-f9d8edbe2dbafcea624b41c281c835f3/chicken\",\n + \ \"yield\" : 5.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"2 large onions\", \"750 g chicken\", \"500 g mushrooms\", \"1 cup water\", + \"1 cup red wine\", \"2 tsps chicken stock\", \"200 ml mayonnaise\", \"200 + ml cream\", \"Small bunch of parsley\", \"1 tsp curry powder\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 large onions\",\n \"weight\" : 300.0\n + \ }, {\n \"text\" : \"750 g chicken\",\n \"weight\" : 750.0\n + \ }, {\n \"text\" : \"500 g mushrooms\",\n \"weight\" : + 500.0\n }, {\n \"text\" : \"1 cup water\",\n \"weight\" + : 237.0\n }, {\n \"text\" : \"1 cup red wine\",\n \"weight\" + : 147.0\n }, {\n \"text\" : \"2 tsps chicken stock\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"200 ml mayonnaise\",\n \"weight\" + : 195.2759811031433\n }, {\n \"text\" : \"200 ml cream\",\n \"weight\" + : 201.53157530298427\n }, {\n \"text\" : \"Small bunch of parsley\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tsp curry powder\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 4040.3437240290473,\n + \ \"totalWeight\" : 2387.8075564061273,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 4040.3437240290473,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 340.63488831152455,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 101.69895025064481,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7275,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 106.42951848978356,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 118.20076711431523,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 58.09753095095326,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.649,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 29.749830950953264,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 164.3585972937112,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 915.0558907953143,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1821.224409580271,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 389.2655239469398,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 287.11721027120893,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4066.5386814772387,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 13.809659472590896,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 14.217522623196864,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1814.39957668785,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1325.3647744952652,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 105.79318945181791,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.0904069465666566,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.314854732833283,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 70.61282731436818,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.689888209578776,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.887756835545372,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.91072102712089,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 5.3415346982116345,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 759.5030104096954,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 202.01718620145238,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 524.0536743254224,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 508.4947512532241,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.365843650317753,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 50.596,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 328.7171945874224,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 305.0186302651048,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 75.88435039917795,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.92655239469398,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 71.77930256780223,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 116.18681947077825,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 76.72033040328276,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 94.78348415464576,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 259.19993952683575,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 147.26275272169613,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 176.32198241969652,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.69379643777711,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.99145487254606,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 353.0641365718409,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 184.4944104789388,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 66.63781575302986,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 48.129280592422866,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.9776802567802225,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 26.70767349105817,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 949.3787630121193,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 340.63488831152455,\n \"hasRDI\" : true,\n \"daily\" : 524.0536743254224,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 101.69895025064481,\n \"hasRDI\" : true,\n + \ \"daily\" : 508.4947512532241,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.42951848978356,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 118.20076711431523,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 58.09753095095326,\n \"hasRDI\" : true,\n \"daily\" : 19.365843650317753,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.448530950953256,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.649,\n \"hasRDI\" : + true,\n \"daily\" : 50.596,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 29.749830950953264,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 164.3585972937112,\n + \ \"hasRDI\" : true,\n \"daily\" : 328.7171945874224,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 915.0558907953143,\n \"hasRDI\" : true,\n \"daily\" : 305.0186302651048,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1821.224409580271,\n \"hasRDI\" : true,\n \"daily\" : 75.88435039917795,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 389.2655239469398,\n \"hasRDI\" : true,\n \"daily\" : 38.92655239469398,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 287.11721027120893,\n \"hasRDI\" : true,\n \"daily\" : 71.77930256780223,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4066.5386814772387,\n \"hasRDI\" : true,\n \"daily\" : 116.18681947077825,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.809659472590896,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.72033040328276,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.217522623196864,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.78348415464576,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1814.39957668785,\n + \ \"hasRDI\" : true,\n \"daily\" : 259.19993952683575,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1325.3647744952652,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.26275272169613,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 105.79318945181791,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.32198241969652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0904069465666566,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.69379643777711,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.314854732833283,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.99145487254606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 70.61282731436818,\n + \ \"hasRDI\" : true,\n \"daily\" : 353.0641365718409,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.689888209578776,\n + \ \"hasRDI\" : true,\n \"daily\" : 184.4944104789388,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : true,\n \"daily\" : 66.63781575302986,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.887756835545372,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.129280592422866,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.91072102712089,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9776802567802225,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.3415346982116345,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.70767349105817,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 759.5030104096954,\n + \ \"hasRDI\" : true,\n \"daily\" : 949.3787630121193,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_625f1b85dff4e54668eb60bf20300db5\",\n + \ \"label\" : \"Devilled Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/583/5832a81f9773ad4749048b1b867685af.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3595/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/devilled-chicken-625f1b85dff4e54668eb60bf20300db5/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2.0 tsp white + wine vinegar\", \"4 boneless chicken thighs\", \"a pinch cayenne pepper\", + \"1.0 tsp mustard powder\", \"2.0 tsp tomato purée\", \"baked potato or baked + sweet potato, to serve\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2.0 tsp white wine vinegar\",\n \"weight\" : 10.0\n }, {\n + \ \"text\" : \"4 boneless chicken thighs\",\n \"weight\" : 596.0\n + \ }, {\n \"text\" : \"a pinch cayenne pepper\",\n \"weight\" + : 0.45\n }, {\n \"text\" : \"1.0 tsp mustard powder\",\n \"weight\" + : 5.0\n }, {\n \"text\" : \"2.0 tsp tomato purée\",\n \"weight\" + : 10.416666666666668\n }, {\n \"text\" : \"baked potato or baked + sweet potato, to serve\",\n \"weight\" : 198.73333333333335\n } + ],\n \"calories\" : 1520.1206666666667,\n \"totalWeight\" : 820.6,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1520.1206666666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 99.52054333333332,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 27.059000166666667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.50705,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 41.49306616666666,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 20.859933999999996,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 45.58417833333334,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 5.091183333333334,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 2.7459750000000005,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 104.09880666666666,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 584.08,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 569.0343333333333,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 83.783,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 172.47983333333335,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2371.4655000000002,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.483263333333334,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 8.465626666666667,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1088.1058333333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 151.3901666666667,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.957833333333337,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.5811615,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.9755608333333332,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 30.46403816666667,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.799286,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 71.52350000000001,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 71.52350000000001,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.6952,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.596,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.748156666666667,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 17.276183333333332,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 76.00603333333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 153.10852820512818,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 135.29500083333335,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.194726111111112,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 20.364733333333337,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 208.19761333333332,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 194.69333333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 23.709763888888887,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 8.3783,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 43.11995833333334,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 67.75615714285715,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 36.018129629629634,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 56.437511111111114,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 155.44369047619048,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 16.82112962962963,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 29.929722222222228,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 38.744099999999996,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 57.38593137254901,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 152.32019083333336,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 139.9643,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 17.880875000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 61.586666666666666,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.149,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 8.740783333333336,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 21.595229166666662,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 99.52054333333332,\n \"hasRDI\" : true,\n \"daily\" + : 153.10852820512818,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 27.059000166666667,\n \"hasRDI\" + : true,\n \"daily\" : 135.29500083333335,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.50705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.49306616666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.859933999999996,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 45.58417833333334,\n \"hasRDI\" : true,\n \"daily\" : 15.194726111111112,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 40.49299500000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.091183333333334,\n \"hasRDI\" + : true,\n \"daily\" : 20.364733333333337,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 2.7459750000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 104.09880666666666,\n \"hasRDI\" : true,\n \"daily\" : 208.19761333333332,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 584.08,\n \"hasRDI\" : true,\n \"daily\" + : 194.69333333333336,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 569.0343333333333,\n \"hasRDI\" : true,\n \"daily\" + : 23.709763888888887,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 83.783,\n \"hasRDI\" : true,\n \"daily\" + : 8.3783,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 172.47983333333335,\n \"hasRDI\" : true,\n \"daily\" : 43.11995833333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2371.4655000000002,\n \"hasRDI\" : true,\n \"daily\" : 67.75615714285715,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.483263333333334,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.018129629629634,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.465626666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.437511111111114,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1088.1058333333333,\n + \ \"hasRDI\" : true,\n \"daily\" : 155.44369047619048,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.3901666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.82112962962963,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.957833333333337,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.929722222222228,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5811615,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.744099999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9755608333333332,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.38593137254901,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 30.46403816666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 152.32019083333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.799286,\n + \ \"hasRDI\" : true,\n \"daily\" : 139.9643,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.52350000000001,\n \"hasRDI\" : true,\n \"daily\" : 17.880875000000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.52350000000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.6952,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.586666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.596,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.149,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.748156666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.740783333333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.276183333333332,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.595229166666662,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8092eb8bc92eb615593a0bf3f591a290\",\n + \ \"label\" : \"Sesame Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ffe/ffecc043f9cedcf1cea3a5affd67ddea.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/sesame-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/sesame-chicken-8092eb8bc92eb615593a0bf3f591a290/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ \"Gluten\", + \"Wheat\" ],\n \"ingredientLines\" : [ \"450 grams chicken breast - skinless + boneless (2 small breasts) cut into 1-inch chunks\", \"1 egg white\", \"1 + teaspoon ginger juice\", \"1/4 teaspoon salt\", \"1/8 teaspoon white pepper + - ground\", \"2 tablespoons soy sauce\", \"2 tablespoons sugar - granulated\", + \"2 tablespoons Shaoxing wine\", \"2 teaspoons rice vinegar\", \"1 teaspoon + toasted sesame oil\", \"2 tablespoons potato starch\", \"1 cup sesame seeds + - whole\", \"scallions for garnish\" ],\n \"ingredients\" : [ {\n \"text\" + : \"450 grams chicken breast - skinless boneless (2 small breasts) cut into + 1-inch chunks\",\n \"weight\" : 261.0\n }, {\n \"text\" + : \"1 egg white\",\n \"weight\" : 26.4\n }, {\n \"text\" + : \"1 teaspoon ginger juice\",\n \"weight\" : 2.0\n }, {\n \"text\" + : \"1/4 teaspoon salt\",\n \"weight\" : 1.5\n }, {\n \"text\" + : \"1/8 teaspoon white pepper - ground\",\n \"weight\" : 0.3\n }, + {\n \"text\" : \"2 tablespoons soy sauce\",\n \"weight\" : 32.0\n + \ }, {\n \"text\" : \"2 tablespoons sugar - granulated\",\n \"weight\" + : 25.2\n }, {\n \"text\" : \"2 tablespoons Shaoxing wine\",\n + \ \"weight\" : 29.5\n }, {\n \"text\" : \"2 teaspoons rice + vinegar\",\n \"weight\" : 10.0\n }, {\n \"text\" : \"1 + teaspoon toasted sesame oil\",\n \"weight\" : 4.5\n }, {\n \"text\" + : \"2 tablespoons potato starch\",\n \"weight\" : 16.0\n }, {\n + \ \"text\" : \"1 cup sesame seeds - whole\",\n \"weight\" : 144.0\n + \ } ],\n \"calories\" : 1531.7649999999999,\n \"totalWeight\" + : 550.9,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1531.7649999999999,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 100.42394,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 17.630418,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.27404999999999996,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 38.805827,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 38.43830799999999,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 76.70411,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 17.5106,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 26.16809,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 25.1496,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 85.56195,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 167.04,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1985.4959999999999,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1449.765,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 602.229,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1469.2600000000002,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 23.623400000000004,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 13.59598,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n + \ \"label\" : \"Phosphorus\",\n \"quantity\" : 1426.568,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 62.64,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.163,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.3171270000000002,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.758857,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 33.15652599999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.58901,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 156.20100000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 156.20100000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.91116,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.044,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.1328999999999998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.614,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 76.58825,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 154.49836923076924,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 88.15209,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.568036666666668,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 70.0424,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 171.1239,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 55.68,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 82.72899999999998,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 144.9765,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 150.55725,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.97885714285715,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 131.2411111111111,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 90.63986666666668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 203.79542857142854,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 6.96,\n \"unit\" : \"%\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.27166666666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 87.80846666666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 44.63864705882353,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 165.78262999999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 129.4505,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 39.050250000000005,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 15.186,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.261,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 5.6644999999999985,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.7675,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 100.42394,\n \"hasRDI\" : true,\n \"daily\" : 154.49836923076924,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 17.630418,\n \"hasRDI\" : true,\n \"daily\" + : 88.15209,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.27404999999999996,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 38.805827,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 38.43830799999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 76.70411,\n \"hasRDI\" : true,\n \"daily\" : 25.568036666666668,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.19351,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 17.5106,\n \"hasRDI\" : + true,\n \"daily\" : 70.0424,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 26.16809,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.1496,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 85.56195,\n + \ \"hasRDI\" : true,\n \"daily\" : 171.1239,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 167.04,\n \"hasRDI\" : true,\n \"daily\" : 55.68,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1985.4959999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.72899999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1449.765,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.9765,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 602.229,\n + \ \"hasRDI\" : true,\n \"daily\" : 150.55725,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1469.2600000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.97885714285715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 23.623400000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 131.2411111111111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.59598,\n \"hasRDI\" + : true,\n \"daily\" : 90.63986666666668,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1426.568,\n \"hasRDI\" + : true,\n \"daily\" : 203.79542857142854,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 62.64,\n \"hasRDI\" + : true,\n \"daily\" : 6.96,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.163,\n \"hasRDI\" : true,\n \"daily\" + : 0.27166666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3171270000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 87.80846666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.758857,\n \"hasRDI\" + : true,\n \"daily\" : 44.63864705882353,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 33.15652599999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 165.78262999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.58901,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.4505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 156.20100000000002,\n \"hasRDI\" : true,\n \"daily\" : 39.050250000000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 156.20100000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.91116,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.186,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.044,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.261,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1328999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.6644999999999985,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.614,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7675,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_bda48324db73e0b05e15816a361e3c25\",\n + \ \"label\" : \"Chicken Cacciatore\",\n \"image\" : \"https://www.edamam.com/web-img/844/844767d0693e8c662cf034909e97d799.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/4251/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-cacciatore-bda48324db73e0b05e15816a361e3c25/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"olive oil\", \"1 onion , finely chopped\", + \"a handful basil\", \"4.0 tbsp mascarpone\", \"2 x 400g tins cherry tomatoes\", + \"6 chicken breasts , skin on\", \"2 garlic cloves , crushed\" ],\n \"ingredients\" + : [ {\n \"text\" : \"olive oil\",\n \"weight\" : 29.5936\n }, + {\n \"text\" : \"1 onion , finely chopped\",\n \"weight\" : + 125.0\n }, {\n \"text\" : \"a handful basil\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"4.0 tbsp mascarpone\",\n \"weight\" + : 57.0\n }, {\n \"text\" : \"2 x 400g tins cherry tomatoes\",\n + \ \"weight\" : 800.0\n }, {\n \"text\" : \"6 chicken breasts + , skin on\",\n \"weight\" : 1176.0\n }, {\n \"text\" : + \"2 garlic cloves , crushed\",\n \"weight\" : 6.0\n } ],\n \"calories\" + : 3190.6474240000002,\n \"totalWeight\" : 2205.5936,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3190.6474240000002,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 228.04780000000002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 66.055084288,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.14072,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 100.163056496,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 42.664894528000005,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 47.416500000000006,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.043,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 28.2657,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 231.29070000000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 944.7,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1078.341872,\n \"unit\" : \"mg\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 326.36593600000003,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 350.01,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 4439.555936,\n \"unit\" : \"mg\"\n },\n \"FE\" : + {\n \"label\" : \"Iron\",\n \"quantity\" : 13.87122416,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 17.4356,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2033.2900000000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1058.46,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 141.69799999999998,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.08658,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6839199999999999,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 85.10965,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 5.018649999999999,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 228.92000000000002,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 228.92000000000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 3.7881,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.694,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 12.3857816,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 150.68634720000003,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 159.53237120000003,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 350.84276923076925,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 330.27542144000006,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 15.805500000000002,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 48.172,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 462.5814,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 314.9,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 44.930911333333334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 32.636593600000005,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.5025,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 126.84445531428571,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 77.06235644444445,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 116.23733333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 290.47,\n \"unit\" : + \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 117.60666666666667,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 236.1633333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.43866666666668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 99.05411764705882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 425.54825,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 250.93249999999995,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 57.23,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 63.135,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6735,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 61.928908,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 188.35793400000006,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 228.04780000000002,\n \"hasRDI\" + : true,\n \"daily\" : 350.84276923076925,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 66.055084288,\n \"hasRDI\" : true,\n \"daily\" : 330.27542144000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.14072,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 100.163056496,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 42.664894528000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 47.416500000000006,\n \"hasRDI\" : true,\n \"daily\" + : 15.805500000000002,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 35.37350000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 12.043,\n \"hasRDI\" : true,\n \"daily\" : 48.172,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars\",\n \"tag\" + : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n \"total\" + : 28.2657,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 231.29070000000002,\n \"hasRDI\" : true,\n \"daily\" : 462.5814,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 944.7,\n \"hasRDI\" : true,\n \"daily\" + : 314.9,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1078.341872,\n \"hasRDI\" : true,\n \"daily\" + : 44.930911333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 326.36593600000003,\n \"hasRDI\" : true,\n \"daily\" + : 32.636593600000005,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 350.01,\n \"hasRDI\" : true,\n \"daily\" + : 87.5025,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4439.555936,\n \"hasRDI\" : true,\n \"daily\" : 126.84445531428571,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.87122416,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.06235644444445,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 17.4356,\n \"hasRDI\" + : true,\n \"daily\" : 116.23733333333334,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2033.2900000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 290.47,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1058.46,\n + \ \"hasRDI\" : true,\n \"daily\" : 117.60666666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 141.69799999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 236.1633333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.08658,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.43866666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.6839199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 99.05411764705882,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.10965,\n + \ \"hasRDI\" : true,\n \"daily\" : 425.54825,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.018649999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 250.93249999999995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 228.92000000000002,\n \"hasRDI\" : true,\n \"daily\" : 57.23,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 228.92000000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.7881,\n + \ \"hasRDI\" : true,\n \"daily\" : 63.135,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.694,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6735,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.3857816,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.928908,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 150.68634720000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.35793400000006,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8bb8d39c26e754d54b024d7863da18dc\",\n + \ \"label\" : \"Chicken and Dumplings\",\n \"image\" : \"https://www.edamam.com/web-img/51e/51ec6da33b8078114bf995d4b5d2a682.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/11995-chicken-and-dumplings\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-and-dumplings-8bb8d39c26e754d54b024d7863da18dc/chicken\",\n + \ \"yield\" : 16.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Soy\" ],\n \"ingredientLines\" : [ \"1 whole + chicken\", \"6 cups flour\", \"1 1/2 cup self-rising flour\", \"3/4 cups shortening\", + \"3 cups whole milk\" ],\n \"ingredients\" : [ {\n \"text\" : + \"1 whole chicken\",\n \"weight\" : 920.0\n }, {\n \"text\" + : \"6 cups flour\",\n \"weight\" : 750.0\n }, {\n \"text\" + : \"1 1/2 cup self-rising flour\",\n \"weight\" : 187.5\n }, {\n + \ \"text\" : \"3/4 cups shortening\",\n \"weight\" : 153.75\n + \ }, {\n \"text\" : \"3 cups whole milk\",\n \"weight\" + : 732.0\n } ],\n \"calories\" : 7177.42,\n \"totalWeight\" + : 2743.25,\n \"totalTime\" : 92.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 7177.42,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 325.214625,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 93.1618,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 21.13205,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 127.48906500000001,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 78.20878750000001,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 746.6235,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 25.3125,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 39.4035,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 290.19675,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 763.2000000000002,\n \"unit\" : \"mg\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 3216.785,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 1676.1475,\n \"unit\" : + \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 457.825,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 3740.04,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n + \ \"label\" : \"Iron\",\n \"quantity\" : 26.138475,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 21.172900000000002,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3892.905,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 713.9200000000001,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 14.720000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 3.08322,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.41733,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 83.53068000000002,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.9088075,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 862.4250000000001,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 358.05,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 296.25,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 6.146000000000001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 11.356,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 13.241025,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 100.60350000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 358.871,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 500.33019230769236,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 465.809,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 248.8745,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 101.25,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 580.3935,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 254.40000000000006,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 134.03270833333335,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 167.61475,\n \"unit\" : + \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 114.45625,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 106.85828571428571,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 145.21375,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 141.1526666666667,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 556.1292857142857,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 79.32444444444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 24.53333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 205.548,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 201.0194117647059,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 417.65340000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 195.440375,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 215.60625,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 102.43333333333335,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.839,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 66.205125,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 125.75437500000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 325.214625,\n \"hasRDI\" : true,\n \"daily\" : 500.33019230769236,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 93.1618,\n \"hasRDI\" : true,\n \"daily\" + : 465.809,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 21.13205,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 127.48906500000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.20878750000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 746.6235,\n \"hasRDI\" : true,\n \"daily\" : 248.8745,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 721.311,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 25.3125,\n \"hasRDI\" : true,\n \"daily\" + : 101.25,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 39.4035,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 290.19675,\n + \ \"hasRDI\" : true,\n \"daily\" : 580.3935,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 763.2000000000002,\n \"hasRDI\" : true,\n \"daily\" : 254.40000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3216.785,\n \"hasRDI\" : true,\n \"daily\" : 134.03270833333335,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1676.1475,\n \"hasRDI\" : true,\n \"daily\" : 167.61475,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 457.825,\n \"hasRDI\" : true,\n \"daily\" : 114.45625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3740.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 106.85828571428571,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 26.138475,\n \"hasRDI\" + : true,\n \"daily\" : 145.21375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.172900000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 141.1526666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3892.905,\n \"hasRDI\" : true,\n \"daily\" + : 556.1292857142857,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 713.9200000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 79.32444444444444,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.720000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.53333333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.08322,\n \"hasRDI\" : true,\n \"daily\" + : 205.548,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin + (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.41733,\n \"hasRDI\" : true,\n \"daily\" : 201.0194117647059,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 83.53068000000002,\n \"hasRDI\" : true,\n \"daily\" : 417.65340000000003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.9088075,\n \"hasRDI\" : true,\n \"daily\" : 195.440375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 862.4250000000001,\n \"hasRDI\" : true,\n \"daily\" + : 215.60625,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 358.05,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 296.25,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.146000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 102.43333333333335,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 11.356,\n \"hasRDI\" : true,\n \"daily\" + : 2.839,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 13.241025,\n \"hasRDI\" : true,\n \"daily\" : 66.205125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 100.60350000000001,\n \"hasRDI\" : true,\n \"daily\" : 125.75437500000001,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f65924d9921fbd3a11a45b82d3765b79\",\n + \ \"label\" : \"Poppy-seed crusted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/369/369b1ba45563c30b2029ddc4eb4de3a5.png\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/6274-poppy-seed-crusted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/poppy-seed-crusted-chicken-f65924d9921fbd3a11a45b82d3765b79/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 filleted + chicken breasts\", \"2-3 tablespoons vegetable oil, to shallow fry\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"4 filleted chicken breasts\",\n + \ \"weight\" : 696.0\n }, {\n \"text\" : \"2-3 tablespoons + vegetable oil, to shallow fry\",\n \"weight\" : 35.0\n } ],\n + \ \"calories\" : 1506.52,\n \"totalWeight\" : 731.0,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1506.52,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 99.38,\n \"unit\" : \"g\"\n },\n \"FASAT\" : {\n + \ \"label\" : \"Saturated\",\n \"quantity\" : 20.792450000000002,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.99925,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 51.78405,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 19.6259,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 145.116,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 445.44,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 438.48,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 76.56,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 174.0,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1531.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.1504,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.5680000000000005,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 1211.04,\n \"unit\" : \"mg\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 167.04,\n \"unit\" : \"µg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.43848,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.5916,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 68.95967999999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.6888,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 27.84,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 27.84,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 2.3664,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 2.7840000000000003,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 9.509200000000002,\n \"unit\" : \"mg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 75.326,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 152.8923076923077,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 103.96225000000001,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 290.232,\n \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 148.48,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 18.27,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 7.656,\n \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 43.5,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 43.74857142857143,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 28.613333333333337,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 37.120000000000005,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 173.00571428571428,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 18.56,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 29.232,\n \"unit\" : \"%\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 34.800000000000004,\n + \ \"unit\" : \"%\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 344.79839999999996,\n \"unit\" + : \"%\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 184.44,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 6.96,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 39.440000000000005,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6960000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 47.54600000000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 99.38,\n \"hasRDI\" : true,\n \"daily\" : 152.8923076923077,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 20.792450000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 103.96225000000001,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.99925,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.78405,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 19.6259,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n \"tag\" + : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars\",\n \"tag\" + : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 145.116,\n \"hasRDI\" : true,\n \"daily\" : 290.232,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 445.44,\n \"hasRDI\" : true,\n \"daily\" : 148.48,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 438.48,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.27,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.56,\n \"hasRDI\" + : true,\n \"daily\" : 7.656,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 174.0,\n \"hasRDI\" : true,\n \"daily\" + : 43.5,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1531.2,\n \"hasRDI\" : true,\n \"daily\" : 43.74857142857143,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.1504,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.613333333333337,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.5680000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.120000000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1211.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 173.00571428571428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 167.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.56,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" : + \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.43848,\n \"hasRDI\" : true,\n \"daily\" + : 29.232,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin + (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.5916,\n \"hasRDI\" : true,\n \"daily\" : 34.800000000000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 68.95967999999999,\n \"hasRDI\" : true,\n \"daily\" : 344.79839999999996,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.6888,\n \"hasRDI\" : true,\n \"daily\" : 184.44,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 27.84,\n \"hasRDI\" : true,\n \"daily\" : 6.96,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.84,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.3664,\n \"hasRDI\" : true,\n \"daily\" + : 39.440000000000005,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.7840000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.6960000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 9.509200000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.54600000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : + false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_76273bfe3782862d768d91c888893310\",\n + \ \"label\" : \"Spanish Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/405/405dae6b8f22f7e5fdf79a73b2b39315.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/12696/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/spanish-chicken-76273bfe3782862d768d91c888893310/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"zest and juice 1 lemon\", \"3 onions + , thinly sliced\", \"150.0ml stock\", \"2.0 tsp paprika\", \"8 chicken thighs + , skin on and bone in\", \"1.0 tbsp olive oil\", \"good handful parsley , + roughly chopped\" ],\n \"ingredients\" : [ {\n \"text\" : \"zest + and juice 1 lemon\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"3 onions , thinly sliced\",\n \"weight\" : 375.0\n }, {\n + \ \"text\" : \"150.0ml stock\",\n \"weight\" : 152.1631021582935\n + \ }, {\n \"text\" : \"2.0 tsp paprika\",\n \"weight\" : + 4.6\n }, {\n \"text\" : \"8 chicken thighs , skin on and bone + in\",\n \"weight\" : 1192.0\n }, {\n \"text\" : \"1.0 tbsp + olive oil\",\n \"weight\" : 13.5\n }, {\n \"text\" : \"good + handful parsley , roughly chopped\",\n \"weight\" : 15.0\n } ],\n + \ \"calories\" : 2993.630716776986,\n \"totalWeight\" : 1810.2631021582933,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2993.630716776986,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.57759722589952,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 56.57696355792812,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.0132,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 93.63747425456127,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 43.562558407597166,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 52.21499750618776,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 10.0994,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 20.35731701410104,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 206.611850174389,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1172.7248930647488,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1211.0712360863597,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 220.7038930647488,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 278.47452408633177,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3407.106257266208,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 11.538682514532416,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 16.621808343021613,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2053.6980375827393,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 452.70963102158294,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 78.78572620431659,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.1471970857554026,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.0418686368345496,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 58.692973538187374,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.837445492316559,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 146.05215510791467,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 146.05215510791467,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.3904,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.192,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 6.099198930647488,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 284.65712620431657,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 149.6815358388493,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 330.11938034753774,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 282.8848177896406,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 17.40499916872925,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.3976,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 413.223700348778,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 390.9082976882496,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.46130150359832,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.07038930647488,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.61863102158294,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 97.3458930647488,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.10379174740231,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 110.81205562014408,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 293.3854339403913,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 50.30107011350921,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 131.309543673861,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 76.47980571702684,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 120.10991981379703,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 293.46486769093684,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 241.87227461582793,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 36.51303877697867,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 123.17333333333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.298,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 30.495994653237442,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 355.8214077553957,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 214.57759722589952,\n \"hasRDI\" + : true,\n \"daily\" : 330.11938034753774,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 56.57696355792812,\n \"hasRDI\" : true,\n \"daily\" : + 282.8848177896406,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.0132,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 93.63747425456127,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.562558407597166,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 52.21499750618776,\n \"hasRDI\" : true,\n \"daily\" : 17.40499916872925,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 42.115597506187754,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.0994,\n \"hasRDI\" + : true,\n \"daily\" : 40.3976,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 20.35731701410104,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 206.611850174389,\n + \ \"hasRDI\" : true,\n \"daily\" : 413.223700348778,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1172.7248930647488,\n \"hasRDI\" : true,\n \"daily\" : 390.9082976882496,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1211.0712360863597,\n \"hasRDI\" : true,\n \"daily\" : 50.46130150359832,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 220.7038930647488,\n \"hasRDI\" : true,\n \"daily\" : 22.07038930647488,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 278.47452408633177,\n \"hasRDI\" : true,\n \"daily\" : 69.61863102158294,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3407.106257266208,\n \"hasRDI\" : true,\n \"daily\" : 97.3458930647488,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.538682514532416,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.10379174740231,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.621808343021613,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.81205562014408,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2053.6980375827393,\n + \ \"hasRDI\" : true,\n \"daily\" : 293.3854339403913,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 452.70963102158294,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.30107011350921,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.78572620431659,\n + \ \"hasRDI\" : true,\n \"daily\" : 131.309543673861,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1471970857554026,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.47980571702684,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0418686368345496,\n + \ \"hasRDI\" : true,\n \"daily\" : 120.10991981379703,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.692973538187374,\n + \ \"hasRDI\" : true,\n \"daily\" : 293.46486769093684,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.837445492316559,\n + \ \"hasRDI\" : true,\n \"daily\" : 241.87227461582793,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 146.05215510791467,\n \"hasRDI\" : true,\n \"daily\" : 36.51303877697867,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 146.05215510791467,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.3904,\n + \ \"hasRDI\" : true,\n \"daily\" : 123.17333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.192,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.298,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.099198930647488,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.495994653237442,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 284.65712620431657,\n + \ \"hasRDI\" : true,\n \"daily\" : 355.8214077553957,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e33f20984ebf3b5512a0554bfb7f7daf\",\n + \ \"label\" : \"Chicken Heart Yakitori Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/ab1/ab17ff28aa19992832333bb9f931db35.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/05/chicken-heart-yakitori-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-heart-yakitori-recipe-e33f20984ebf3b5512a0554bfb7f7daf/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 pound chicken hearts\", \"For the + sauce:\", \"2 chicken carcasses cut into 6 to 8 pieces\", \"1 cup sake\", + \"1 cup mirin\", \"1 to 1/2 cups soy sauce, depending on darkness\", \"3 tablespoons + sugar\", \"Freshly ground black pepper\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"1 pound chicken hearts\",\n \"weight\" : 453.59237\n + \ }, {\n \"text\" : \"2 chicken carcasses cut into 6 to 8 pieces\",\n + \ \"weight\" : 1000.0\n }, {\n \"text\" : \"1 cup sake\",\n + \ \"weight\" : 232.8\n }, {\n \"text\" : \"1 cup mirin\",\n + \ \"weight\" : 232.8\n }, {\n \"text\" : \"1 to 1/2 cups + soy sauce, depending on darkness\",\n \"weight\" : 255.0\n }, + {\n \"text\" : \"3 tablespoons sugar\",\n \"weight\" : 37.8\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 6.63597711\n } ],\n \"calories\" : 4805.9926286461005,\n \"totalWeight\" + : 2218.62834711,\n \"totalTime\" : 30.0,\n \"totalNutrients\" : + {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4805.9926286461005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 331.390000974786,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 95.7440798433712,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 133.5235790398429,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 74.4292302785578,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 81.108153188845,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.7189022088300003,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 38.786870253504,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 37.724399999999996,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 234.808091556729,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 1406.8856232,\n \"unit\" : \"mg\"\n },\n \"NA\" : + {\n \"label\" : \"Sodium\",\n \"quantity\" : 14993.825549222001,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 321.6364629973,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 446.0223763581,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 3552.9207069919,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 41.260458629381,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 44.886105310609004,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 2394.5793387338003,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 792.6150271197,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.514955840000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2907772576788001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 4.902029212398,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 76.1745646454673,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.9296432253901004,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 423.4146225087,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 423.4146225087,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 35.566883773,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 3.7690141619440003,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 34.86309452907,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 240.29963143230503,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 509.83077073044,\n \"unit\" : \"%\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 478.720399216856,\n \"unit\" : \"%\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 27.03605106294833,\n + \ \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 14.875608835320001,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 469.616183113458,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 468.9618744,\n \"unit\" : \"%\"\n },\n \"NA\" : {\n + \ \"label\" : \"Sodium\",\n \"quantity\" : 624.7427312175834,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 32.16364629973,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 111.505594089525,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 101.51202019976856,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 229.2247701632278,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 299.2407020707267,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 342.0827626762572,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 88.06833634663333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 50.858259733333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 86.05181717858669,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 288.3546595528236,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 380.8728232273365,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.482161269505,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 105.85365562717499,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 592.7813962166666,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 18.845070809720003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 43.578868161337496,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 331.390000974786,\n \"hasRDI\" : true,\n \"daily\" : 509.83077073044,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 95.7440798433712,\n \"hasRDI\" : true,\n \"daily\" + : 478.720399216856,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.0,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 133.5235790398429,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 74.4292302785578,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 81.108153188845,\n \"hasRDI\" : true,\n \"daily\" : 27.03605106294833,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 77.38925098001499,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.7189022088300003,\n \"hasRDI\" + : true,\n \"daily\" : 14.875608835320001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 38.786870253504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 37.724399999999996,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 234.808091556729,\n \"hasRDI\" + : true,\n \"daily\" : 469.616183113458,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1406.8856232,\n + \ \"hasRDI\" : true,\n \"daily\" : 468.9618744,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 14993.825549222001,\n + \ \"hasRDI\" : true,\n \"daily\" : 624.7427312175834,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 321.6364629973,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.16364629973,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 446.0223763581,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.505594089525,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3552.9207069919,\n + \ \"hasRDI\" : true,\n \"daily\" : 101.51202019976856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.260458629381,\n \"hasRDI\" + : true,\n \"daily\" : 229.2247701632278,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 44.886105310609004,\n \"hasRDI\" : true,\n + \ \"daily\" : 299.2407020707267,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2394.5793387338003,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.0827626762572,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 792.6150271197,\n \"hasRDI\" : true,\n + \ \"daily\" : 88.06833634663333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 30.514955840000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 50.858259733333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2907772576788001,\n \"hasRDI\" : true,\n + \ \"daily\" : 86.05181717858669,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.902029212398,\n \"hasRDI\" + : true,\n \"daily\" : 288.3546595528236,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.1745646454673,\n + \ \"hasRDI\" : true,\n \"daily\" : 380.8728232273365,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9296432253901004,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.482161269505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 423.4146225087,\n \"hasRDI\" : true,\n \"daily\" : 105.85365562717499,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 423.4146225087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.566883773,\n + \ \"hasRDI\" : true,\n \"daily\" : 592.7813962166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.7690141619440003,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.845070809720003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.86309452907,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.578868161337496,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1ddfbba4f8e369fce49b4cd7a823fef1\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a59/a598a747f41caf304543534e5d6a560a.jpeg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Roast-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-1ddfbba4f8e369fce49b4cd7a823fef1/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 oz. good + butter at room temperature\", \"1 4-lb. free-range chicken\", \"Salt and pepper\", + \"1 lemon\", \"Several sprigs of thyme or tarragon, or a mixture of the two\", + \"1 garlic clove, peeled and crushed\" ],\n \"ingredients\" : [ {\n \"text\" + : \"4 oz. good butter at room temperature\",\n \"weight\" : 113.3980925\n + \ }, {\n \"text\" : \"1 4-lb. free-range chicken\",\n \"weight\" + : 1814.36948\n }, {\n \"text\" : \"Salt and pepper\",\n \"weight\" + : 12.022605435000001\n }, {\n \"text\" : \"Salt and pepper\",\n + \ \"weight\" : 6.0113027175000004\n }, {\n \"text\" : \"1 + lemon\",\n \"weight\" : 58.0\n }, {\n \"text\" : \"Several + sprigs of thyme or tarragon, or a mixture of the two\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"1 garlic clove, peeled and crushed\",\n + \ \"weight\" : 3.0\n } ],\n \"calories\" : 3517.200872805925,\n + \ \"totalWeight\" : 2019.566182755408,\n \"totalTime\" : 120.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3517.200872805925,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 278.42011100318047,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 111.60489020906759,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 4.913947581158,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 100.88802232686733,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 43.50039801461565,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 13.97716694334125,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.3078595875275,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.586511192892,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 232.73270996899825,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1169.134333675,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4673.700578740793,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 273.16940415162287,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 288.78941185230406,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2623.136395614608,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 14.759116444844345,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 16.686883420966158,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1880.12713270165,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1319.3922154577251,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 75.4313399424,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7888248593999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6154511920215,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 84.37771885657503,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 4.474744196082924,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 91.67013902097499,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 91.67013902097499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.01746762109,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.1685138803,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 6.484067033462,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 36.3359377195475,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 175.86004364029623,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 428.33863231258533,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 558.024451045338,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.659055647780417,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.23143835011,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 465.4654199379965,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 389.71144455833337,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 194.73752411419972,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 27.31694041516229,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 72.19735296307601,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.94675416041736,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.99509136024636,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 111.24588947310772,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 268.58959038595,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 146.59913505085834,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 125.718899904,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.58832395999334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 95.02654070714706,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 421.88859428287515,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 223.73720980414623,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.917534755243747,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 66.95779368483333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.042128470075,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 32.42033516731,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 45.41992214943438,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 278.42011100318047,\n \"hasRDI\" + : true,\n \"daily\" : 428.33863231258533,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 111.60489020906759,\n \"hasRDI\" : true,\n \"daily\" : + 558.024451045338,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 4.913947581158,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 100.88802232686733,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.50039801461565,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.97716694334125,\n \"hasRDI\" : true,\n \"daily\" : 4.659055647780417,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.66930735581375,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 5.3078595875275,\n \"hasRDI\" + : true,\n \"daily\" : 21.23143835011,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.586511192892,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 232.73270996899825,\n \"hasRDI\" : true,\n \"daily\" : 465.4654199379965,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1169.134333675,\n \"hasRDI\" : true,\n \"daily\" + : 389.71144455833337,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4673.700578740793,\n \"hasRDI\" : true,\n \"daily\" + : 194.73752411419972,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 273.16940415162287,\n \"hasRDI\" : true,\n \"daily\" + : 27.31694041516229,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 288.78941185230406,\n \"hasRDI\" : true,\n \"daily\" + : 72.19735296307601,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2623.136395614608,\n \"hasRDI\" : true,\n \"daily\" + : 74.94675416041736,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.759116444844345,\n \"hasRDI\" : true,\n \"daily\" + : 81.99509136024636,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.686883420966158,\n \"hasRDI\" : true,\n \"daily\" + : 111.24588947310772,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1880.12713270165,\n \"hasRDI\" : true,\n \"daily\" + : 268.58959038595,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1319.3922154577251,\n \"hasRDI\" : true,\n + \ \"daily\" : 146.59913505085834,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 75.4313399424,\n \"hasRDI\" : true,\n + \ \"daily\" : 125.718899904,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7888248593999,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.58832395999334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.6154511920215,\n \"hasRDI\" + : true,\n \"daily\" : 95.02654070714706,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 84.37771885657503,\n + \ \"hasRDI\" : true,\n \"daily\" : 421.88859428287515,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474744196082924,\n + \ \"hasRDI\" : true,\n \"daily\" : 223.73720980414623,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.67013902097499,\n \"hasRDI\" : true,\n \"daily\" : 22.917534755243747,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.67013902097499,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.01746762109,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.95779368483333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1685138803,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.042128470075,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.484067033462,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.42033516731,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 36.3359377195475,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.41992214943438,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c092e92ee9dc18c7ee8131c368dffebf\",\n + \ \"label\" : \"Cashew Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ab9/ab990d203b2ca1d0b200afda79187ba2.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/43864/recipes-cashew-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cashew-chicken-c092e92ee9dc18c7ee8131c368dffebf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"1 pound skinless, boneless chicken thighs, cut into 1/2-inch cubes\", + \"1 tablespoon minced garlic\", \"2 teaspoons soy sauce (regular or dark)\", + \"1 1/2 teaspoons cornstarch\", \"1 teaspoon plus 2 tablespoons Shao Hsing + rice wine or dry sherry\", \"3/4 teaspoon salt\", \"1/8 teaspoon sugar\", + \"1/4 cup chicken broth\", \"2 tablespoons peanut or vegetable oil (use only + oils with a high smoke point, such as grapeseed)\", \"2 tablespoons minced + ginger\", \"1/2 cup sugar snap peas, strings removed, pods left whole\", \"1/2 + cup carrots, sliced 1/4 inch thick\", \"1/2 cup celery, sliced 1/4 inch thick\", + \"1/2 cup unsalted cashews (if using raw cashews, toast them in a dry skillet + for a minute or two prior to tossing them into the stir-fry)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 pound skinless, boneless chicken thighs, cut + into 1/2-inch cubes\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1 tablespoon minced garlic\",\n \"weight\" : 8.5\n }, {\n + \ \"text\" : \"2 teaspoons soy sauce (regular or dark)\",\n \"weight\" + : 10.6\n }, {\n \"text\" : \"1 1/2 teaspoons cornstarch\",\n \"weight\" + : 3.9000000000000004\n }, {\n \"text\" : \"1 teaspoon plus 2 tablespoons + Shao Hsing rice wine or dry sherry\",\n \"weight\" : 4.8500000000000005\n + \ }, {\n \"text\" : \"1 teaspoon plus 2 tablespoons Shao Hsing + rice wine or dry sherry\",\n \"weight\" : 29.8\n }, {\n \"text\" + : \"3/4 teaspoon salt\",\n \"weight\" : 4.5\n }, {\n \"text\" + : \"1/8 teaspoon sugar\",\n \"weight\" : 0.525\n }, {\n \"text\" + : \"1/4 cup chicken broth\",\n \"weight\" : 60.0\n }, {\n \"text\" + : \"2 tablespoons peanut or vegetable oil (use only oils with a high smoke + point, such as grapeseed)\",\n \"weight\" : 28.0\n }, {\n \"text\" + : \"2 tablespoons minced ginger\",\n \"weight\" : 12.0\n }, {\n + \ \"text\" : \"1/2 cup sugar snap peas, strings removed, pods left whole\",\n + \ \"weight\" : 49.0\n }, {\n \"text\" : \"1/2 cup carrots, + sliced 1/4 inch thick\",\n \"weight\" : 61.0\n }, {\n \"text\" + : \"1/2 cup celery, sliced 1/4 inch thick\",\n \"weight\" : 50.5\n + \ }, {\n \"text\" : \"1/2 cup unsalted cashews (if using raw cashews, + toast them in a dry skillet for a minute or two prior to tossing them into + the stir-fry)\",\n \"weight\" : 113.4\n } ],\n \"calories\" + : 2043.5358877,\n \"totalWeight\" : 888.0462896704877,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2043.5358877,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 154.31271265700002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.465024818800007,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6003135145000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 79.03614547800001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 29.760890467900005,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 59.81259592500001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 8.0706,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 14.03339,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 0.52395,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 101.19991952400002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 446.32052260000006,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2059.6017555876,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 160.09915662091706,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 457.15841579670496,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2300.2437483736394,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.52004105091261,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 13.077532992670488,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1497.5090209000005,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 651.8462450999999,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 38.503499999999995,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9796674301000001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.9088656865,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 24.570861112500005,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.4232565239,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 98.3667711,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 98.3667711,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 2.8122726940000002,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.4535923700000001,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 8.863193977000002,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 83.56983977000002,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 102.17679438500001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 237.40417331846155,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 157.32512409400005,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.937531975000006,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 32.2824,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 202.39983904800002,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 148.77350753333334,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 85.81673981615,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 16.009915662091707,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 114.28960394917624,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.72124995353256,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 69.55578361618116,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 87.18355328446992,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 213.9298601285715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.42736056666666,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 64.17249999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 65.31116200666668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 53.46268744117647,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 122.85430556250003,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 121.16282619500001,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 24.591692775,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 46.871211566666666,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.11339809250000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.31596988500001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 104.46229971250003,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 154.31271265700002,\n \"hasRDI\" : true,\n \"daily\" + : 237.40417331846155,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 31.465024818800007,\n \"hasRDI\" + : true,\n \"daily\" : 157.32512409400005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6003135145000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.03614547800001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.760890467900005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 59.81259592500001,\n \"hasRDI\" : true,\n \"daily\" : 19.937531975000006,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 51.74199592500001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 8.0706,\n \"hasRDI\" : + true,\n \"daily\" : 32.2824,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 14.03339,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.52395,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 101.19991952400002,\n + \ \"hasRDI\" : true,\n \"daily\" : 202.39983904800002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 446.32052260000006,\n \"hasRDI\" : true,\n \"daily\" : 148.77350753333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2059.6017555876,\n \"hasRDI\" : true,\n \"daily\" : 85.81673981615,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.09915662091706,\n \"hasRDI\" : true,\n \"daily\" : 16.009915662091707,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 457.15841579670496,\n \"hasRDI\" : true,\n \"daily\" : 114.28960394917624,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2300.2437483736394,\n \"hasRDI\" : true,\n \"daily\" : 65.72124995353256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.52004105091261,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.55578361618116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.077532992670488,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.18355328446992,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1497.5090209000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 213.9298601285715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 651.8462450999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.42736056666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.503499999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.17249999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9796674301000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.31116200666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9088656865,\n + \ \"hasRDI\" : true,\n \"daily\" : 53.46268744117647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.570861112500005,\n + \ \"hasRDI\" : true,\n \"daily\" : 122.85430556250003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4232565239,\n + \ \"hasRDI\" : true,\n \"daily\" : 121.16282619500001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.3667711,\n \"hasRDI\" : true,\n \"daily\" : 24.591692775,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.3667711,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8122726940000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.871211566666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.4535923700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.863193977000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.31596988500001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.56983977000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.46229971250003,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_5ae389774e0e71e2a62a7d46907051a8\",\n + \ \"label\" : \"Grilled Roasted Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/cce/cce4003fbcb69816e2fcf210ef0f9b53.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/5449/recipes-grilled-roasted-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/grilled-roasted-chicken-recipe-5ae389774e0e71e2a62a7d46907051a8/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 tablespoon + smoked paprika, or regular paprika\", \"1 tablespoon chili powder\", \"2 teaspoons + coarse salt (kosher or sea salt)\", \"2 teaspoons freshly milled pepper\", + \"One 3 1/4 to 3 1/2 pounds plump chicken\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1 tablespoon smoked paprika, or regular paprika\",\n + \ \"weight\" : 6.8\n }, {\n \"text\" : \"1 tablespoon chili + powder\",\n \"weight\" : 8.0\n }, {\n \"text\" : \"2 teaspoons + coarse salt (kosher or sea salt)\",\n \"weight\" : 9.708333333333334\n + \ }, {\n \"text\" : \"2 teaspoons freshly milled pepper\",\n \"weight\" + : 6.208333333333334\n }, {\n \"text\" : \"One 3 1/4 to 3 1/2 pounds + plump chicken\",\n \"weight\" : 453.59237\n } ],\n \"calories\" + : 1018.2012621666668,\n \"totalWeight\" : 476.0248984274755,\n \"totalTime\" + : 165.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1018.2012621666668,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 70.34048508866667,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 19.89591198033333,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.4399845989000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 28.67680055466667,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 15.823450717666669,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 7.935386666666667,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.262741666666666,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.4273200000000001,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 86.45989248666669,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 340.19427750000006,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1103.6744435876,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 92.82980085592745,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 115.37754928427478,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1179.3080982408649,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 6.929659507144003,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 6.589995075427477,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 713.3744505666667,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 473.2143717,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.366177920000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.31813417200000005,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.7048891773333334,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 32.490697083700006,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.9145879616666668,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 33.408375533333334,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 33.408375533333334,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.4061363470000001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.413747943333333,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 21.179702216666666,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 50.91006310833333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 108.21613090564102,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 99.47955990166665,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 2.645128888888889,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.050966666666664,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 172.91978497333338,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 113.3980925,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 45.986435149483334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.282980085592744,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 28.844387321068695,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 33.69451709259614,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 38.49810837302224,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 43.933300502849846,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 101.91063579523811,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 52.57937463333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.610296533333337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 21.2089448,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 41.46406925490197,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 162.45348541850004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 95.72939808333334,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 8.352093883333334,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 23.435605783333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.22679618500000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 32.06873971666666,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 26.47462777083333,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 70.34048508866667,\n \"hasRDI\" : true,\n \"daily\" : 108.21613090564102,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 19.89591198033333,\n \"hasRDI\" : true,\n \"daily\" + : 99.47955990166665,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.4399845989000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 28.67680055466667,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.823450717666669,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.935386666666667,\n \"hasRDI\" : true,\n \"daily\" : 2.645128888888889,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.672645000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.262741666666666,\n \"hasRDI\" + : true,\n \"daily\" : 21.050966666666664,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.4273200000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 86.45989248666669,\n \"hasRDI\" : true,\n \"daily\" : 172.91978497333338,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 340.19427750000006,\n \"hasRDI\" : true,\n \"daily\" + : 113.3980925,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1103.6744435876,\n \"hasRDI\" : true,\n \"daily\" + : 45.986435149483334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 92.82980085592745,\n \"hasRDI\" : true,\n \"daily\" + : 9.282980085592744,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 115.37754928427478,\n \"hasRDI\" : true,\n \"daily\" + : 28.844387321068695,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1179.3080982408649,\n \"hasRDI\" : true,\n \"daily\" + : 33.69451709259614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.929659507144003,\n \"hasRDI\" : true,\n \"daily\" + : 38.49810837302224,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.589995075427477,\n \"hasRDI\" : true,\n \"daily\" + : 43.933300502849846,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 713.3744505666667,\n \"hasRDI\" : true,\n \"daily\" + : 101.91063579523811,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 473.2143717,\n \"hasRDI\" : true,\n \"daily\" + : 52.57937463333334,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 12.366177920000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.610296533333337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.31813417200000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 21.2089448,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7048891773333334,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.46406925490197,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.490697083700006,\n \"hasRDI\" : true,\n + \ \"daily\" : 162.45348541850004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9145879616666668,\n \"hasRDI\" : true,\n + \ \"daily\" : 95.72939808333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 33.408375533333334,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.352093883333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.408375533333334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.4061363470000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.435605783333333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9071847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.22679618500000004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.413747943333333,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.06873971666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.179702216666666,\n \"hasRDI\" : true,\n + \ \"daily\" : 26.47462777083333,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b551816b0ccc9c6fc803394fc2944057\",\n + \ \"label\" : \"Tandoori Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/639/639fbe714927318ef9f2e228e0a4935c.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2009/03/tandoori-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tandoori-chicken-b551816b0ccc9c6fc803394fc2944057/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1/8 teaspoon + saffron powder, or 1/4 teaspoon saffron threads\", \"1 tablespoon boiling + water\", \"4 skinless chicken thighs\", \"4 skinless chicken legs\", \"3/4 + teaspoon coarse salt\", \"1 teaspoon ground cumin\", \"1 teaspoon ground coriander\", + \"1 teaspoon ground cinnamon\", \"1/2 teaspoon paprika (I used pimente d’Espelette)\", + \"1/2 teaspoon turmeric\", \"1 to 1 1/2 teaspoons chili powder, depending + on how hot you want it\", \"10 turns fresh ground black pepper\", \"1 cup + whole milk plain yogurt\", \"juice of one fresh lime\", \"1 tablespoon finely-minced + fresh ginger\", \"2 cloves garlic, peeled and finely minced\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1/8 teaspoon saffron powder, or 1/4 teaspoon saffron + threads\",\n \"weight\" : 0.0875\n }, {\n \"text\" : \"1 + tablespoon boiling water\",\n \"weight\" : 14.78676478125\n }, + {\n \"text\" : \"4 skinless chicken thighs\",\n \"weight\" : + 772.0\n }, {\n \"text\" : \"4 skinless chicken legs\",\n \"weight\" + : 1376.0\n }, {\n \"text\" : \"3/4 teaspoon coarse salt\",\n \"weight\" + : 3.640625\n }, {\n \"text\" : \"1 teaspoon ground cumin\",\n + \ \"weight\" : 2.1\n }, {\n \"text\" : \"1 teaspoon ground + coriander\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"1 + teaspoon ground cinnamon\",\n \"weight\" : 2.6\n }, {\n \"text\" + : \"1/2 teaspoon paprika (I used pimente d’Espelette)\",\n \"weight\" + : 1.15\n }, {\n \"text\" : \"1/2 teaspoon turmeric\",\n \"weight\" + : 1.5\n }, {\n \"text\" : \"1 to 1 1/2 teaspoons chili powder, + depending on how hot you want it\",\n \"weight\" : 3.375\n }, + {\n \"text\" : \"10 turns fresh ground black pepper\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1 cup whole milk plain yogurt\",\n + \ \"weight\" : 245.0\n }, {\n \"text\" : \"juice of one + fresh lime\",\n \"weight\" : 67.0\n }, {\n \"text\" : \"1 + tablespoon finely-minced fresh ginger\",\n \"weight\" : 6.0\n }, + {\n \"text\" : \"2 cloves garlic, peeled and finely minced\",\n \"weight\" + : 6.0\n } ],\n \"calories\" : 4106.9527499999995,\n \"totalWeight\" + : 2506.03988978125,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4106.9527499999995,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 261.05152375,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 73.94990525,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.9808399999999999,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 105.547580125,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 54.17147712500001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 33.16305875,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 7.156062500000001,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 13.243892500000003,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 388.27189624999994,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 2037.21,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3519.8006580912506,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 597.6204779434377,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 507.4270238978125,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5395.032249999999,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 20.2787515625,\n \"unit\" : + \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 34.57117305147815,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3859.7165,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 587.7533749999999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 26.399675000000006,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.8229951249999998,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.890126625,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 109.1630085,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 8.168065749999998,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 112.035875,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 112.035875,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 13.321299999999999,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.6210000000000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.581375000000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 65.563425,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 205.3476375,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 401.61772884615385,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 369.74952625000003,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 11.054352916666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 28.624250000000004,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 776.5437924999999,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 679.07,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 146.65836075380213,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 59.762047794343765,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 126.85675597445312,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 154.14377857142856,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 112.65973090277777,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 230.47448700985433,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 551.3880714285715,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 65.30593055555553,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 43.999458333333344,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 121.53300833333333,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 228.83097794117649,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 545.8150425,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 408.4032874999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 28.008968749999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 222.02166666666665,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.40525000000000005,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 32.90687500000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 81.95428125,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 261.05152375,\n \"hasRDI\" : true,\n \"daily\" : 401.61772884615385,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 73.94990525,\n \"hasRDI\" : true,\n \"daily\" + : 369.74952625000003,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9808399999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 105.547580125,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.17147712500001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 33.16305875,\n \"hasRDI\" : true,\n \"daily\" : 11.054352916666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.006996249999997,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 7.156062500000001,\n \"hasRDI\" + : true,\n \"daily\" : 28.624250000000004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 13.243892500000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 388.27189624999994,\n \"hasRDI\" : true,\n \"daily\" : 776.5437924999999,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 2037.21,\n \"hasRDI\" : true,\n \"daily\" + : 679.07,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3519.8006580912506,\n \"hasRDI\" : true,\n \"daily\" + : 146.65836075380213,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 597.6204779434377,\n \"hasRDI\" : true,\n \"daily\" + : 59.762047794343765,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 507.4270238978125,\n \"hasRDI\" : true,\n \"daily\" + : 126.85675597445312,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5395.032249999999,\n \"hasRDI\" : true,\n \"daily\" + : 154.14377857142856,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.2787515625,\n \"hasRDI\" : true,\n \"daily\" + : 112.65973090277777,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.57117305147815,\n \"hasRDI\" : true,\n \"daily\" + : 230.47448700985433,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3859.7165,\n \"hasRDI\" : true,\n \"daily\" + : 551.3880714285715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 587.7533749999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 65.30593055555553,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.399675000000006,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.999458333333344,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8229951249999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 121.53300833333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.890126625,\n \"hasRDI\" + : true,\n \"daily\" : 228.83097794117649,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 109.1630085,\n \"hasRDI\" + : true,\n \"daily\" : 545.8150425,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.168065749999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 408.4032874999999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.035875,\n \"hasRDI\" + : true,\n \"daily\" : 28.008968749999998,\n \"unit\" : \"µg\"\n + \ }, {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.035875,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.321299999999999,\n \"hasRDI\" : true,\n \"daily\" + : 222.02166666666665,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.6210000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.40525000000000005,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.581375000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.90687500000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.563425,\n \"hasRDI\" : true,\n \"daily\" + : 81.95428125,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b43f2afae4a7486a48fd5af9a679b1c9\",\n + \ \"label\" : \"Lemon Pepper Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/e47/e47606d52c853e0b24c3acf9191f3ebc.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/lemon-pepper-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/lemon-pepper-chicken-b43f2afae4a7486a48fd5af9a679b1c9/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"600 grams chicken + leg – bone-in skin-on (2 large legs)\", \"1/2 teaspoon salt\", \"1 tablespoon + extra virgin olive oil\", \"2 lemons\", \"6 sprigs thyme\", \"black pepper\" + ],\n \"ingredients\" : [ {\n \"text\" : \"600 grams chicken leg + – bone-in skin-on (2 large legs)\",\n \"weight\" : 860.0\n }, + {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" : 3.0\n }, + {\n \"text\" : \"1 tablespoon extra virgin olive oil\",\n \"weight\" + : 13.5\n }, {\n \"text\" : \"2 lemons\",\n \"weight\" : + 116.0\n }, {\n \"text\" : \"6 sprigs thyme\",\n \"weight\" + : 18.0\n }, {\n \"text\" : \"black pepper\",\n \"weight\" + : 3.0315\n } ],\n \"calories\" : 2019.169065,\n \"totalWeight\" + : 1013.5315,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2019.169065,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 151.4192269,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 39.58317848,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.516,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 66.82287778499999,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 30.47705937,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.61284425,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.5349695,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 2.9194016,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 143.37377285000002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 799.8,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1889.9562999999996,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 194.744545,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 206.693865,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n + \ \"label\" : \"Potassium\",\n \"quantity\" : 2056.163635,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 10.150858649999998,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 13.076474849999999,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1375.42977,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 285.61850499999997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 92.018,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.6861140199999999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.3260367,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 41.18277004499999,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 2.899061665,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 55.775355,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.775355,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.816,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.86,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.034777600000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.86956549999999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 100.95845325,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 232.9526567692308,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 197.91589240000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.204281416666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.139878,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 286.74754570000005,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 266.6,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 78.74817916666665,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.4744545,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.673466250000004,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 58.747532428571425,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 56.39365916666665,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 87.17649899999999,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 196.48996714285713,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 31.73538944444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 153.36333333333332,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 45.740934666666654,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 78.00215882352941,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 205.91385022499995,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 144.95308325,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 13.94383875,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 80.26666666666667,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.215,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 20.173888000000005,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 41.08695687499999,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 151.4192269,\n \"hasRDI\" : true,\n \"daily\" : 232.9526567692308,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.58317848,\n \"hasRDI\" : true,\n \"daily\" + : 197.91589240000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.516,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.82287778499999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 30.47705937,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 18.61284425,\n \"hasRDI\" : true,\n \"daily\" : 6.204281416666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.07787475,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.5349695,\n \"hasRDI\" + : true,\n \"daily\" : 26.139878,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 2.9194016,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 143.37377285000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 286.74754570000005,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 799.8,\n \"hasRDI\" : true,\n \"daily\" : 266.6,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1889.9562999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 78.74817916666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 194.744545,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.4744545,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 206.693865,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.673466250000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2056.163635,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.747532428571425,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 10.150858649999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.39365916666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.076474849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.17649899999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1375.42977,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.48996714285713,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 285.61850499999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.73538944444444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 92.018,\n + \ \"hasRDI\" : true,\n \"daily\" : 153.36333333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6861140199999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.740934666666654,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3260367,\n + \ \"hasRDI\" : true,\n \"daily\" : 78.00215882352941,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.18277004499999,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.91385022499995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.899061665,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.95308325,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.775355,\n \"hasRDI\" : true,\n \"daily\" : 13.94383875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.775355,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.816,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.26666666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.86,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.215,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.034777600000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.173888000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 32.86956549999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.08695687499999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_836f27b2a8d87374d70861102692b1e7\",\n + \ \"label\" : \"Chicken Curry\",\n \"image\" : \"https://www.edamam.com/web-img/c21/c21850708a29bc34a483039ddb0ddc94.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2010/04/10/chicken-curry-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-curry-836f27b2a8d87374d70861102692b1e7/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Tree-Nuts\", \"Shellfish\" ],\n \"ingredientLines\" + : [ \"6 whole chicken thighs\", \"5 cloves garlic grated into paste\", \"1″ + knob of ginger grated into paste\", \"2 Tbs garam masala\", \"3 medium onions + sliced thin across the rings\", \"1/2 stalk lemongrass cut into 3 pieces\", + \"1/2 can of coconut milk\", \"1 C water\", \"2 tsp fish sauce\", \"2 tsp + brown sugar\", \"1 tsp kosher salt\", \"1 tsp black pepper\", \"2″ piece of + cassia bark (aka saigon cinnamon)\", \"1/2 star anise pod\", \"cayenne pepper + to taste\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 whole chicken + thighs\",\n \"weight\" : 894.0\n }, {\n \"text\" : \"5 + cloves garlic grated into paste\",\n \"weight\" : 15.0\n }, {\n + \ \"text\" : \"1″ knob of ginger grated into paste\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"2 Tbs garam masala\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"3 medium onions sliced thin across + the rings\",\n \"weight\" : 165.0\n }, {\n \"text\" : \"1/2 + stalk lemongrass cut into 3 pieces\",\n \"weight\" : 10.0\n }, + {\n \"text\" : \"1/2 can of coconut milk\",\n \"weight\" : 211.87500000000003\n + \ }, {\n \"text\" : \"1 C water\",\n \"weight\" : 237.0\n + \ }, {\n \"text\" : \"2 tsp fish sauce\",\n \"weight\" : + 12.0\n }, {\n \"text\" : \"2 tsp brown sugar\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"1 tsp kosher salt\",\n \"weight\" + : 4.854166666666667\n }, {\n \"text\" : \"1 tsp black pepper\",\n + \ \"weight\" : 2.9\n }, {\n \"text\" : \"2″ piece of cassia + bark (aka saigon cinnamon)\",\n \"weight\" : 5.2\n }, {\n \"text\" + : \"1/2 star anise pod\",\n \"weight\" : 1.0\n }, {\n \"text\" + : \"cayenne pepper to taste\",\n \"weight\" : 0.0\n } ],\n \"calories\" + : 2585.43675,\n \"totalWeight\" : 1591.8291666666669,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2585.43675,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 195.44985749999998,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 81.01624425,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7599,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 64.22836925000003,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 31.941686750000002,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 55.2772175,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 9.6529,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 13.790400000000002,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.821199999999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 157.22266499999998,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 876.12,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3608.5416666666665,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 343.8635,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 341.02004166666666,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2969.0563333333334,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.662823749999998,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 13.805824166666666,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1719.9299999999998,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 211.06299999999996,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.190350000000006,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8366185,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.400602,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 43.97651474999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.6750899999999995,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 108.8375,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 108.8375,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 5.6004,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.894,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 2.1121999999999996,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 26.0737,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 129.2718375,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 300.6920884615384,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 405.08122125,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.425739166666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 38.6116,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 314.44532999999996,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 292.04,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.35590277777777,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 34.38635,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 85.25501041666666,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 84.83018095238096,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 92.57124305555554,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 92.03882777777777,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 245.70428571428567,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 23.45144444444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.98391666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.774566666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.38835294117646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 219.88257374999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 183.75449999999998,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 27.209375,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 93.33999999999999,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2235,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 10.560999999999998,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.592124999999996,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 195.44985749999998,\n \"hasRDI\" : true,\n \"daily\" + : 300.6920884615384,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 81.01624425,\n \"hasRDI\" + : true,\n \"daily\" : 405.08122125,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.7599,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.22836925000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.941686750000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 55.2772175,\n \"hasRDI\" : true,\n \"daily\" : 18.425739166666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.6243175,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.6529,\n \"hasRDI\" : true,\n + \ \"daily\" : 38.6116,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 13.790400000000002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.821199999999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 157.22266499999998,\n \"hasRDI\" : true,\n \"daily\" : 314.44532999999996,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 876.12,\n \"hasRDI\" : true,\n \"daily\" + : 292.04,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3608.5416666666665,\n \"hasRDI\" : true,\n \"daily\" + : 150.35590277777777,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 343.8635,\n \"hasRDI\" : true,\n \"daily\" + : 34.38635,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 341.02004166666666,\n \"hasRDI\" : true,\n \"daily\" : 85.25501041666666,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2969.0563333333334,\n \"hasRDI\" : true,\n \"daily\" : 84.83018095238096,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.662823749999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.57124305555554,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.805824166666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.03882777777777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1719.9299999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 245.70428571428567,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 211.06299999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.45144444444444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.190350000000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.98391666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8366185,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.774566666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.400602,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.38835294117646,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.97651474999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 219.88257374999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.6750899999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 183.75449999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.8375,\n \"hasRDI\" : true,\n \"daily\" : 27.209375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.8375,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.6004,\n + \ \"hasRDI\" : true,\n \"daily\" : 93.33999999999999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.894,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2235,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1121999999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.560999999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.0737,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.592124999999996,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_50239f3cecf2e7f7347f641e3f3acdbf\",\n + \ \"label\" : \"Engagement Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f6b/f6b81ce045785f95934d565afe199cda.jpg\",\n + \ \"source\" : \"Epicurious\",\n \"url\" : \"http://www.epicurious.com/recipes/food/views/Engagement-Chicken-364889\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/engagement-chicken-50239f3cecf2e7f7347f641e3f3acdbf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken + (approx. 4 pounds)\", \"1/2 cup fresh lemon juice, plus 3 whole lemons ­including + 1 sliced for garnish\", \"1 tablespoon kosher or coarse sea salt\", \"1/2 + teaspoon freshly ground pepper\", \"Fresh herbs for garnish (4 rosemary sprigs, + 4 sage sprigs, 8 thyme sprigs, and 1 bunch flat-leaf parsley)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole chicken (approx. 4 pounds)\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 tablespoon kosher or coarse sea + salt\",\n \"weight\" : 14.5625\n }, {\n \"text\" : \"1/2 + teaspoon freshly ground pepper\",\n \"weight\" : 1.45\n } ],\n + \ \"calories\" : 1981.6394999999998,\n \"totalWeight\" : 925.3163593219465,\n + \ \"totalTime\" : 302.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1981.6395000000002,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 138.59927000000002,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 39.672184,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.8924000000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 57.41871550000001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 29.730471000000005,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.927275,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.36685,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.00928,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 171.27065500000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2142.8135460000003,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 108.55142623726717,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 186.5181635932195,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1758.379808745756,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 8.433553985762424,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.073121359321949,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1354.691,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 377.59150000000005,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 14.720000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.553566,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.10661,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 62.58577350000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.2242195000000002,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.4465,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.4465,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8520000000000003,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.7750800000000004,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.173650000000002,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 99.081975,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 213.22964615384618,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 198.36092000000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.30909166666666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.4674,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 342.54131000000007,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 89.28389775000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 10.855142623726717,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.629540898304874,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 50.239423107021594,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.85307769868014,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 80.487475728813,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 193.5272857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 41.95461111111112,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 24.53333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 36.9044,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 65.09470588235295,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 312.9288675,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 161.21097500000002,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.861624999999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 47.53333333333334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.4600000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 13.875400000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 20.217062500000004,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 138.59927000000002,\n \"hasRDI\" : true,\n \"daily\" : 213.22964615384618,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.672184,\n \"hasRDI\" : true,\n \"daily\" + : 198.36092000000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.8924000000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 57.41871550000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.730471000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.927275,\n \"hasRDI\" : true,\n \"daily\" : 0.30909166666666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.560425,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.36685,\n \"hasRDI\" : + true,\n \"daily\" : 1.4674,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.00928,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 171.27065500000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 342.54131000000007,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" : 230.00000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2142.8135460000003,\n \"hasRDI\" : true,\n \"daily\" : 89.28389775000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.55142623726717,\n \"hasRDI\" : true,\n \"daily\" : 10.855142623726717,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 186.5181635932195,\n \"hasRDI\" : true,\n \"daily\" : 46.629540898304874,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1758.379808745756,\n \"hasRDI\" : true,\n \"daily\" : 50.239423107021594,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.433553985762424,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.85307769868014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.073121359321949,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.487475728813,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1354.691,\n + \ \"hasRDI\" : true,\n \"daily\" : 193.5272857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 377.59150000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.95461111111112,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.720000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.53333333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.553566,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.9044,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.10661,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.09470588235295,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.58577350000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 312.9288675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2242195000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 161.21097500000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.4465,\n \"hasRDI\" : true,\n \"daily\" : 13.861624999999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.4465,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8520000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.53333333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8400000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4600000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7750800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.875400000000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.173650000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.217062500000004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_917f496001b8872eda9575e1e44289ad\",\n + \ \"label\" : \"Chaat Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/309/309578bfa0933315565e73d2938469aa.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/2256-chaat-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chaat-chicken-917f496001b8872eda9575e1e44289ad/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 pound boneless, + skinless, chicken breast\", \"2 tablespoons of freshly grated garlic\", \"1/2 + cup white vinegar\", \"3 tablespoons chaat masala\", \"1 tablespoon cumin + powder\", \"2 teaspoons chili powder\", \"1 teaspoon turmeric\", \"1 teaspoon + smoked paprika\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound + boneless, skinless, chicken breast\",\n \"weight\" : 453.59237\n }, + {\n \"text\" : \"2 tablespoons of freshly grated garlic\",\n \"weight\" + : 17.0\n }, {\n \"text\" : \"1/2 cup white vinegar\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"3 tablespoons chaat masala\",\n + \ \"weight\" : 18.0\n }, {\n \"text\" : \"1 tablespoon cumin + powder\",\n \"weight\" : 6.0\n }, {\n \"text\" : \"2 teaspoons + chili powder\",\n \"weight\" : 5.4\n }, {\n \"text\" : + \"1 teaspoon turmeric\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"1 teaspoon smoked paprika\",\n \"weight\" : 2.3\n } ],\n \"calories\" + : 927.8428764000001,\n \"totalWeight\" : 624.29237,\n \"totalTime\" + : 154.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 927.8428764000001,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 46.107784225,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 12.869095042000001,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.47795198850000004,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 18.516147534000005,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 10.187902452,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 27.24357,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 8.2379,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.07498,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 99.16246914500002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 290.29911680000004,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 472.1651931,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 290.77216070000003,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 183.47809250000003,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1583.7932140000005,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 12.004103538,\n \"unit\" : + \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.774428960000001,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 902.6927238000001,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 254.29316880000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.9015,\n \"unit\" : + \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.3984531931,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.5187635145000001,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 46.748752019600005,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8434185610000005,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 28.972694800000006,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 28.972694800000006,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.5422140580000003,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.8143694800000003,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 4.299859399000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 8.569700000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 46.39214382000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 70.93505265384616,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 64.34547521,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 9.08119,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 32.9516,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 198.32493829000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 96.76637226666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 19.6735497125,\n \"unit\" : \"%\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 29.077216070000002,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 45.86952312500001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 45.2512346857143,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 66.68946410000001,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 31.829526400000006,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 128.95610340000002,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 28.254796533333337,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 21.5025,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 26.56354620666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 30.515500852941187,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 233.74376009800002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 142.17092805000001,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 7.2431737000000025,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 25.70356763333334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.4535923700000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 21.499296995,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 10.712125000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 46.107784225,\n \"hasRDI\" : + true,\n \"daily\" : 70.93505265384616,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 12.869095042000001,\n \"hasRDI\" : true,\n \"daily\" : + 64.34547521,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.47795198850000004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 18.516147534000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.187902452,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 27.24357,\n \"hasRDI\" : true,\n \"daily\" : 9.08119,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.00567,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 8.2379,\n \"hasRDI\" : true,\n \"daily\" + : 32.9516,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.07498,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 99.16246914500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.32493829000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 290.29911680000004,\n \"hasRDI\" : true,\n \"daily\" : 96.76637226666668,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 472.1651931,\n \"hasRDI\" : true,\n \"daily\" : 19.6735497125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 290.77216070000003,\n \"hasRDI\" : true,\n \"daily\" : 29.077216070000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 183.47809250000003,\n \"hasRDI\" : true,\n \"daily\" : 45.86952312500001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1583.7932140000005,\n \"hasRDI\" : true,\n \"daily\" : 45.2512346857143,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.004103538,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.68946410000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.774428960000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.829526400000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 902.6927238000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.95610340000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 254.29316880000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.254796533333337,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.9015,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.5025,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.3984531931,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.56354620666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5187635145000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.515500852941187,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.748752019600005,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.74376009800002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8434185610000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 142.17092805000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.972694800000006,\n \"hasRDI\" : true,\n \"daily\" : 7.2431737000000025,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.972694800000006,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5422140580000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.70356763333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8143694800000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4535923700000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.299859399000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.499296995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.569700000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.712125000000002,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_9a22c584308bbd7d363d99c8b8d8e451\",\n + \ \"label\" : \"Brined Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a4e/a4e2ef199b67e46abe0b3ce32ad65c46.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/98809/recipes-brined-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/brined-chicken-9a22c584308bbd7d363d99c8b8d8e451/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 cup kosher salt\", \"1 stick cinnamon\", + \"1 bunch fresh rosemary\", \"1/2 cup apple cider\", \"2 quarts boiling water\", + \"2 quarts ice\", \"1 3-pound chicken\", \"1 lemon, thinly sliced, preferably + organic\", \"3 tablespoons extra-virgin olive oil\", \"1 tablespoon kosher + salt\", \"2 tablespoons freshly ground black pepper\", \"1 bunch fresh thyme\", + \"8 cloves garlic, peeled\", \"6 sprigs fresh marjoram\", \"1 small red onion, + thinly sliced\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 cup + kosher salt\",\n \"weight\" : 233.0\n }, {\n \"text\" : + \"1 stick cinnamon\",\n \"weight\" : 2.6\n }, {\n \"text\" + : \"1 bunch fresh rosemary\",\n \"weight\" : 15.0\n }, {\n \"text\" + : \"1/2 cup apple cider\",\n \"weight\" : 124.0\n }, {\n \"text\" + : \"2 quarts boiling water\",\n \"weight\" : 1892.705892\n }, + {\n \"text\" : \"2 quarts ice\",\n \"weight\" : 1892.705892\n + \ }, {\n \"text\" : \"1 3-pound chicken\",\n \"weight\" + : 1360.77711\n }, {\n \"text\" : \"1 lemon, thinly sliced, preferably + organic\",\n \"weight\" : 58.0\n }, {\n \"text\" : \"3 + tablespoons extra-virgin olive oil\",\n \"weight\" : 40.5\n }, + {\n \"text\" : \"1 tablespoon kosher salt\",\n \"weight\" : + 14.5625\n }, {\n \"text\" : \"2 tablespoons freshly ground black + pepper\",\n \"weight\" : 13.8\n }, {\n \"text\" : \"1 bunch + fresh thyme\",\n \"weight\" : 15.0\n }, {\n \"text\" : + \"8 cloves garlic, peeled\",\n \"weight\" : 24.0\n }, {\n \"text\" + : \"6 sprigs fresh marjoram\",\n \"weight\" : 4.08\n }, {\n \"text\" + : \"1 small red onion, thinly sliced\",\n \"weight\" : 70.0\n } + ],\n \"calories\" : 2572.01293482,\n \"totalWeight\" : 5544.120945251095,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2572.01293482,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 182.28001428088,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.29295473988,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.897568581756,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 87.64813933152001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 34.85572944403999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 54.053788,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 14.297239999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 16.898411999999997,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 178.5540768728,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 693.9963260999999,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 12820.763999619121,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 584.3999736482626,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 323.99412531251096,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2603.7275058720875,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 18.25456568232861,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 13.757975725531093,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1496.9655991559998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 458.12305826799997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 88.81017495680001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7245042608800001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.3206229217599998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 64.10016885074799,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.8831875217999996,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 112.700906088,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 112.700906088,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8685181478799997,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8506568695999999,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.993127304399998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 87.71608652200001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 128.600646741,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 280.4307912013539,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 231.46477369940004,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.01792933333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 57.188959999999994,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 357.1081537456,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 231.33210869999996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 534.1984999841301,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 58.43999736482626,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.99853132812774,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.39221445348821,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 101.41425379071451,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 91.7198381702073,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 213.85222845085713,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 50.90256202977777,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 148.01695826133337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 48.300284058666676,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 77.68370127999998,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 320.50084425373996,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 194.15937608999997,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 28.175226522,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 47.80863579799999,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.46266421739999997,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.96563652199999,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 109.6451081525,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 182.28001428088,\n \"hasRDI\" : true,\n \"daily\" + : 280.4307912013539,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 46.29295473988,\n \"hasRDI\" + : true,\n \"daily\" : 231.46477369940004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.897568581756,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 87.64813933152001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.85572944403999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 54.053788,\n \"hasRDI\" : true,\n \"daily\" : 18.01792933333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 39.756547999999995,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.297239999999999,\n \"hasRDI\" + : true,\n \"daily\" : 57.188959999999994,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 16.898411999999997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 178.5540768728,\n \"hasRDI\" : true,\n \"daily\" : 357.1081537456,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 693.9963260999999,\n \"hasRDI\" : true,\n \"daily\" + : 231.33210869999996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 12820.763999619121,\n \"hasRDI\" : true,\n \"daily\" + : 534.1984999841301,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 584.3999736482626,\n \"hasRDI\" : true,\n \"daily\" + : 58.43999736482626,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 323.99412531251096,\n \"hasRDI\" : true,\n \"daily\" + : 80.99853132812774,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2603.7275058720875,\n \"hasRDI\" : true,\n \"daily\" + : 74.39221445348821,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.25456568232861,\n \"hasRDI\" : true,\n \"daily\" + : 101.41425379071451,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.757975725531093,\n \"hasRDI\" : true,\n \"daily\" + : 91.7198381702073,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1496.9655991559998,\n \"hasRDI\" : true,\n \"daily\" + : 213.85222845085713,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 458.12305826799997,\n \"hasRDI\" : true,\n + \ \"daily\" : 50.90256202977777,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 88.81017495680001,\n \"hasRDI\" : true,\n + \ \"daily\" : 148.01695826133337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7245042608800001,\n \"hasRDI\" : true,\n + \ \"daily\" : 48.300284058666676,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3206229217599998,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.68370127999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.10016885074799,\n + \ \"hasRDI\" : true,\n \"daily\" : 320.50084425373996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8831875217999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.15937608999997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 112.700906088,\n \"hasRDI\" : true,\n \"daily\" : 28.175226522,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 112.700906088,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8685181478799997,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.80863579799999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8506568695999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.46266421739999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.993127304399998,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.96563652199999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 87.71608652200001,\n + \ \"hasRDI\" : true,\n \"daily\" : 109.6451081525,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_53caac44acba8a28ed37d69883482c1f\",\n + \ \"label\" : \"Chicken Saltimbocca\",\n \"image\" : \"https://www.edamam.com/web-img/7ec/7ec56a5cffd1ea52251b45b0ee662e43.jpg\",\n + \ \"source\" : \"Fine Cooking\",\n \"url\" : \"http://www.finecooking.com/recipes/chicken-saltimbocca.aspx\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-saltimbocca-53caac44acba8a28ed37d69883482c1f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"1/3 cup dry + white wine (like Pinot Grigio)\", \"24 fresh sage leaves\", \"4 very thin + slices prosciutto, cut crosswise into thin strips\", \"Kosher salt and freshly + ground black pepper\", \"1 cup homemade or low-salt chicken broth\", \"4 boneless + skinless chicken breast halves (about 1-1/2 lb. total)\", \"2 Tbs. unsalted + butter\", \"3 Tbs. extra-virgin olive oil\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1/3 cup dry white wine (like Pinot Grigio)\",\n \"weight\" + : 49.0\n }, {\n \"text\" : \"24 fresh sage leaves\",\n \"weight\" + : 24.0\n }, {\n \"text\" : \"4 very thin slices prosciutto, cut + crosswise into thin strips\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper\",\n \"weight\" : 4.5594\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 2.2797\n }, {\n \"text\" : \"1 cup homemade + or low-salt chicken broth\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"4 boneless skinless chicken breast halves (about 1-1/2 lb. total)\",\n + \ \"weight\" : 348.0\n }, {\n \"text\" : \"2 Tbs. unsalted + butter\",\n \"weight\" : 28.4\n }, {\n \"text\" : \"3 Tbs. + extra-virgin olive oil\",\n \"weight\" : 40.5\n } ],\n \"calories\" + : 1197.650047,\n \"totalWeight\" : 764.0524842219826,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1197.650047,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 79.72315822,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 25.122525424,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.9553119999999999,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 40.186435982999996,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 7.640098406000001,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.29410815,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.248764099999999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.2244300799999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 94.50376082999999,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 336.09999999999997,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1772.433648756,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 448.6595392132757,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 219.44501484221985,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1850.9780357377585,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 9.465719057932542,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.690761214221982,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 949.717926,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 290.031519,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.776,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.684512076,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.86230946,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 39.324004971,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.649865927,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 100.309549,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 100.309549,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.28308,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.696,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 10.32233888,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 442.47286890000004,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 59.88250235,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 122.65101264615386,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 125.61262712,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 6.764702716666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 40.995056399999996,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 189.00752165999998,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 112.03333333333333,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 73.8514020315,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 44.86595392132757,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 54.86125371055496,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 52.88508673536453,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 52.58732809962524,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 31.271741428146544,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 135.67398942857142,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 32.22572433333333,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.96,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 45.634138400000005,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 50.724085882352945,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 196.620024855,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 182.49329635,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 25.07738725,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 21.384666666666664,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.174,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.6116944,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 553.0910861250001,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 79.72315822,\n \"hasRDI\" : + true,\n \"daily\" : 122.65101264615386,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 25.122525424,\n \"hasRDI\" : true,\n \"daily\" : 125.61262712,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.9553119999999999,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 40.186435982999996,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 7.640098406000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 20.29410815,\n \"hasRDI\" : true,\n \"daily\" : 6.764702716666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.04534405,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 10.248764099999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.995056399999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.2244300799999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 94.50376082999999,\n \"hasRDI\" : true,\n \"daily\" : 189.00752165999998,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 336.09999999999997,\n \"hasRDI\" : true,\n \"daily\" + : 112.03333333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1772.433648756,\n \"hasRDI\" : true,\n \"daily\" + : 73.8514020315,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 448.6595392132757,\n \"hasRDI\" : true,\n \"daily\" + : 44.86595392132757,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 219.44501484221985,\n \"hasRDI\" : true,\n \"daily\" + : 54.86125371055496,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1850.9780357377585,\n \"hasRDI\" : true,\n \"daily\" + : 52.88508673536453,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.465719057932542,\n \"hasRDI\" : true,\n \"daily\" + : 52.58732809962524,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.690761214221982,\n \"hasRDI\" : true,\n \"daily\" + : 31.271741428146544,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 949.717926,\n \"hasRDI\" : true,\n \"daily\" + : 135.67398942857142,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 290.031519,\n \"hasRDI\" : true,\n \"daily\" + : 32.22572433333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 7.776,\n \"hasRDI\" : true,\n \"daily\" + : 12.96,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.684512076,\n \"hasRDI\" : true,\n \"daily\" : 45.634138400000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.86230946,\n \"hasRDI\" : true,\n \"daily\" : 50.724085882352945,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 39.324004971,\n \"hasRDI\" : true,\n \"daily\" : 196.620024855,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.649865927,\n \"hasRDI\" : true,\n \"daily\" : 182.49329635,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.309549,\n \"hasRDI\" : true,\n \"daily\" + : 25.07738725,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 100.309549,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.28308,\n \"hasRDI\" : true,\n \"daily\" + : 21.384666666666664,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.696,\n \"hasRDI\" : true,\n \"daily\" + : 0.174,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 10.32233888,\n \"hasRDI\" : true,\n \"daily\" : 51.6116944,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 442.47286890000004,\n \"hasRDI\" : true,\n \"daily\" : 553.0910861250001,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0b1162a867624c9b60fc48ae880e848d\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/a29/a293566f53abc01af0a24157134b4a87.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://www.simplyrecipes.com/recipes/chicken_piccata/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-0b1162a867624c9b60fc48ae880e848d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2-4 boneless, skinless chicken breast + halves (1 1/2 pound total), or 4-8 chicken cutlets\", \"1/2 cup flour\", \"1/4 + teaspoon salt\", \"Pinch ground black pepper\", \"3 Tbsp grated Parmesan cheese\", + \"4 Tbsp olive oil\", \"4 Tbsp butter\", \"1/2 cup chicken stock or dry white + wine (such as a Sauvignon Blanc)\", \"2 Tbsp lemon juice\", \"1/4 cup brined + capers\", \"2 Tbsp fresh chopped parsley\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"2-4 boneless, skinless chicken breast halves (1 1/2 pound + total), or 4-8 chicken cutlets\",\n \"weight\" : 261.0\n }, {\n + \ \"text\" : \"1/2 cup flour\",\n \"weight\" : 62.5\n }, + {\n \"text\" : \"1/4 teaspoon salt\",\n \"weight\" : 1.5\n }, + {\n \"text\" : \"Pinch ground black pepper\",\n \"weight\" : + 0.14375000000000002\n }, {\n \"text\" : \"3 Tbsp grated Parmesan + cheese\",\n \"weight\" : 42.54\n }, {\n \"text\" : \"4 + Tbsp olive oil\",\n \"weight\" : 54.0\n }, {\n \"text\" + : \"4 Tbsp butter\",\n \"weight\" : 56.8\n }, {\n \"text\" + : \"1/2 cup chicken stock or dry white wine (such as a Sauvignon Blanc)\",\n + \ \"weight\" : 120.0\n }, {\n \"text\" : \"2 Tbsp lemon + juice\",\n \"weight\" : 28.0\n }, {\n \"text\" : \"1/4 + cup brined capers\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 Tbsp fresh chopped parsley\",\n \"weight\" : 7.6\n } ],\n + \ \"calories\" : 1651.0616125000001,\n \"totalWeight\" : 660.9837500000001,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1651.0616125000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 120.32542825,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 45.655068,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.8801739999999998,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 57.1298683125,\n \"unit\" : \"g\"\n },\n \"FAPU\" : + {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : 9.376336224999998,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 57.227386125,\n \"unit\" : + \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 2.96746875,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.32671,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 84.904995625,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 345.1772,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1554.37515,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 568.0354124999999,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 126.5814125,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1202.1382374999996,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 3.593376125,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 3.7891806249999993,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 974.4047249999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 530.0626124999999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 22.4052,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.40029385,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : + {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 0.8008975499999998,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 28.1892684625,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.2844957124999996,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 74.13023749999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 74.13023749999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1551399999999998,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.0646999999999998,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 11.045862999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 170.01839875000002,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 82.553080625,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 185.11604346153848,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 228.27534,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.075795375000002,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.869875,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 169.80999125,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.05906666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 64.76563125000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 56.80354124999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 31.645353125,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 34.34680678571428,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 19.963200694444442,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 25.261204166666662,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 139.200675,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 58.89584583333332,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 37.342,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 26.686256666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 47.11162058823528,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 140.9463423125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 114.22478562499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 18.532559374999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 19.25233333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.26617499999999994,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 55.229315,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 212.5229984375,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 120.32542825,\n \"hasRDI\" : + true,\n \"daily\" : 185.11604346153848,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 45.655068,\n \"hasRDI\" : true,\n \"daily\" : 228.27534,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.8801739999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.1298683125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n \"schemaOrgTag\" + : null,\n \"total\" : 9.376336224999998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 57.227386125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.075795375000002,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 54.259917375,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 2.96746875,\n \"hasRDI\" : true,\n \"daily\" + : 11.869875,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.32671,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 84.904995625,\n + \ \"hasRDI\" : true,\n \"daily\" : 169.80999125,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 345.1772,\n \"hasRDI\" : true,\n \"daily\" : 115.05906666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1554.37515,\n \"hasRDI\" : true,\n \"daily\" : 64.76563125000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 568.0354124999999,\n \"hasRDI\" : true,\n \"daily\" : 56.80354124999999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 126.5814125,\n \"hasRDI\" : true,\n \"daily\" : 31.645353125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1202.1382374999996,\n \"hasRDI\" : true,\n \"daily\" : 34.34680678571428,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.593376125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.963200694444442,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.7891806249999993,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.261204166666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 974.4047249999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 139.200675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 530.0626124999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.89584583333332,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.4052,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.342,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.40029385,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.686256666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8008975499999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.11162058823528,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 28.1892684625,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.9463423125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2844957124999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 114.22478562499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.13023749999999,\n \"hasRDI\" : true,\n \"daily\" : 18.532559374999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.13023749999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1551399999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.25233333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0646999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.26617499999999994,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.045862999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.229315,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 170.01839875000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 212.5229984375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7cf0184aa9b8a2936cc3edaf4cf9a38b\",\n + \ \"label\" : \"Tandoori Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/5db/5db6a2e049b54db7c9aabe0f26bce340.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/190613/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tandoori-chicken-7cf0184aa9b8a2936cc3edaf4cf9a38b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 medium sized + chicken legs, skinned and halved\", \"1 tsp of salt\", \"1 tsp of dry red + chilli flakes\", \"4 heaped tablespoons of natural yoghurt\", \"1 tsp of garlic + powder\", \"4 tbsp of tandoori masala\", \"1 tsp of ginger powder\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4 medium sized chicken legs, skinned and halved\",\n + \ \"weight\" : 1376.0\n }, {\n \"text\" : \"1 tsp of salt\",\n + \ \"weight\" : 6.0\n }, {\n \"text\" : \"1 tsp of dry red + chilli flakes\",\n \"weight\" : 1.8\n }, {\n \"text\" : + \"4 heaped tablespoons of natural yoghurt\",\n \"weight\" : 56.8\n + \ }, {\n \"text\" : \"1 tsp of garlic powder\",\n \"weight\" + : 3.1\n }, {\n \"text\" : \"4 tbsp of tandoori masala\",\n \"weight\" + : 24.0\n }, {\n \"text\" : \"1 tsp of ginger powder\",\n \"weight\" + : 1.8\n } ],\n \"calories\" : 3064.4230000000002,\n \"totalWeight\" + : 1469.1762629134628,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3064.4230000000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 223.81340999999998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.991869,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8256,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 91.80475099999998,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 46.915076000000006,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 26.85801,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.2064,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 2.96935,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 229.57463,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1287.064,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3403.3399799999993,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 359.73530309923115,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 309.68776262913457,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3229.329101033077,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.907881667614427,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 21.013246262913466,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2235.0119999999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 444.59000000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 13.869000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0654089999999998,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.0599089999999998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 66.20953399999998,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.550898000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 71.255,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 71.255,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 7.915760000000001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.4328,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 3.61899,\n \"unit\" : + \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 33.233799999999995,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 153.22115000000002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 344.328323076923,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 309.959345,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.95267,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 24.825599999999998,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 459.14925999999997,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 429.02133333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 141.80583249999995,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 35.97353030992312,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 77.42194065728364,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 92.26654574380221,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 66.15489815341348,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 140.0883084194231,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 319.28742857142856,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.39888888888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 23.115000000000002,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 71.02726666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 121.17111764705882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 331.04766999999987,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 227.54490000000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 17.81375,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 131.92933333333335,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.3582,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 18.09495,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 41.542249999999996,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 223.81340999999998,\n \"hasRDI\" : true,\n \"daily\" + : 344.328323076923,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.991869,\n \"hasRDI\" + : true,\n \"daily\" : 309.959345,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.8256,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 91.80475099999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.915076000000006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 26.85801,\n \"hasRDI\" : true,\n \"daily\" : 8.95267,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.651609999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.2064,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.825599999999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 2.96935,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 229.57463,\n + \ \"hasRDI\" : true,\n \"daily\" : 459.14925999999997,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1287.064,\n \"hasRDI\" : true,\n \"daily\" : 429.02133333333336,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3403.3399799999993,\n \"hasRDI\" : true,\n \"daily\" : 141.80583249999995,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 359.73530309923115,\n \"hasRDI\" : true,\n \"daily\" : 35.97353030992312,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 309.68776262913457,\n \"hasRDI\" : true,\n \"daily\" : 77.42194065728364,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3229.329101033077,\n \"hasRDI\" : true,\n \"daily\" : 92.26654574380221,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.907881667614427,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.15489815341348,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 21.013246262913466,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.0883084194231,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2235.0119999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 319.28742857142856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 444.59000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.39888888888889,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.869000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.115000000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0654089999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.02726666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0599089999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 121.17111764705882,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.20953399999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 331.04766999999987,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.550898000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.54490000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.255,\n \"hasRDI\" : true,\n \"daily\" : 17.81375,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 71.255,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.915760000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 131.92933333333335,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.4328,\n \"hasRDI\" : true,\n \"daily\" + : 0.3582,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.61899,\n \"hasRDI\" : true,\n \"daily\" : 18.09495,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.233799999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.542249999999996,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_aa5c8ba89d91969348dd3c219e39f7fb\",\n + \ \"label\" : \"Chicken Parmesan\",\n \"image\" : \"https://www.edamam.com/web-img/a25/a2595b2babcb1fd9144869263b6d4aa6.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-parmesan-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-parmesan-aa5c8ba89d91969348dd3c219e39f7fb/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"500 gs boneless chicken (17 ozs) breasts + or thighs\", \"1 cup panko (japanese bread crumbs)\", \"1 sprig rosemary stem + removed and minced\", \"3 sprigs thyme stems removed and minced\", \"40 gs + parmigiano reggiano (1.4 ozs) grated\", \"1/4 cup all-purpose flour\", \"1 + large egg\", \"3 tbsps extra virgin olive oil\", \"4 cloves garlic minced\", + \"1 large onion minced\", \"28 oz canned diced tomatoes\", \"2 tbsps tomato + paste\", \"2 tsps dried oregano\", \"1 tsp salt to taste\", \"Black pepper + to taste\", \"80 gs mozzarella cheese (2.8 ozs) grated\", \"450 gs dried spaghetti + (16 ozs)\", \"Flat leaf parsley minced for garnish\" ],\n \"ingredients\" + : [ {\n \"text\" : \"500 gs boneless chicken (17 ozs) breasts or thighs\",\n + \ \"weight\" : 500.0\n }, {\n \"text\" : \"1 cup panko (japanese + bread crumbs)\",\n \"weight\" : 60.0\n }, {\n \"text\" + : \"1 sprig rosemary stem removed and minced\",\n \"weight\" : 5.0\n + \ }, {\n \"text\" : \"3 sprigs thyme stems removed and minced\",\n + \ \"weight\" : 9.0\n }, {\n \"text\" : \"40 gs parmigiano + reggiano (1.4 ozs) grated\",\n \"weight\" : 39.6893316990947\n }, + {\n \"text\" : \"1/4 cup all-purpose flour\",\n \"weight\" : + 31.25\n }, {\n \"text\" : \"1 large egg\",\n \"weight\" + : 50.0\n }, {\n \"text\" : \"3 tbsps extra virgin olive oil\",\n + \ \"weight\" : 40.5\n }, {\n \"text\" : \"4 cloves garlic + minced\",\n \"weight\" : 12.0\n }, {\n \"text\" : \"1 large + onion minced\",\n \"weight\" : 150.0\n }, {\n \"text\" + : \"28 oz canned diced tomatoes\",\n \"weight\" : 793.7866475000001\n + \ }, {\n \"text\" : \"2 tbsps tomato paste\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tsps dried oregano\",\n \"weight\" + : 2.0\n }, {\n \"text\" : \"1 tsp salt to taste\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"Black pepper to taste\",\n \"weight\" + : 6.792591037791853\n }, {\n \"text\" : \"80 gs mozzarella cheese + (2.8 ozs) grated\",\n \"weight\" : 79.3786633981894\n }, {\n \"text\" + : \"450 gs dried spaghetti (16 ozs)\",\n \"weight\" : 453.59237\n } + ],\n \"calories\" : 4218.219289671551,\n \"totalWeight\" : 2270.989603635076,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4218.219289671551,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 170.28725691277205,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.630331835509764,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.44400000000000006,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 75.931209313647,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 27.179121337937925,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 469.92350578256406,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 41.00817767506135,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 46.16396252680634,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 199.90946214851186,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 773.635755979773,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 5203.307419339247,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1649.8166715292884,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 524.2557767858456,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4542.297699429063,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 22.308255137248548,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.651949968670287,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2627.4196584069687,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 648.8642125917629,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 137.414117585,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 5.760194279952173,\n \"unit\" : + \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.338140714409131,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 40.175024568260795,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.930372847198028,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 331.81034516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 249.93534516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 48.125,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 4.600736223195919,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.0953399754864206,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 14.74637249691724,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 86.88145195770461,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 210.91096448357757,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 261.98039525041855,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 253.15165917754885,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.64116859418803,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 164.03271070024536,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 399.81892429702367,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 257.878585326591,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 216.80447580580196,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 164.98166715292885,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 131.0639441964614,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 129.7799342694018,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 123.93475076249193,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.34633312446859,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 375.34566548670983,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.096023621307,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 229.02352930833337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 384.0129519968115,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 137.53768908289007,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 200.87512284130398,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.5186423599014,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 82.95258629180411,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 76.67893705326532,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5238349938716051,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 73.7318624845862,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 108.60181494713076,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 170.28725691277205,\n \"hasRDI\" + : true,\n \"daily\" : 261.98039525041855,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.630331835509764,\n \"hasRDI\" : true,\n \"daily\" : + 253.15165917754885,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.44400000000000006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 75.931209313647,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.179121337937925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 469.92350578256406,\n \"hasRDI\" : true,\n \"daily\" : 156.64116859418803,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 428.9153281075027,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 41.00817767506135,\n \"hasRDI\" + : true,\n \"daily\" : 164.03271070024536,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 46.16396252680634,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 199.90946214851186,\n \"hasRDI\" : true,\n \"daily\" : 399.81892429702367,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 773.635755979773,\n \"hasRDI\" : true,\n \"daily\" + : 257.878585326591,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5203.307419339247,\n \"hasRDI\" : true,\n \"daily\" + : 216.80447580580196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1649.8166715292884,\n \"hasRDI\" : true,\n \"daily\" + : 164.98166715292885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 524.2557767858456,\n \"hasRDI\" : true,\n \"daily\" + : 131.0639441964614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4542.297699429063,\n \"hasRDI\" : true,\n \"daily\" + : 129.7799342694018,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.308255137248548,\n \"hasRDI\" : true,\n \"daily\" + : 123.93475076249193,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.651949968670287,\n \"hasRDI\" : true,\n \"daily\" + : 124.34633312446859,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2627.4196584069687,\n \"hasRDI\" : true,\n \"daily\" + : 375.34566548670983,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 648.8642125917629,\n \"hasRDI\" : true,\n + \ \"daily\" : 72.096023621307,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 137.414117585,\n \"hasRDI\" : true,\n + \ \"daily\" : 229.02352930833337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.760194279952173,\n \"hasRDI\" : true,\n + \ \"daily\" : 384.0129519968115,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.338140714409131,\n + \ \"hasRDI\" : true,\n \"daily\" : 137.53768908289007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.175024568260795,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.87512284130398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.930372847198028,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.5186423599014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.81034516721644,\n \"hasRDI\" : true,\n \"daily\" : 82.95258629180411,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 249.93534516721644,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 48.125,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.600736223195919,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.67893705326532,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0953399754864206,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5238349938716051,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.74637249691724,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.7318624845862,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 86.88145195770461,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.60181494713076,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_513f67f7af6cf0e73a7fbb49c92165ae\",\n + \ \"label\" : \"Chicken Parmesan\",\n \"image\" : \"https://www.edamam.com/web-img/9b1/9b194320039c04b847765592c517e19b.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-parmesan-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-parmesan-513f67f7af6cf0e73a7fbb49c92165ae/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"500 grams boneless chicken (17 ounces) + breasts or thighs\", \"1 cup panko (Japanese bread crumbs)\", \"1 sprig rosemary + stem removed and minced\", \"3 sprigs thyme stems removed and minced\", \"40 + grams parmigiano reggiano (1.4 ounces) grated\", \"1/4 cup all-purpose flour\", + \"1 large egg\", \"3 tablespoons extra virgin olive oil\", \"4 cloves garlic + minced\", \"1 large onion minced\", \"28 ounce canned diced tomatoes\", \"2 + tablespoons tomato paste\", \"2 teaspoons dried oregano\", \"1 teaspoon salt + to taste\", \"black pepper to taste\", \"80 grams Mozzarella cheese (2.8 ounces) + grated\", \"450 grams dried spaghetti (16 ounces)\", \"flat leaf parsley minced + for garnish\" ],\n \"ingredients\" : [ {\n \"text\" : \"500 grams + boneless chicken (17 ounces) breasts or thighs\",\n \"weight\" : 500.0\n + \ }, {\n \"text\" : \"1 cup panko (Japanese bread crumbs)\",\n + \ \"weight\" : 60.0\n }, {\n \"text\" : \"1 sprig rosemary + stem removed and minced\",\n \"weight\" : 5.0\n }, {\n \"text\" + : \"3 sprigs thyme stems removed and minced\",\n \"weight\" : 9.0\n + \ }, {\n \"text\" : \"40 grams parmigiano reggiano (1.4 ounces) + grated\",\n \"weight\" : 39.6893316990947\n }, {\n \"text\" + : \"1/4 cup all-purpose flour\",\n \"weight\" : 31.25\n }, {\n + \ \"text\" : \"1 large egg\",\n \"weight\" : 50.0\n }, {\n + \ \"text\" : \"3 tablespoons extra virgin olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"4 cloves garlic minced\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"1 large onion minced\",\n \"weight\" + : 150.0\n }, {\n \"text\" : \"28 ounce canned diced tomatoes\",\n + \ \"weight\" : 793.7866475000001\n }, {\n \"text\" : \"2 + tablespoons tomato paste\",\n \"weight\" : 32.0\n }, {\n \"text\" + : \"2 teaspoons dried oregano\",\n \"weight\" : 2.0\n }, {\n \"text\" + : \"1 teaspoon salt to taste\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"black pepper to taste\",\n \"weight\" : 6.792591037791853\n }, + {\n \"text\" : \"80 grams Mozzarella cheese (2.8 ounces) grated\",\n + \ \"weight\" : 79.3786633981894\n }, {\n \"text\" : \"450 + grams dried spaghetti (16 ounces)\",\n \"weight\" : 453.59237\n } + ],\n \"calories\" : 4218.219289671551,\n \"totalWeight\" : 2270.989603635076,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4218.219289671551,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 170.28725691277205,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.630331835509764,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.44400000000000006,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 75.931209313647,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 27.179121337937925,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 469.92350578256406,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 41.00817767506135,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 46.16396252680634,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 199.90946214851186,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 773.635755979773,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 5203.307419339247,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1649.8166715292884,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 524.2557767858456,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4542.297699429063,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 22.308255137248548,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.651949968670287,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2627.4196584069687,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 648.8642125917629,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 137.414117585,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 5.760194279952173,\n \"unit\" : + \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.338140714409131,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 40.175024568260795,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.930372847198028,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 331.81034516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 249.93534516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 48.125,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 4.600736223195919,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.0953399754864206,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 14.74637249691724,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 86.88145195770461,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 210.91096448357757,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 261.98039525041855,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 253.15165917754885,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.64116859418803,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 164.03271070024536,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 399.81892429702367,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 257.878585326591,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 216.80447580580196,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 164.98166715292885,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 131.0639441964614,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 129.7799342694018,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 123.93475076249193,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.34633312446859,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 375.34566548670983,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.096023621307,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 229.02352930833337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 384.0129519968115,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 137.53768908289007,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 200.87512284130398,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.5186423599014,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 82.95258629180411,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 76.67893705326532,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5238349938716051,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 73.7318624845862,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 108.60181494713076,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 170.28725691277205,\n \"hasRDI\" + : true,\n \"daily\" : 261.98039525041855,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.630331835509764,\n \"hasRDI\" : true,\n \"daily\" : + 253.15165917754885,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.44400000000000006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 75.931209313647,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.179121337937925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 469.92350578256406,\n \"hasRDI\" : true,\n \"daily\" : 156.64116859418803,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 428.9153281075027,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 41.00817767506135,\n \"hasRDI\" + : true,\n \"daily\" : 164.03271070024536,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 46.16396252680634,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 199.90946214851186,\n \"hasRDI\" : true,\n \"daily\" : 399.81892429702367,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 773.635755979773,\n \"hasRDI\" : true,\n \"daily\" + : 257.878585326591,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5203.307419339247,\n \"hasRDI\" : true,\n \"daily\" + : 216.80447580580196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1649.8166715292884,\n \"hasRDI\" : true,\n \"daily\" + : 164.98166715292885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 524.2557767858456,\n \"hasRDI\" : true,\n \"daily\" + : 131.0639441964614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4542.297699429063,\n \"hasRDI\" : true,\n \"daily\" + : 129.7799342694018,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.308255137248548,\n \"hasRDI\" : true,\n \"daily\" + : 123.93475076249193,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.651949968670287,\n \"hasRDI\" : true,\n \"daily\" + : 124.34633312446859,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2627.4196584069687,\n \"hasRDI\" : true,\n \"daily\" + : 375.34566548670983,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 648.8642125917629,\n \"hasRDI\" : true,\n + \ \"daily\" : 72.096023621307,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 137.414117585,\n \"hasRDI\" : true,\n + \ \"daily\" : 229.02352930833337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.760194279952173,\n \"hasRDI\" : true,\n + \ \"daily\" : 384.0129519968115,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.338140714409131,\n + \ \"hasRDI\" : true,\n \"daily\" : 137.53768908289007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.175024568260795,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.87512284130398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.930372847198028,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.5186423599014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.81034516721644,\n \"hasRDI\" : true,\n \"daily\" : 82.95258629180411,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 249.93534516721644,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 48.125,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.600736223195919,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.67893705326532,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0953399754864206,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5238349938716051,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.74637249691724,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.7318624845862,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 86.88145195770461,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.60181494713076,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4ae480cb516f271a55858f3c576d56e9\",\n + \ \"label\" : \"Truffled Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/712/712a9204a4c08f91694b77fbac220015.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Truffled-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/truffled-chicken-4ae480cb516f271a55858f3c576d56e9/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 3 1⁄2-lb. chicken, rinsed and dried\", + \"3⁄4 oz. black truffles, sliced into thin discs\", \"Salt and freshly ground + black pepper\", \"1 clove garlic, peeled and halved lengthwise\", \"2 tbsp. + butter, softened\", \"1 tbsp. rainwater madeira\", \"1 tsp. cognac\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 3 1⁄2-lb. chicken, rinsed + and dried\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"3⁄4 oz. black truffles, sliced into thin discs\",\n \"weight\" + : 21.26214234375\n }, {\n \"text\" : \"Salt and freshly ground + black pepper\",\n \"weight\" : 9.957712624062502\n }, {\n \"text\" + : \"Salt and freshly ground black pepper\",\n \"weight\" : 4.978856312031251\n + \ }, {\n \"text\" : \"1 clove garlic, peeled and halved lengthwise\",\n + \ \"weight\" : 3.0\n }, {\n \"text\" : \"2 tbsp. butter, + softened\",\n \"weight\" : 28.4\n }, {\n \"text\" : \"1 + tbsp. rainwater madeira\",\n \"weight\" : 14.75\n }, {\n \"text\" + : \"1 tsp. cognac\",\n \"weight\" : 4.633333333333334\n } ],\n + \ \"calories\" : 2636.3145708894485,\n \"totalWeight\" : 1672.6007702028373,\n + \ \"totalTime\" : 168.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2636.3145708894485,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 185.94797034924156,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 61.18908580972347,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.9781153453819997,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 73.37099780158593,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 35.790830837374074,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 21.735583736715867,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 16.227412429912654,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.226454680397,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 203.74202168921693,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 870.72238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3870.988489610646,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 189.96037662615439,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 244.79692199102317,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2299.983670516535,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.569953189049352,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 14.562553057457729,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1646.8460339008427,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 638.2157258502484,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.208797449600002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.6666493905285562,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.4996705647962396,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 74.87453928086866,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.854674846726344,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 74.64101009967032,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 74.64101009967032,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.39488450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.5850996812,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.951709627445125,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 26.382635391795155,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 131.81572854447242,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 286.0738005372947,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 305.94542904861737,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.245194578905289,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 64.90964971965062,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 407.48404337843385,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 290.2407934833333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 161.29118706711026,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.99603766261544,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 61.19923049775579,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.71381915761528,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.27751771694085,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 97.0836870497182,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 235.2637191286918,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 70.91285842780538,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.347995749333336,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 44.443292701903744,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 88.21591557624939,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 374.3726964043433,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 192.7337423363172,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 18.66025252491758,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 56.581408431,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6462749203,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 19.758548137225624,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.978294239743946,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 185.94797034924156,\n \"hasRDI\" : true,\n \"daily\" + : 286.0738005372947,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.18908580972347,\n \"hasRDI\" + : true,\n \"daily\" : 305.94542904861737,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.9781153453819997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.37099780158593,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.790830837374074,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 21.735583736715867,\n \"hasRDI\" : true,\n \"daily\" : 7.245194578905289,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.508171306803213,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 16.227412429912654,\n \"hasRDI\" + : true,\n \"daily\" : 64.90964971965062,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.226454680397,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 203.74202168921693,\n \"hasRDI\" : true,\n \"daily\" : 407.48404337843385,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 870.72238045,\n \"hasRDI\" : true,\n \"daily\" + : 290.2407934833333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3870.988489610646,\n \"hasRDI\" : true,\n \"daily\" + : 161.29118706711026,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 189.96037662615439,\n \"hasRDI\" : true,\n \"daily\" + : 18.99603766261544,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 244.79692199102317,\n \"hasRDI\" : true,\n \"daily\" + : 61.19923049775579,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2299.983670516535,\n \"hasRDI\" : true,\n \"daily\" + : 65.71381915761528,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.569953189049352,\n \"hasRDI\" : true,\n \"daily\" + : 64.27751771694085,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.562553057457729,\n \"hasRDI\" : true,\n \"daily\" + : 97.0836870497182,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1646.8460339008427,\n \"hasRDI\" : true,\n \"daily\" + : 235.2637191286918,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 638.2157258502484,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.91285842780538,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.208797449600002,\n \"hasRDI\" : true,\n + \ \"daily\" : 30.347995749333336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6666493905285562,\n \"hasRDI\" : true,\n + \ \"daily\" : 44.443292701903744,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.4996705647962396,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.21591557624939,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.87453928086866,\n + \ \"hasRDI\" : true,\n \"daily\" : 374.3726964043433,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.854674846726344,\n + \ \"hasRDI\" : true,\n \"daily\" : 192.7337423363172,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.64101009967032,\n \"hasRDI\" : true,\n \"daily\" : 18.66025252491758,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.64101009967032,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.39488450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.581408431,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5850996812,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6462749203,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.951709627445125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.758548137225624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.382635391795155,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.978294239743946,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f6fa738e5eee260004693a9fae610bb2\",\n + \ \"label\" : \"Sous Vide Chicken Breast Recipe\",\n \"image\" : + \"https://www.edamam.com/web-img/e3d/e3d9d9a141a06d0c6adfb4e49b1224a5.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2015/07/sous-vide-chicken-breast-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/sous-vide-chicken-breast-recipe-f6fa738e5eee260004693a9fae610bb2/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 bone-in, + skin-on chicken breast halves\", \"Kosher salt and freshly ground black pepper\", + \"4 sprigs thyme or rosemary (optional)\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"2 bone-in, skin-on chicken breast halves\",\n \"weight\" + : 174.0\n }, {\n \"text\" : \"Kosher salt and freshly ground black + pepper\",\n \"weight\" : 1.044\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 0.522\n } + ],\n \"calories\" : 300.59022,\n \"totalWeight\" : 175.2860307047835,\n + \ \"totalTime\" : 165.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 300.59022,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 16.1120172,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 4.63566624,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.1827,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 6.65065758,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 3.41560956,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 0.33381900000000003,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.13206600000000002,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 0.0033408000000000005,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 36.333235800000004,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 111.36,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 405.84742056000005,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 21.63582736914805,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.40026030704784,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 389.7985024563827,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 1.3408075013257856,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 1.3989758307047837,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 303.58476,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 41.90094,\n \"unit\" : \"µg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.11018375999999999,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.14883960000000002,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 17.245886459999998,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 0.9237190200000001,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 7.04874,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 7.04874,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.5916,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6960000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.47522880000000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.8545140000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 15.029511,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 24.787718769230768,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 23.1783312,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.11127300000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.5282640000000001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 72.66647160000001,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 37.12,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 16.91030919,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 2.163582736914805,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 11.10006507676196,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 11.137100070182363,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.448930562921031,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.32650553803189,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 43.36925142857143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 4.65566,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 7.345584,\n \"unit\" : \"%\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 8.755270588235295,\n + \ \"unit\" : \"%\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 86.22943229999998,\n \"unit\" + : \"%\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 46.185951,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 1.7621849999999997,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 9.860000000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.17400000000000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.3761440000000005,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1.0681425,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 16.1120172,\n \"hasRDI\" : true,\n \"daily\" + : 24.787718769230768,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 4.63566624,\n \"hasRDI\" + : true,\n \"daily\" : 23.1783312,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.1827,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.65065758,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.41560956,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 0.33381900000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.11127300000000001,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.20175300000000002,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.13206600000000002,\n \"hasRDI\" + : true,\n \"daily\" : 0.5282640000000001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.0033408000000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 36.333235800000004,\n \"hasRDI\" : true,\n \"daily\" : 72.66647160000001,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 111.36,\n \"hasRDI\" : true,\n \"daily\" + : 37.12,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 405.84742056000005,\n \"hasRDI\" : true,\n \"daily\" + : 16.91030919,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 21.63582736914805,\n \"hasRDI\" : true,\n \"daily\" + : 2.163582736914805,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 44.40026030704784,\n \"hasRDI\" : true,\n \"daily\" + : 11.10006507676196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 389.7985024563827,\n \"hasRDI\" : true,\n \"daily\" + : 11.137100070182363,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.3408075013257856,\n \"hasRDI\" : true,\n \"daily\" + : 7.448930562921031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.3989758307047837,\n \"hasRDI\" : true,\n \"daily\" + : 9.32650553803189,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 303.58476,\n \"hasRDI\" : true,\n \"daily\" + : 43.36925142857143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 41.90094,\n \"hasRDI\" : true,\n \"daily\" + : 4.65566,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.11018375999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.345584,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.14883960000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.755270588235295,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.245886459999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 86.22943229999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9237190200000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.185951,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 7.04874,\n \"hasRDI\" : true,\n \"daily\" : 1.7621849999999997,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 7.04874,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5916,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.860000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6960000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.17400000000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.47522880000000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.3761440000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8545140000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0681425,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4d8130ed58d17a6463c7278770eab522\",\n + \ \"label\" : \"Chicken In A Wrap\",\n \"image\" : \"https://www.edamam.com/web-img/a5b/a5b5e63e3d1390540185b178b7436c55.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3111/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-in-a-wrap-4d8130ed58d17a6463c7278770eab522/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", + \"1.0 tbsp olive oil\", \"50.0g soft goat's cheese\", \"handful of fresh sage + leaves\", \"4 rashers streaky bacon\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 chicken breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" + : \"1.0 tbsp olive oil\",\n \"weight\" : 13.5\n }, {\n \"text\" + : \"50.0g soft goat's cheese\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"handful of fresh sage leaves\",\n \"weight\" : 16.0\n }, {\n + \ \"text\" : \"4 rashers streaky bacon\",\n \"weight\" : 116.0\n + \ } ],\n \"calories\" : 1384.02,\n \"totalWeight\" : 543.5,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1384.02,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 104.31039999999999,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 34.956540000000004,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.51968,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 46.075275,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 16.260145,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 11.2016,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.4479999999999995,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 1.4336,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 98.15800000000002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 322.28,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1218.69,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 378.535,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 177.4,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 1179.615,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n + \ \"label\" : \"Iron\",\n \"quantity\" : 8.575600000000001,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.364800000000001,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 915.1199999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 287.47999999999996,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 5.184,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.69504,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6335200000000001,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 40.27556,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.70836,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 63.760000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 63.760000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.8582,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.056,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.662450000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 283.347,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 69.201,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 160.47753846153844,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 174.78270000000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.7338666666666662,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 25.791999999999998,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 196.31600000000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 107.42666666666665,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.77875,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 37.8535,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 44.35,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 33.70328571428571,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 47.64222222222223,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 35.76533333333334,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 130.73142857142855,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 31.942222222222217,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 8.639999999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.336000000000006,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.26588235294118,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 201.3778,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 135.418,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" : {\n + \ \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 15.940000000000003,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 30.97,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.514,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 23.312250000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 354.18375,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 104.31039999999999,\n \"hasRDI\" : true,\n \"daily\" : 160.47753846153844,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 34.956540000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 174.78270000000003,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.51968,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 46.075275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.260145,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 11.2016,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.7338666666666662,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.7536,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 6.4479999999999995,\n \"hasRDI\" : true,\n + \ \"daily\" : 25.791999999999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.4336,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 98.15800000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.31600000000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 322.28,\n \"hasRDI\" : true,\n \"daily\" : 107.42666666666665,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1218.69,\n \"hasRDI\" : true,\n \"daily\" : 50.77875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 378.535,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.8535,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 177.4,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.35,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" : + \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1179.615,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.70328571428571,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.575600000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.64222222222223,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.364800000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.76533333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 915.1199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 130.73142857142855,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 287.47999999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.942222222222217,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.184,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.639999999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69504,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.336000000000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6335200000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.26588235294118,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.27556,\n + \ \"hasRDI\" : true,\n \"daily\" : 201.3778,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.70836,\n + \ \"hasRDI\" : true,\n \"daily\" : 135.418,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.760000000000005,\n \"hasRDI\" : true,\n \"daily\" : 15.940000000000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.760000000000005,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8582,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.97,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.056,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.514,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.662450000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.312250000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 283.347,\n + \ \"hasRDI\" : true,\n \"daily\" : 354.18375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_00a0855e4149525c4cc8d7bb6a35fedf\",\n + \ \"label\" : \"Summer Traybake Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/6bb/6bb81b4e38070d11d5a9f7299cb86ced.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/2495/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/summer-traybake-chicken-00a0855e4149525c4cc8d7bb6a35fedf/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4.0 tbsp pesto\", \"1.0 tbsp olive + oil\", \"4 chicken breasts\", \"250.0g cherry tomatoes\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4.0 tbsp pesto\",\n \"weight\" : 68.0\n + \ }, {\n \"text\" : \"1.0 tbsp olive oil\",\n \"weight\" + : 13.5\n }, {\n \"text\" : \"4 chicken breasts\",\n \"weight\" + : 696.0\n }, {\n \"text\" : \"250.0g cherry tomatoes\",\n \"weight\" + : 250.0\n } ],\n \"calories\" : 2025.79314,\n \"totalWeight\" + : 1027.5,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2025.79314,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 146.441846,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 32.1711622,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7308,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 77.38415199999994,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 27.030692599999934,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 16.974507199999998,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.144456,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 7.773499999999999,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.4499404,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 465.6819,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1764.79886,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 521.32402,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 349.15316,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2708.90496,\n \"unit\" : \"mg\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.187566,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 8.973756200000002,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1557.762,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 730.44942,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 62.783888000000005,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6468724,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8583286,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 72.61295519999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.174144999999999,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 179.56980000000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 179.56980000000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.5264074,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.899668,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : + {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 15.082329000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 706.88284,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.289657,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 225.2951476923077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 160.855811,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.658169066666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 24.577824,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 318.8998808,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 155.22729999999999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 73.53328583333334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 52.132402,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.28829,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 77.39728457142857,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 67.7087,\n \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 59.82504133333335,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 222.53742857142853,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 81.16104666666668,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 104.63981333333335,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 43.12482666666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 50.489917647058824,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 363.06477599999994,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 208.70724999999996,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 44.89245000000001,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 42.10679,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.724917,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : + {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 75.41164500000001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 883.60355,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 146.441846,\n \"hasRDI\" : true,\n \"daily\" + : 225.2951476923077,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.1711622,\n \"hasRDI\" + : true,\n \"daily\" : 160.855811,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7308,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 77.38415199999994,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.030692599999934,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.974507199999998,\n \"hasRDI\" : true,\n \"daily\" : 5.658169066666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.830051199999998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.144456,\n \"hasRDI\" + : true,\n \"daily\" : 24.577824,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 7.773499999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 159.4499404,\n + \ \"hasRDI\" : true,\n \"daily\" : 318.8998808,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 465.6819,\n \"hasRDI\" : true,\n \"daily\" : 155.22729999999999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1764.79886,\n \"hasRDI\" : true,\n \"daily\" : 73.53328583333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 521.32402,\n \"hasRDI\" : true,\n \"daily\" : 52.132402,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 349.15316,\n \"hasRDI\" : true,\n \"daily\" : 87.28829,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2708.90496,\n \"hasRDI\" : true,\n \"daily\" : 77.39728457142857,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.187566,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.7087,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.973756200000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.82504133333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1557.762,\n + \ \"hasRDI\" : true,\n \"daily\" : 222.53742857142853,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 730.44942,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.16104666666668,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.783888000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.63981333333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6468724,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.12482666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8583286,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.489917647058824,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.61295519999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 363.06477599999994,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.174144999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.70724999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 179.56980000000001,\n \"hasRDI\" : true,\n \"daily\" : 44.89245000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 179.56980000000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5264074,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.10679,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.899668,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.724917,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.082329000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 75.41164500000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 706.88284,\n + \ \"hasRDI\" : true,\n \"daily\" : 883.60355,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_95fa6f5689286a4ffab774da45192494\",\n + \ \"label\" : \"Thomato Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a23/a2300a1c6b33bee0963f380782d48e27.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/94602/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/thomato-chicken-95fa6f5689286a4ffab774da45192494/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"2 tsp capers\", + \"1 large onion\", \"6 cherry tomatoes\", \"1.5 tsp oregano\", \"3 teaspoons + of tomato puree\", \"1 red pepper\", \"1 tin chopped tomatoes\", \"5 sun-dried + tomatoes\", \"1 teaspoon basil\", \"Salt and pepper to taste\", \"Olive oil + for frying chicken\" ],\n \"ingredients\" : [ {\n \"text\" : \"2 + chicken breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" + : \"2 tsp capers\",\n \"weight\" : 4.733333333333333\n }, {\n + \ \"text\" : \"1 large onion\",\n \"weight\" : 150.0\n }, + {\n \"text\" : \"6 cherry tomatoes\",\n \"weight\" : 90.0\n + \ }, {\n \"text\" : \"1.5 tsp oregano\",\n \"weight\" : + 1.5\n }, {\n \"text\" : \"3 teaspoons of tomato puree\",\n \"weight\" + : 15.625000000000002\n }, {\n \"text\" : \"1 red pepper\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"1 tin chopped tomatoes\",\n \"weight\" + : 190.0\n }, {\n \"text\" : \"5 sun-dried tomatoes\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"1 teaspoon basil\",\n \"weight\" + : 0.5\n }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 5.57615\n }, {\n \"text\" : \"Salt and pepper to taste\",\n + \ \"weight\" : 2.788075\n }, {\n \"text\" : \"Olive oil + for frying chicken\",\n \"weight\" : 12.639273333333334\n } ],\n + \ \"calories\" : 2029.3843472666667,\n \"totalWeight\" : 1077.7013467005797,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2029.3843472666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 174.53919416166667,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 28.984279548866667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 116.1346429920875,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 22.187313543845836,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 41.3203089625,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.768224641666666,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 23.183787846666664,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.90005015916668,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2494.7860878939505,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 208.2887625289724,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 178.92232379617246,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2284.303908290213,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.63648932840358,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.070371313783913,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 783.0884918333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 358.2916135833333,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 205.23728333333332,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.541694371,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6403478683333335,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 38.977151530583335,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.732114464916667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 25.298639881458335,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 125.1165757925,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.46921736333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.52183717179486,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 144.92139774433332,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.773436320833333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 51.072898566666666,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.80010031833336,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.9494203289146,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 20.82887625289724,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.730580949043116,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.26582595114894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.42494071335322,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 27.135808758559424,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 111.86978454761903,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 39.81017928703704,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 342.06213888888885,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 102.77962473333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.66752166666667,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 194.88575765291665,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 136.60572324583336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 34.959097354166666,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 19.720000000000002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.34800000000000003,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 126.49319940729167,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 156.395719740625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 174.53919416166667,\n \"hasRDI\" : true,\n \"daily\" : 268.52183717179486,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 28.984279548866667,\n \"hasRDI\" : true,\n + \ \"daily\" : 144.92139774433332,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.3654,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 116.1346429920875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.187313543845836,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 41.3203089625,\n \"hasRDI\" : true,\n \"daily\" : 13.773436320833333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.552084320833334,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.768224641666666,\n \"hasRDI\" + : true,\n \"daily\" : 51.072898566666666,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 23.183787846666664,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 79.90005015916668,\n \"hasRDI\" : true,\n \"daily\" : 159.80010031833336,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 222.72,\n \"hasRDI\" : true,\n \"daily\" + : 74.24,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2494.7860878939505,\n \"hasRDI\" : true,\n \"daily\" + : 103.9494203289146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.2887625289724,\n \"hasRDI\" : true,\n \"daily\" + : 20.82887625289724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 178.92232379617246,\n \"hasRDI\" : true,\n \"daily\" + : 44.730580949043116,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2284.303908290213,\n \"hasRDI\" : true,\n \"daily\" + : 65.26582595114894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.63648932840358,\n \"hasRDI\" : true,\n \"daily\" + : 42.42494071335322,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.070371313783913,\n \"hasRDI\" : true,\n \"daily\" + : 27.135808758559424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 783.0884918333333,\n \"hasRDI\" : true,\n \"daily\" + : 111.86978454761903,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 358.2916135833333,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.81017928703704,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 205.23728333333332,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.06213888888885,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.541694371,\n \"hasRDI\" : true,\n \"daily\" + : 102.77962473333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6403478683333335,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.66752166666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 38.977151530583335,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.88575765291665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.732114464916667,\n \"hasRDI\" : true,\n + \ \"daily\" : 136.60572324583336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.959097354166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1832,\n \"hasRDI\" : true,\n \"daily\" + : 19.720000000000002,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3920000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34800000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 25.298639881458335,\n \"hasRDI\" : true,\n + \ \"daily\" : 126.49319940729167,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.1165757925,\n \"hasRDI\" : true,\n + \ \"daily\" : 156.395719740625,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_828393c017fcc196f910ca884dd4f88d\",\n + \ \"label\" : \"Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/530/53086a28442e65f61bd8e68abd7f58f7.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/4527-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roasted-chicken-828393c017fcc196f910ca884dd4f88d/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 whole chicken (3-4 lbs.)\", \"3-4 + carrots, peeled and sliced\", \"3 celery ribs, sliced\", \"1 onion, roughly + chopped\", \"3 tablespoons olive oil\", \"2 teaspoons dried thyme\", \"2 teaspoons + herbs de provence\", \"1 teaspoon dried sage\", \"Salt and pepper\", \"2 cups + chicken stock\", \"5 sliced wheat bread, cubed\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole chicken (3-4 lbs.)\",\n \"weight\" + : 1587.5732950000001\n }, {\n \"text\" : \"3-4 carrots, peeled + and sliced\",\n \"weight\" : 213.5\n }, {\n \"text\" : + \"3 celery ribs, sliced\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"1 onion, roughly chopped\",\n \"weight\" : 125.0\n }, {\n + \ \"text\" : \"3 tablespoons olive oil\",\n \"weight\" : 40.5\n + \ }, {\n \"text\" : \"2 teaspoons dried thyme\",\n \"weight\" + : 2.0\n }, {\n \"text\" : \"2 teaspoons herbs de provence\",\n + \ \"weight\" : 2.0\n }, {\n \"text\" : \"1 teaspoon dried + sage\",\n \"weight\" : 0.7\n }, {\n \"text\" : \"Salt and + pepper\",\n \"weight\" : 16.27813977\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 8.139069885\n }, {\n \"text\" + : \"2 cups chicken stock\",\n \"weight\" : 480.0\n }, {\n \"text\" + : \"5 sliced wheat bread, cubed\",\n \"weight\" : 141.75\n } ],\n + \ \"calories\" : 3420.73372270135,\n \"totalWeight\" : 2731.2578392487335,\n + \ \"totalTime\" : 176.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 3420.73372270135,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.926089672611,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 55.2166364826592,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.084018345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 100.74371527989015,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 42.78550026883231,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 129.8278451914575,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 19.514284680905,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 33.121785047264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 233.5608797126515,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 824.06238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6328.00865629277,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 594.930975903846,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 376.0322323669872,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4122.377575454749,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 23.005282316633817,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 17.768878317855233,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2089.0574961003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 2268.402983514951,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 46.3095974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.6621905998358,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.321029634513,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 91.94810922799155,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 4.8265116354653514,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 350.88213231645,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 302.68713231645,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 28.35,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 3.34660450586,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.1590996812000003,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 11.658030848604,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 206.227155010745,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 171.0366861350675,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 330.6555225732477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 276.08318241329596,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 43.2759483971525,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 78.05713872362,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 467.121759425303,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 274.68746015,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 263.66702734553206,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 59.49309759038461,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 94.0080580917468,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 117.78221644156424,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 127.80712398129897,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 118.45918878570156,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 298.4367851571857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 252.04477594610566,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 77.182662416,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 110.81270665571999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 136.53115497135295,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 459.74054613995776,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 241.32558177326757,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 87.7205330791125,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 58.29015424301999,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 257.78394376343124,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 214.926089672611,\n \"hasRDI\" : true,\n \"daily\" : 330.6555225732477,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 55.2166364826592,\n \"hasRDI\" : true,\n \"daily\" + : 276.08318241329596,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.084018345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 100.74371527989015,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.78550026883231,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 129.8278451914575,\n \"hasRDI\" : true,\n \"daily\" : 43.2759483971525,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 110.31356051055249,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 19.514284680905,\n \"hasRDI\" + : true,\n \"daily\" : 78.05713872362,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 33.121785047264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 233.5608797126515,\n \"hasRDI\" : true,\n \"daily\" : 467.121759425303,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 824.06238045,\n \"hasRDI\" : true,\n \"daily\" + : 274.68746015,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6328.00865629277,\n \"hasRDI\" : true,\n \"daily\" + : 263.66702734553206,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 594.930975903846,\n \"hasRDI\" : true,\n \"daily\" + : 59.49309759038461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 376.0322323669872,\n \"hasRDI\" : true,\n \"daily\" + : 94.0080580917468,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4122.377575454749,\n \"hasRDI\" : true,\n \"daily\" + : 117.78221644156424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.005282316633817,\n \"hasRDI\" : true,\n \"daily\" + : 127.80712398129897,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.768878317855233,\n \"hasRDI\" : true,\n \"daily\" + : 118.45918878570156,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2089.0574961003,\n \"hasRDI\" : true,\n \"daily\" + : 298.4367851571857,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2268.402983514951,\n \"hasRDI\" : true,\n + \ \"daily\" : 252.04477594610566,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.3095974496,\n \"hasRDI\" : true,\n + \ \"daily\" : 77.182662416,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6621905998358,\n \"hasRDI\" : true,\n + \ \"daily\" : 110.81270665571999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.321029634513,\n \"hasRDI\" + : true,\n \"daily\" : 136.53115497135295,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 91.94810922799155,\n + \ \"hasRDI\" : true,\n \"daily\" : 459.74054613995776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.8265116354653514,\n + \ \"hasRDI\" : true,\n \"daily\" : 241.32558177326757,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 350.88213231645,\n \"hasRDI\" : true,\n \"daily\" : 87.7205330791125,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 302.68713231645,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.35,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.658030848604,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.29015424301999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 206.227155010745,\n + \ \"hasRDI\" : true,\n \"daily\" : 257.78394376343124,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8365a9928c7c6f8666c9798aff01c17f\",\n + \ \"label\" : \"Roat chicken 1-2-3\",\n \"image\" : \"https://www.edamam.com/web-img/2f1/2f1c8172d5488a6efe98cbcb5b2c8fb6.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/3857-roat-chicken-1-2-3\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roat-chicken-1-2-3-8365a9928c7c6f8666c9798aff01c17f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"3.5 pounds + whole chicken\", \"1 drizzle oil (any kind wil do)\", \"1 whole lemon stabbed + 12 times\" ],\n \"ingredients\" : [ {\n \"text\" : \"3.5 pounds + whole chicken\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"1 drizzle oil (any kind wil do)\",\n \"weight\" : 22.379796812000002\n + \ }, {\n \"text\" : \"1 whole lemon stabbed 12 times\",\n \"weight\" + : 58.0\n } ],\n \"calories\" : 3627.9399880680803,\n \"totalWeight\" + : 1667.9530918120001,\n \"totalTime\" : 184.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3627.9399880680803,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 261.64233503900005,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 70.0953010497038,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.6283462935574002,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 113.23199383876113,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 57.628359847333044,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.4056,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 1.6239999999999999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.45,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 295.92663287000005,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1190.67997125,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1112.4613065,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 189.71306245,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 322.15465900000004,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3080.55352755,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 14.636159655000002,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 20.832010164500005,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2343.0127436500006,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 651.4850509500001,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 56.14117272,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.975743977,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.9166879540000001,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 108.02885979295002,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.6029065325000005,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 101.63439770000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.63439770000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.9214772145,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.1751465900000007,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.7572324083752,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 39.770394551956,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 181.396999403404,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 402.5266692907693,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 350.476505248519,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.8018666666666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.495999999999999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 591.8532657400001,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 396.89332375000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 46.352554437500004,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.971306245,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.53866475000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 88.01581507285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.31199808333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 138.8800677633334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 334.7161062357144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.38722788333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 93.56862120000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 65.04959846666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 112.74635023529413,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 540.1442989647501,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 280.14532662500005,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 25.408599425000002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 82.02462024166667,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7937866475000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 43.786162041876004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 49.712993189945,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 261.64233503900005,\n \"hasRDI\" : true,\n \"daily\" : 402.5266692907693,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.0953010497038,\n \"hasRDI\" : true,\n \"daily\" + : 350.476505248519,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.6283462935574002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 113.23199383876113,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 57.628359847333044,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 5.4056,\n \"hasRDI\" : true,\n \"daily\" : 1.8018666666666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.7816,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.6239999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.495999999999999,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.45,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 295.92663287000005,\n \"hasRDI\" + : true,\n \"daily\" : 591.8532657400001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1190.67997125,\n + \ \"hasRDI\" : true,\n \"daily\" : 396.89332375000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1112.4613065,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.352554437500004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 189.71306245,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.971306245,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 322.15465900000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.53866475000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3080.55352755,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.01581507285714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.636159655000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.31199808333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 20.832010164500005,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.8800677633334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2343.0127436500006,\n + \ \"hasRDI\" : true,\n \"daily\" : 334.7161062357144,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 651.4850509500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.38722788333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 56.14117272,\n + \ \"hasRDI\" : true,\n \"daily\" : 93.56862120000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.975743977,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.04959846666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.9166879540000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 112.74635023529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 108.02885979295002,\n + \ \"hasRDI\" : true,\n \"daily\" : 540.1442989647501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.6029065325000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 280.14532662500005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.63439770000001,\n \"hasRDI\" : true,\n \"daily\" : 25.408599425000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.63439770000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.9214772145,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.02462024166667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1751465900000007,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7937866475000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.7572324083752,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.786162041876004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.770394551956,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.712993189945,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_418a24a28cfc033a1804ad5d12c5a37b\",\n + \ \"label\" : \"Thomato Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/561/56100df8491403ea215cea3c782faec9.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/94602/thomato-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/thomato-chicken-418a24a28cfc033a1804ad5d12c5a37b/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"2 tsp capers\", + \"1 large onion\", \"6 cherry tomatoes\", \"1.5 tsp oregano\", \"3 tsps of + tomato puree\", \"1 red pepper\", \"1 tin chopped tomatoes\", \"5 sun-dried + tomatoes\", \"1 tsp basil\", \"Salt and pepper to taste\", \"Olive oil for + frying chicken\" ],\n \"ingredients\" : [ {\n \"text\" : \"2 chicken + breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" : \"2 + tsp capers\",\n \"weight\" : 4.733333333333333\n }, {\n \"text\" + : \"1 large onion\",\n \"weight\" : 150.0\n }, {\n \"text\" + : \"6 cherry tomatoes\",\n \"weight\" : 90.0\n }, {\n \"text\" + : \"1.5 tsp oregano\",\n \"weight\" : 1.5\n }, {\n \"text\" + : \"3 tsps of tomato puree\",\n \"weight\" : 15.625000000000002\n }, + {\n \"text\" : \"1 red pepper\",\n \"weight\" : 119.0\n }, + {\n \"text\" : \"1 tin chopped tomatoes\",\n \"weight\" : 190.0\n + \ }, {\n \"text\" : \"5 sun-dried tomatoes\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"1 tsp basil\",\n \"weight\" + : 0.5\n }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 5.57615\n }, {\n \"text\" : \"Salt and pepper to taste\",\n + \ \"weight\" : 2.788075\n }, {\n \"text\" : \"Olive oil + for frying chicken\",\n \"weight\" : 12.639273333333334\n } ],\n + \ \"calories\" : 2029.3843472666667,\n \"totalWeight\" : 1077.7013467005797,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2029.3843472666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 174.53919416166667,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 28.984279548866667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 116.1346429920875,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 22.187313543845836,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 41.3203089625,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.768224641666666,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 23.183787846666664,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.90005015916668,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2494.7860878939505,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 208.2887625289724,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 178.92232379617246,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2284.303908290213,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.63648932840358,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.070371313783913,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 783.0884918333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 358.2916135833333,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 205.23728333333332,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.541694371,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6403478683333335,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 38.977151530583335,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.732114464916667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 25.298639881458335,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 125.1165757925,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.46921736333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.52183717179486,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 144.92139774433332,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.773436320833333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 51.072898566666666,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.80010031833336,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.9494203289146,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 20.82887625289724,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.730580949043116,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.26582595114894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.42494071335322,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 27.135808758559424,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 111.86978454761903,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 39.81017928703704,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 342.06213888888885,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 102.77962473333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.66752166666667,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 194.88575765291665,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 136.60572324583336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 34.959097354166666,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 19.720000000000002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.34800000000000003,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 126.49319940729167,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 156.395719740625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 174.53919416166667,\n \"hasRDI\" : true,\n \"daily\" : 268.52183717179486,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 28.984279548866667,\n \"hasRDI\" : true,\n + \ \"daily\" : 144.92139774433332,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.3654,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 116.1346429920875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.187313543845836,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 41.3203089625,\n \"hasRDI\" : true,\n \"daily\" : 13.773436320833333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.552084320833334,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.768224641666666,\n \"hasRDI\" + : true,\n \"daily\" : 51.072898566666666,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 23.183787846666664,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 79.90005015916668,\n \"hasRDI\" : true,\n \"daily\" : 159.80010031833336,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 222.72,\n \"hasRDI\" : true,\n \"daily\" + : 74.24,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2494.7860878939505,\n \"hasRDI\" : true,\n \"daily\" + : 103.9494203289146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.2887625289724,\n \"hasRDI\" : true,\n \"daily\" + : 20.82887625289724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 178.92232379617246,\n \"hasRDI\" : true,\n \"daily\" + : 44.730580949043116,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2284.303908290213,\n \"hasRDI\" : true,\n \"daily\" + : 65.26582595114894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.63648932840358,\n \"hasRDI\" : true,\n \"daily\" + : 42.42494071335322,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.070371313783913,\n \"hasRDI\" : true,\n \"daily\" + : 27.135808758559424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 783.0884918333333,\n \"hasRDI\" : true,\n \"daily\" + : 111.86978454761903,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 358.2916135833333,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.81017928703704,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 205.23728333333332,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.06213888888885,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.541694371,\n \"hasRDI\" : true,\n \"daily\" + : 102.77962473333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6403478683333335,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.66752166666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 38.977151530583335,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.88575765291665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.732114464916667,\n \"hasRDI\" : true,\n + \ \"daily\" : 136.60572324583336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.959097354166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1832,\n \"hasRDI\" : true,\n \"daily\" + : 19.720000000000002,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3920000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34800000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 25.298639881458335,\n \"hasRDI\" : true,\n + \ \"daily\" : 126.49319940729167,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.1165757925,\n \"hasRDI\" : true,\n + \ \"daily\" : 156.395719740625,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_afbee3095f748690f2f006e4e2f7abcf\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/ffb/ffbcb7f308985099ba4b519ae4364f9d.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/33127-chicken-marsala\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-afbee3095f748690f2f006e4e2f7abcf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"8 ounces fresh button or cremini mushrooms, stems removed and sliced\", + \"2 tablespoons extra-virgin olive oil, divided\", \"2 boneless, skinless + chicken breasts\", \"Salt and pepper, to taste\", \"1/2 cup plus 1 splash + sweet Marsala wine, divided\", \"3 garlic cloves, minced\", \"1/2 cup heavy + cream\", \"1/2 cup chicken broth\", \"2 tablespoons unsalted butter\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"8 ounces fresh button or + cremini mushrooms, stems removed and sliced\",\n \"weight\" : 226.796185\n + \ }, {\n \"text\" : \"2 tablespoons extra-virgin olive oil, divided\",\n + \ \"weight\" : 27.0\n }, {\n \"text\" : \"2 boneless, skinless + chicken breasts\",\n \"weight\" : 544.0\n }, {\n \"text\" + : \"Salt and pepper, to taste\",\n \"weight\" : 7.1531771100000014\n + \ }, {\n \"text\" : \"Salt and pepper, to taste\",\n \"weight\" + : 3.5765885550000007\n }, {\n \"text\" : \"1/2 cup plus 1 splash + sweet Marsala wine, divided\",\n \"weight\" : 118.0\n }, {\n \"text\" + : \"1/2 cup plus 1 splash sweet Marsala wine, divided\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"3 garlic cloves, minced\",\n \"weight\" + : 9.0\n }, {\n \"text\" : \"1/2 cup heavy cream\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"1/2 cup chicken broth\",\n \"weight\" + : 120.0\n }, {\n \"text\" : \"2 tablespoons unsalted butter\",\n + \ \"weight\" : 28.4\n } ],\n \"calories\" : 1719.0803979730501,\n + \ \"totalWeight\" : 1201.690799718981,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1719.0803979730501,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 110.146432971893,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 49.262219578585594,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.9690319999999999,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 42.86429091312145,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 8.056000751478901,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.797604335922504,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.4546540144150004,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 10.179124548752002,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 134.8014121758645,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 624.81,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2780.7456694466814,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 199.0539268780054,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 207.83480334068983,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3256.259212789069,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 4.320980975031636,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.967497464968482,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1586.8924319169,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 723.59167890985,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.7619999999999996,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8241790913894002,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.3602151658990005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 63.101153437183655,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.951585676195052,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 119.32906630435004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 119.32906630435004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.6316761850000001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.4857961849999999,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.944256139472001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 29.385875464535,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 85.9540198986525,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 169.45605072598926,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 246.31109789292796,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.599201445307502,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 9.818616057660002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 269.602824351729,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 208.26999999999998,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 115.86440289361173,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.90539268780054,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.95870083517246,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.03597750825911,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 24.005449861286866,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 46.44998309978988,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 226.69891884527144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 80.39907543442779,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 6.269999999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 54.945272759293346,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 138.83618622935296,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.5057671859183,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 247.57928380975258,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 29.83226657608751,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 27.194603083333334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.37144904624999997,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 44.72128069736,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 36.73234433066875,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 110.146432971893,\n \"hasRDI\" + : true,\n \"daily\" : 169.45605072598926,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 49.262219578585594,\n \"hasRDI\" : true,\n \"daily\" : + 246.31109789292796,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9690319999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 42.86429091312145,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.056000751478901,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 25.797604335922504,\n \"hasRDI\" : true,\n \"daily\" : 8.599201445307502,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 23.3429503215075,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.4546540144150004,\n \"hasRDI\" + : true,\n \"daily\" : 9.818616057660002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 10.179124548752002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 134.8014121758645,\n \"hasRDI\" : true,\n \"daily\" : 269.602824351729,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 624.81,\n \"hasRDI\" : true,\n \"daily\" + : 208.26999999999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2780.7456694466814,\n \"hasRDI\" : true,\n \"daily\" + : 115.86440289361173,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 199.0539268780054,\n \"hasRDI\" : true,\n \"daily\" + : 19.90539268780054,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 207.83480334068983,\n \"hasRDI\" : true,\n \"daily\" + : 51.95870083517246,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3256.259212789069,\n \"hasRDI\" : true,\n \"daily\" + : 93.03597750825911,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.320980975031636,\n \"hasRDI\" : true,\n \"daily\" + : 24.005449861286866,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.967497464968482,\n \"hasRDI\" : true,\n \"daily\" + : 46.44998309978988,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1586.8924319169,\n \"hasRDI\" : true,\n \"daily\" + : 226.69891884527144,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 723.59167890985,\n \"hasRDI\" : true,\n + \ \"daily\" : 80.39907543442779,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.7619999999999996,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.269999999999999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8241790913894002,\n \"hasRDI\" : true,\n + \ \"daily\" : 54.945272759293346,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.3602151658990005,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.83618622935296,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.101153437183655,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.5057671859183,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.951585676195052,\n + \ \"hasRDI\" : true,\n \"daily\" : 247.57928380975258,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 119.32906630435004,\n \"hasRDI\" : true,\n \"daily\" : 29.83226657608751,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 119.32906630435004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.6316761850000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 27.194603083333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.4857961849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.37144904624999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.944256139472001,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.72128069736,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.385875464535,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.73234433066875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b7d3f322f6ff52137f33c9f0fac2e503\",\n + \ \"label\" : \"Kahlua Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/527/527d3ad36e9961591dea41a7c1bf88ff.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/12596-kahlua-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/kahlua-chicken-b7d3f322f6ff52137f33c9f0fac2e503/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"1 pound boneless, + skinless chicken breasts\", \"1/2 cup kahlua\", \"1/2 cup soy sauce\", \"3 + tablespoons red wine vinegar\", \"1 teaspoon ginger\", \"1 tablespoon cornstarch\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound boneless, skinless + chicken breasts\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1/2 cup kahlua\",\n \"weight\" : 130.4\n }, {\n \"text\" + : \"1/2 cup soy sauce\",\n \"weight\" : 127.5\n }, {\n \"text\" + : \"3 tablespoons red wine vinegar\",\n \"weight\" : 44.7\n }, + {\n \"text\" : \"1 teaspoon ginger\",\n \"weight\" : 2.0\n }, + {\n \"text\" : \"1 tablespoon cornstarch\",\n \"weight\" : 8.0\n + \ } ],\n \"calories\" : 961.5068440000002,\n \"totalWeight\" + : 766.1923700000001,\n \"totalTime\" : 359.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 961.5068440000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 22.540270094,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 11.2201640431,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.031751465900000005,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 3.8181794293,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 2.4422846488000003,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 50.05384000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.2624000000000004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.5440000000000002,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 113.29426325000001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 331.12243010000003,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 7304.831566500001,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 69.2206185,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 232.06786360000007,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2203.8285158000003,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.8169117690000003,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.4794881160000015,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1230.0417481000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 33.0554659,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 2.2795,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.49111982780000013,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.0204334949,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 46.495383520000004,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.892702120700001,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 66.7173133,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 66.7173133,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.952543977,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.535923700000001,\n \"unit\" : \"IU\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.5453172720000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.9091847400000002,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 48.075342200000016,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 34.67733860615385,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 56.10082021550001,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.684613333333335,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.049600000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 226.58852650000006,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 110.37414336666669,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 304.3679819375001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.92206185,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.01696590000002,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 62.96652902285716,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 21.205065383333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 29.863254106666677,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 175.72024972857145,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 3.6728295444444443,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.799166666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 32.74132185333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 60.0254997,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 232.47691760000004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 194.63510603500004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 16.679328325,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 15.87573295,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1339809250000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 12.726586360000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1.1364809250000003,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 22.540270094,\n \"hasRDI\" : true,\n \"daily\" + : 34.67733860615385,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 11.2201640431,\n \"hasRDI\" + : true,\n \"daily\" : 56.10082021550001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.031751465900000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8181794293,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4422846488000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 50.05384000000001,\n \"hasRDI\" : true,\n \"daily\" : 16.684613333333335,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 48.79144000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.2624000000000004,\n \"hasRDI\" + : true,\n \"daily\" : 5.049600000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.5440000000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 113.29426325000001,\n \"hasRDI\" : true,\n \"daily\" : 226.58852650000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 331.12243010000003,\n \"hasRDI\" : true,\n \"daily\" + : 110.37414336666669,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 7304.831566500001,\n \"hasRDI\" : true,\n \"daily\" + : 304.3679819375001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 69.2206185,\n \"hasRDI\" : true,\n \"daily\" + : 6.92206185,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 232.06786360000007,\n \"hasRDI\" : true,\n \"daily\" + : 58.01696590000002,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2203.8285158000003,\n \"hasRDI\" : true,\n \"daily\" + : 62.96652902285716,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3.8169117690000003,\n \"hasRDI\" : true,\n \"daily\" + : 21.205065383333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.4794881160000015,\n \"hasRDI\" : true,\n \"daily\" + : 29.863254106666677,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1230.0417481000002,\n \"hasRDI\" : true,\n \"daily\" + : 175.72024972857145,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 33.0554659,\n \"hasRDI\" : true,\n \"daily\" + : 3.6728295444444443,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.2795,\n \"hasRDI\" : true,\n \"daily\" + : 3.799166666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.49111982780000013,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.74132185333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.0204334949,\n \"hasRDI\" + : true,\n \"daily\" : 60.0254997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.495383520000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 232.47691760000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.892702120700001,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.63510603500004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.7173133,\n \"hasRDI\" + : true,\n \"daily\" : 16.679328325,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.7173133,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.952543977,\n \"hasRDI\" : true,\n \"daily\" + : 15.87573295,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.535923700000001,\n \"hasRDI\" : true,\n \"daily\" + : 1.1339809250000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.5453172720000006,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.726586360000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9091847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 1.1364809250000003,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1f0be3c2998a2f05982bd13ccf1bfde5\",\n + \ \"label\" : \"Vinegar-Glossed Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/060/06021bd858aea28316aaf020c5033bac.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/27811/recipes-vinegar-glosse-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/vinegar-glossed-chicken-1f0be3c2998a2f05982bd13ccf1bfde5/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 cup best-quality + red-wine vinegar\", \"2 to 3 garlic cloves, minced (about 2 tablespoons)\", + \"3 sprigs of fresh rosemary (about 1 tablespoon minced)\", \"5 1/2 pounds + bone-in chicken pieces (large pieces, such as breast, should be cut in half)\", + \"Coarse salt and freshly ground black pepper\", \"Extra-virgin olive oil\", + \"3/4 cup chicken broth, plus more as needed\" ],\n \"ingredients\" : + [ {\n \"text\" : \"1 cup best-quality red-wine vinegar\",\n \"weight\" + : 239.0\n }, {\n \"text\" : \"2 to 3 garlic cloves, minced (about + 2 tablespoons)\",\n \"weight\" : 17.0\n }, {\n \"text\" + : \"3 sprigs of fresh rosemary (about 1 tablespoon minced)\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"5 1/2 pounds bone-in chicken pieces + (large pieces, such as breast, should be cut in half)\",\n \"weight\" + : 2494.7580350000003\n }, {\n \"text\" : \"Coarse salt and freshly + ground black pepper\",\n \"weight\" : 17.67454821\n }, {\n \"text\" + : \"Coarse salt and freshly ground black pepper\",\n \"weight\" : 8.837274105\n + \ }, {\n \"text\" : \"Extra-virgin olive oil\",\n \"weight\" + : 40.062309276\n }, {\n \"text\" : \"3/4 cup chicken broth, plus + more as needed\",\n \"weight\" : 180.0\n } ],\n \"calories\" + : 5895.252147253391,\n \"totalWeight\" : 3007.3822354223494,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 5895.252147253391,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 419.1849644828231,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 114.19751982887168,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.4199152939500004,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 186.19154031049834,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 85.44551733118139,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 21.3759367901475,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 4.707830348565,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 3.0705585542720004,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 471.15248728950957,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1876.4685262500002,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6964.016398392647,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 415.0870393178338,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 548.8505918899637,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5284.538651461518,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 26.31726179877755,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 33.45961843739086,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3784.8872045359003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1048.9368583583503,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 50.04512856,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.6087990770334002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.2041167353890003,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 172.87650400337017,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 9.127519590145551,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 177.04781869785,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 177.04781869785,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.733749908500001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 4.9895160700000005,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.392723136798002,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 76.65449841903701,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 294.76260736266954,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 644.8999453581894,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 570.9875991443585,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.125312263382499,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 18.83132139426,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 942.3049745790191,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 625.4895087500001,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 290.16734993302697,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 41.50870393178338,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 137.2126479724909,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 150.98681861318624,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 146.2070099932086,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 223.06412291593907,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 540.6981720765572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 116.54853981759447,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 83.4085476,\n \"unit\" : \"%\"\n },\n \"THIA\" : + {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 107.25327180222668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 188.47745502288237,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 864.3825200168509,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 456.3759795072776,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 44.2619546744625,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 128.89583180833336,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.2473790175000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 66.96361568399001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 95.81812302379626,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 419.1849644828231,\n \"hasRDI\" : true,\n \"daily\" : 644.8999453581894,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 114.19751982887168,\n \"hasRDI\" : true,\n + \ \"daily\" : 570.9875991443585,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.4199152939500004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 186.19154031049834,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.44551733118139,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 21.3759367901475,\n \"hasRDI\" : true,\n \"daily\" : 7.125312263382499,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.6681064415825,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 4.707830348565,\n \"hasRDI\" + : true,\n \"daily\" : 18.83132139426,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 3.0705585542720004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 471.15248728950957,\n \"hasRDI\" : true,\n \"daily\" : 942.3049745790191,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1876.4685262500002,\n \"hasRDI\" : true,\n \"daily\" + : 625.4895087500001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6964.016398392647,\n \"hasRDI\" : true,\n \"daily\" + : 290.16734993302697,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 415.0870393178338,\n \"hasRDI\" : true,\n \"daily\" + : 41.50870393178338,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 548.8505918899637,\n \"hasRDI\" : true,\n \"daily\" + : 137.2126479724909,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5284.538651461518,\n \"hasRDI\" : true,\n \"daily\" + : 150.98681861318624,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 26.31726179877755,\n \"hasRDI\" : true,\n \"daily\" + : 146.2070099932086,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 33.45961843739086,\n \"hasRDI\" : true,\n \"daily\" + : 223.06412291593907,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3784.8872045359003,\n \"hasRDI\" : true,\n \"daily\" + : 540.6981720765572,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1048.9368583583503,\n \"hasRDI\" : true,\n + \ \"daily\" : 116.54853981759447,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 50.04512856,\n \"hasRDI\" : true,\n \"daily\" + : 83.4085476,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.6087990770334002,\n \"hasRDI\" : true,\n + \ \"daily\" : 107.25327180222668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.2041167353890003,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.47745502288237,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 172.87650400337017,\n + \ \"hasRDI\" : true,\n \"daily\" : 864.3825200168509,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.127519590145551,\n + \ \"hasRDI\" : true,\n \"daily\" : 456.3759795072776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 177.04781869785,\n \"hasRDI\" : true,\n \"daily\" : 44.2619546744625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 177.04781869785,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.733749908500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.89583180833336,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.9895160700000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.2473790175000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.392723136798002,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.96361568399001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 76.65449841903701,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.81812302379626,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b821989b11e1b1a162896e0043965aca\",\n + \ \"label\" : \"Chicken Soup\",\n \"image\" : \"https://www.edamam.com/web-img/fbd/fbd757a1bfb9099cae185fbbdb376035.jpg\",\n + \ \"source\" : \"Pioneer Woman\",\n \"url\" : \"http://thepioneerwoman.com/cooking/2011/12/chunky-chicken-soup/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-soup-b821989b11e1b1a162896e0043965aca/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"1 whole Chicken\", \"1 whole Bay Leaf\", \"64 ounces, fluid Unsalted + (or Low Sodium) Chicken Broth (you May Use Half Broth And Half Water If Desired.)\", + \"1 whole Large Onion, Chopped\", \"3 whole Ribs Of Celery, Sliced\", \"3 + whole Carrots, Peeled And Chopped\", \"3 whole Parsnips, Peeled And Chopped\", + \"1/2 teaspoon Salt\", \"Ground Black Pepper\" ],\n \"ingredients\" : + [ {\n \"text\" : \"1 whole Chicken\",\n \"weight\" : 920.0\n + \ }, {\n \"text\" : \"1 whole Bay Leaf\",\n \"weight\" : + 0.6\n }, {\n \"text\" : \"64 ounces, fluid Unsalted (or Low Sodium) + Chicken Broth (you May Use Half Broth And Half Water If Desired.)\",\n \"weight\" + : 1814.36948\n }, {\n \"text\" : \"1 whole Large Onion, Chopped\",\n + \ \"weight\" : 156.25\n }, {\n \"text\" : \"3 whole Ribs + Of Celery, Sliced\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"3 whole Carrots, Peeled And Chopped\",\n \"weight\" : 183.0\n }, + {\n \"text\" : \"3 whole Parsnips, Peeled And Chopped\",\n \"weight\" + : 399.0\n }, {\n \"text\" : \"1/2 teaspoon Salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"Ground Black Pepper\",\n \"weight\" + : 10.78865844\n } ],\n \"calories\" : 2753.2366494843995,\n \"totalWeight\" + : 3607.00813844,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2753.2366494844,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 151.83653714514404,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 43.4468144946848,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8924000000000001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 63.000153061071615,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 32.6465188560312,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 136.59085083238,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 32.13858058532,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 38.486927738016,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 217.61064121191606,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 690.0000000000001,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2621.766575688,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 515.2600360892001,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 387.8373007324,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 6067.928023467601,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.876879642524,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 17.234879515436003,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2335.8874243352,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1936.4169377787998,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 108.9085,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.1406607511152,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.086483929192,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 92.71854624196922,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.3312119440604,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 433.10157193480006,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 433.10157193480006,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.66636948,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.380352047776,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 181.17703386628,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 137.66183247421998,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 233.5946725309908,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 217.23407247342402,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.53028361079333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 128.55432234128,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 435.22128242383206,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 109.24027398700001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 51.52600360892001,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 96.9593251831,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 173.3693720990743,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 93.76044245846667,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 114.89919676957335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 333.6982034764572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 215.15743753097777,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 181.51416666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 76.04405007434667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 122.734348776,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 463.5927312098461,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 216.56059720302002,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 108.27539298370002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 77.77282466666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.4600000000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.90176023888,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 226.47129233285,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 151.83653714514404,\n \"hasRDI\" + : true,\n \"daily\" : 233.5946725309908,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 43.4468144946848,\n \"hasRDI\" : true,\n \"daily\" : 217.23407247342402,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.8924000000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 63.000153061071615,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.6465188560312,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 136.59085083238,\n \"hasRDI\" : true,\n \"daily\" : 45.53028361079333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 104.45227024706,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 32.13858058532,\n \"hasRDI\" + : true,\n \"daily\" : 128.55432234128,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 38.486927738016,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 217.61064121191606,\n \"hasRDI\" : true,\n \"daily\" : 435.22128242383206,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 230.00000000000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2621.766575688,\n \"hasRDI\" : true,\n \"daily\" + : 109.24027398700001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 515.2600360892001,\n \"hasRDI\" : true,\n \"daily\" + : 51.52600360892001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 387.8373007324,\n \"hasRDI\" : true,\n \"daily\" + : 96.9593251831,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6067.928023467601,\n \"hasRDI\" : true,\n \"daily\" + : 173.3693720990743,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.876879642524,\n \"hasRDI\" : true,\n \"daily\" + : 93.76044245846667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.234879515436003,\n \"hasRDI\" : true,\n \"daily\" + : 114.89919676957335,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2335.8874243352,\n \"hasRDI\" : true,\n \"daily\" + : 333.6982034764572,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1936.4169377787998,\n \"hasRDI\" : true,\n + \ \"daily\" : 215.15743753097777,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 108.9085,\n \"hasRDI\" : true,\n \"daily\" + : 181.51416666666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1406607511152,\n \"hasRDI\" : true,\n + \ \"daily\" : 76.04405007434667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.086483929192,\n \"hasRDI\" + : true,\n \"daily\" : 122.734348776,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 92.71854624196922,\n \"hasRDI\" : true,\n + \ \"daily\" : 463.5927312098461,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.3312119440604,\n \"hasRDI\" : true,\n + \ \"daily\" : 216.56059720302002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 433.10157193480006,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.27539298370002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 433.10157193480006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.66636948,\n \"hasRDI\" : true,\n \"daily\" + : 77.77282466666666,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.380352047776,\n \"hasRDI\" : true,\n + \ \"daily\" : 51.90176023888,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 181.17703386628,\n \"hasRDI\" : true,\n + \ \"daily\" : 226.47129233285,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6da6cdfc2137a61c59d67ffe87802124\",\n + \ \"label\" : \"Chicken Satay\",\n \"image\" : \"https://www.edamam.com/web-img/86a/86a708c955beba1c95a9ef0d8c138420.jpg\",\n + \ \"source\" : \"NY Magazine\",\n \"url\" : \"http://nymag.com/restaurants/articles/recipes/chickensatay.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-satay-6da6cdfc2137a61c59d67ffe87802124/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ ],\n \"cautions\" : [ \"Gluten\", \"Wheat\", \"Tree-Nuts\", \"Shellfish\" + ],\n \"ingredientLines\" : [ \"1⁄2 teaspoon peanut oil\", \"1 teaspoon + red curry paste\", \"1 teaspoon sugar\", \"1⁄2 cup coconut milk\", \"1⁄2 cup + coarsely chopped, roasted peanuts\", \"1 teaspoon soy sauce\", \"4 tablespoons + finely chopped shallots\", \"3 tablespoons ground roasted peanuts\", \"1 tablespoon + coriander seeds, toasted and ground\", \"1 teaspoon cumin seeds, toasted and + ground\", \"1⁄2 cup coconut milk\", \"1 teaspoon turmeric\", \"1 tablespoon + condensed milk\", \"1 tablespoon palm sugar (or light brown sugar)\", \"2 + tablespoons thai fish sauce\", \"1 tablespoon whiskey\", \"Pinch salt\", \"1 + 1⁄2 pounds boneless chicken breast\", \"Salt and freshly ground black pepper\", + \"Heat the oil in a saucepan, and sweat the curry and sugar until the sugar + melts and starts to caramelize. add the coconut milk, and bring to a boil. + stir in the peanuts, and season with soy sauce.\", \"In a blender, purée the + shallots, peanuts, coriander, and cumin into a paste, then add the remaining + ingredients and blend until smooth.\", \"Cut the chicken into strips 1 inch + wide, 3 to 4 inches long, and at least 1⁄4 inch thick, and thread onto skewers. + coat the chicken with spice paste, and season with salt and pepper. heat the + grill to medium-high, and cook until lightly charred on one side, then turn + to cook other side. do not overcook, or the chicken will become rubbery. serve + with peanut sauce.\" ],\n \"ingredients\" : [ {\n \"text\" : \"1⁄2 + teaspoon peanut oil\",\n \"weight\" : 2.25\n }, {\n \"text\" + : \"1 teaspoon red curry paste\",\n \"weight\" : 5.333333333333334\n + \ }, {\n \"text\" : \"1 teaspoon sugar\",\n \"weight\" : + 4.2\n }, {\n \"text\" : \"1⁄2 cup coconut milk\",\n \"weight\" + : 113.0\n }, {\n \"text\" : \"1⁄2 cup coarsely chopped, roasted + peanuts\",\n \"weight\" : 73.0\n }, {\n \"text\" : \"1 + teaspoon soy sauce\",\n \"weight\" : 5.3\n }, {\n \"text\" + : \"4 tablespoons finely chopped shallots\",\n \"weight\" : 40.0\n + \ }, {\n \"text\" : \"3 tablespoons ground roasted peanuts\",\n + \ \"weight\" : 27.375\n }, {\n \"text\" : \"1 tablespoon + coriander seeds, toasted and ground\",\n \"weight\" : 5.0\n }, + {\n \"text\" : \"1 teaspoon cumin seeds, toasted and ground\",\n \"weight\" + : 2.1\n }, {\n \"text\" : \"1⁄2 cup coconut milk\",\n \"weight\" + : 113.0\n }, {\n \"text\" : \"1 teaspoon turmeric\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1 tablespoon condensed milk\",\n \"weight\" + : 19.1\n }, {\n \"text\" : \"1 tablespoon palm sugar (or light + brown sugar)\",\n \"weight\" : 9.062500000000002\n }, {\n \"text\" + : \"2 tablespoons thai fish sauce\",\n \"weight\" : 36.0\n }, + {\n \"text\" : \"1 tablespoon whiskey\",\n \"weight\" : 13.900000000000002\n + \ }, {\n \"text\" : \"Pinch salt\",\n \"weight\" : 0.75\n + \ }, {\n \"text\" : \"1 1⁄2 pounds boneless chicken breast\",\n + \ \"weight\" : 680.388555\n }, {\n \"text\" : \"Salt and + freshly ground black pepper\",\n \"weight\" : 6.92735633\n }, + {\n \"text\" : \"Salt and freshly ground black pepper\",\n \"weight\" + : 3.463678165\n }, {\n \"text\" : \"Heat the oil in a saucepan, + and sweat the curry and sugar until the sugar melts and starts to caramelize. + add the coconut milk, and bring to a boil. stir in the peanuts, and season + with soy sauce.\",\n \"weight\" : 15.702007681333333\n }, {\n + \ \"text\" : \"In a blender, purée the shallots, peanuts, coriander, + and cumin into a paste, then add the remaining ingredients and blend until + smooth.\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"In + a blender, purée the shallots, peanuts, coriander, and cumin into a paste, + then add the remaining ingredients and blend until smooth.\",\n \"weight\" + : 2.4245747155\n } ],\n \"calories\" : 2595.9384373990597,\n \"totalWeight\" + : 1175.3996488951666,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2595.9384373990597,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 182.9754084003113,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 70.02452472671936,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.7781109130912668,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 65.74591305700596,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 35.12903315239691,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 65.2210661260659,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.968871725261424,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 32.887294879088984,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 12.984037500000003,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 179.67168239571248,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 442.4333251396205,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3663.8550218943856,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 417.30306768679316,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 577.7487296742638,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3343.0642393968487,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 24.3718906484948,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.235921477952537,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1933.2634698803854,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 187.12095945227162,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 8.669054116840018,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2252182329838601,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8827369945886988,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 82.57464250071918,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.3664662643363235,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 338.4306513921021,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 338.4306513921021,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.5716018844417428,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.7597542200000005,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.756655117156656,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 18.4123948431836,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 129.796921869953,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 281.5006283081712,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 350.12262363359685,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 21.740355375355303,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 59.8754869010457,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 359.34336479142496,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 147.47777504654016,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 152.66062591226606,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 41.73030676867931,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 144.43718241856595,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 95.51612112562425,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 135.39939249163777,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 74.90614318635025,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 276.1804956971979,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 20.79121771691907,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 14.448423528066696,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 81.68121553225734,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 51.92570556404111,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 412.87321250359594,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 218.32331321681616,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 84.60766284802553,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 42.86003140736238,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6899385550000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 68.78327558578329,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 23.0154935539795,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 182.9754084003113,\n \"hasRDI\" : true,\n \"daily\" : 281.5006283081712,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.02452472671936,\n \"hasRDI\" : true,\n \"daily\" + : 350.12262363359685,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.7781109130912668,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.74591305700596,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.12903315239691,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 65.2210661260659,\n \"hasRDI\" : true,\n \"daily\" : 21.740355375355303,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 50.252194400804484,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.968871725261424,\n \"hasRDI\" + : true,\n \"daily\" : 59.8754869010457,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 32.887294879088984,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 12.984037500000003,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 179.67168239571248,\n \"hasRDI\" + : true,\n \"daily\" : 359.34336479142496,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 442.4333251396205,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.47777504654016,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3663.8550218943856,\n + \ \"hasRDI\" : true,\n \"daily\" : 152.66062591226606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 417.30306768679316,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.73030676867931,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 577.7487296742638,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.43718241856595,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3343.0642393968487,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.51612112562425,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 24.3718906484948,\n + \ \"hasRDI\" : true,\n \"daily\" : 135.39939249163777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 11.235921477952537,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.90614318635025,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1933.2634698803854,\n + \ \"hasRDI\" : true,\n \"daily\" : 276.1804956971979,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 187.12095945227162,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.79121771691907,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.669054116840018,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.448423528066696,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2252182329838601,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.68121553225734,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8827369945886988,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.92570556404111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 82.57464250071918,\n + \ \"hasRDI\" : true,\n \"daily\" : 412.87321250359594,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.3664662643363235,\n + \ \"hasRDI\" : true,\n \"daily\" : 218.32331321681616,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 338.4306513921021,\n \"hasRDI\" : true,\n \"daily\" : 84.60766284802553,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 338.4306513921021,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5716018844417428,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.86003140736238,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7597542200000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6899385550000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.756655117156656,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.78327558578329,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 18.4123948431836,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.0154935539795,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3732f635ac27370d3ffcc58283eeadd9\",\n + \ \"label\" : \"Drunken Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/921/9216913515dc95ba687e2ae85d6ef3e0.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2012/07/drunken-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/drunken-chicken-recipe-3732f635ac27370d3ffcc58283eeadd9/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 whole chicken + parts (two breasts, two leg/thighs, or a mix), totaling about 2 pounds\", + \"One 1-inch piece of ginger\", \"Kosher salt\", \"1 cup Shaoxing rice wine\", + \"1 cup chicken broth from simmering\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 whole chicken parts (two breasts, two leg/thighs, or a mix), totaling + about 2 pounds\",\n \"weight\" : 392.0\n }, {\n \"text\" + : \"One 1-inch piece of ginger\",\n \"weight\" : 15.0\n }, {\n + \ \"text\" : \"Kosher salt\",\n \"weight\" : 5.2787999999999995\n + \ }, {\n \"text\" : \"1 cup Shaoxing rice wine\",\n \"weight\" + : 232.8\n }, {\n \"text\" : \"1 cup chicken broth from simmering\",\n + \ \"weight\" : 240.0\n } ],\n \"calories\" : 983.456,\n \"totalWeight\" + : 883.6948328190309,\n \"totalTime\" : 1440.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 983.456,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n + \ \"label\" : \"Fat\",\n \"quantity\" : 43.136436,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 12.289586,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.2585632,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 18.053244,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 9.144188,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 22.7775,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.3,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 4.047,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 57.06516000000001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 207.11999999999998,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2045.957304,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 51.49635987656741,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 83.3689483281903,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 876.5599866255226,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.238692948302802,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 3.929390832819031,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 475.7112,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 111.6896,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.494960000000001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.24768600000000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.528972,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 22.0428456,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 1.10336,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" : + {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 29.6436,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n + \ \"label\" : \"Folate (food)\",\n \"quantity\" : 29.6436,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 0.826336,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.53312,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 0.9106799999999999,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 4.493399999999999,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 49.1728,\n \"unit\" : \"%\"\n },\n \"FAT\" : {\n + \ \"label\" : \"Fat\",\n \"quantity\" : 66.3637476923077,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.44793,\n \"unit\" : + \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 7.5925,\n \"unit\" : \"%\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.2,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 114.13032000000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 69.03999999999999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 85.248221,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 5.149635987656741,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 20.84223708204758,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 25.0445710464435,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 17.992738601682234,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 26.195938885460205,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 67.95874285714287,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 12.409955555555555,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 9.158266666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 16.512400000000003,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 31.116,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 110.214228,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 55.16799999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 7.410900000000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 13.772266666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.13328,\n \"unit\" : + \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.5534,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 5.616749999999999,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 43.136436,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.3637476923077,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 12.289586,\n \"hasRDI\" : true,\n \"daily\" : 61.44793,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.2585632,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 18.053244,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.144188,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.7775,\n \"hasRDI\" : true,\n \"daily\" : 7.5925,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.4775,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.3,\n \"hasRDI\" : true,\n \"daily\" + : 1.2,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 4.047,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 57.06516000000001,\n \"hasRDI\" + : true,\n \"daily\" : 114.13032000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 207.11999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.03999999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 2045.957304,\n + \ \"hasRDI\" : true,\n \"daily\" : 85.248221,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.49635987656741,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.149635987656741,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.3689483281903,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.84223708204758,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 876.5599866255226,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.0445710464435,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.238692948302802,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.992738601682234,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.929390832819031,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.195938885460205,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 475.7112,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.95874285714287,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 111.6896,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.409955555555555,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.494960000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.158266666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.24768600000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.512400000000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.528972,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.0428456,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.214228,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.10336,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.16799999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.6436,\n \"hasRDI\" : true,\n \"daily\" : 7.410900000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.6436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.826336,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.772266666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.53312,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.13328,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9106799999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.5534,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.493399999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.616749999999999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c9bc1ad59e36cd23aa74c07a22372ea3\",\n + \ \"label\" : \"Citrus Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/d4b/d4bb1e6c7a6c3738d8e01707eb0ad83d.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/3403-citrus-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/citrus-roasted-chicken-c9bc1ad59e36cd23aa74c07a22372ea3/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 chicken, about 3.5 to 4 pounds\", + \"1 lemon\", \"1 blood orange\", \"1 tangerine or clementine\", \"Kosher salt\", + \"1/2 cup chicken broth\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 chicken, about 3.5 to 4 pounds\",\n \"weight\" : 1700.9713875\n + \ }, {\n \"text\" : \"1 lemon\",\n \"weight\" : 58.0\n }, + {\n \"text\" : \"1 blood orange\",\n \"weight\" : 131.0\n }, + {\n \"text\" : \"1 tangerine or clementine\",\n \"weight\" : + 74.0\n }, {\n \"text\" : \"Kosher salt\",\n \"weight\" + : 12.503828324999999\n }, {\n \"text\" : \"1/2 cup chicken broth\",\n + \ \"weight\" : 120.0\n } ],\n \"calories\" : 2643.1901685250004,\n + \ \"totalWeight\" : 2093.938546284647,\n \"totalTime\" : 424.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2643.1901685250004,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 176.07527785109997,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.27953942484999,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.121960727195,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 72.91052791439999,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.70010555505,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 33.9289,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.026,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 22.3877,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 220.661261091,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 871.095407625,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4846.2337822035,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 222.90477789331527,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 261.37178028784643,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2761.015799917772,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.277436515489338,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 15.501120278634646,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1775.850998945,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 490.42082283499997,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 155.290568696,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.9368063261,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.5761926522,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 81.46334356343502,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 4.30201190225,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 138.83963261,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 138.83963261,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.58564768485,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.313321087,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.9767816305000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 17.589908152499998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 132.15950842625003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 270.8850428478461,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 251.39769712424996,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 11.309633333333332,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 24.104,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 441.32252218200006,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 290.36513587499996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 201.92640759181248,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.290477789331526,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 65.34294507196161,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 78.88616571193634,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 62.65242508605187,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 103.3408018575643,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 253.69299984928568,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.49120253722222,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 258.81761449333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 62.45375507333333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 92.71721483529413,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 407.3167178171751,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 215.1005951125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 34.7099081525,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 59.7607947475,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.57833027175,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 19.883908152500005,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 21.987385190624998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 176.07527785109997,\n \"hasRDI\" : true,\n \"daily\" : 270.8850428478461,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.27953942484999,\n \"hasRDI\" : true,\n \"daily\" + : 251.39769712424996,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.121960727195,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 72.91052791439999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.70010555505,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 33.9289,\n \"hasRDI\" : true,\n \"daily\" : 11.309633333333332,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.9029,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 6.026,\n \"hasRDI\" : true,\n \"daily\" + : 24.104,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 22.3877,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 220.661261091,\n + \ \"hasRDI\" : true,\n \"daily\" : 441.32252218200006,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 871.095407625,\n \"hasRDI\" : true,\n \"daily\" : 290.36513587499996,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 4846.2337822035,\n \"hasRDI\" : true,\n \"daily\" : 201.92640759181248,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 222.90477789331527,\n \"hasRDI\" : true,\n \"daily\" : 22.290477789331526,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 261.37178028784643,\n \"hasRDI\" : true,\n \"daily\" : 65.34294507196161,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2761.015799917772,\n \"hasRDI\" : true,\n \"daily\" : 78.88616571193634,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.277436515489338,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.65242508605187,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.501120278634646,\n + \ \"hasRDI\" : true,\n \"daily\" : 103.3408018575643,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1775.850998945,\n + \ \"hasRDI\" : true,\n \"daily\" : 253.69299984928568,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.42082283499997,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.49120253722222,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 155.290568696,\n + \ \"hasRDI\" : true,\n \"daily\" : 258.81761449333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9368063261,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.45375507333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5761926522,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.71721483529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 81.46334356343502,\n + \ \"hasRDI\" : true,\n \"daily\" : 407.3167178171751,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.30201190225,\n + \ \"hasRDI\" : true,\n \"daily\" : 215.1005951125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 138.83963261,\n \"hasRDI\" : true,\n \"daily\" : 34.7099081525,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 138.83963261,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.58564768485,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7607947475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.313321087,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.57833027175,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9767816305000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.883908152500005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.589908152499998,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.987385190624998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_d4cb8f42578305b7d1aceaaf8291ec0d\",\n + \ \"label\" : \"Chicken Bouillabaisse\",\n \"image\" : \"https://www.edamam.com/web-img/a0d/a0d40664fee67f9359946ac86a93edcc.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipe/chicken-bouillabaisse\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-bouillabaisse-d4cb8f42578305b7d1aceaaf8291ec0d/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"6 chicken legs + (split into drumsticks and thighs), skinned\", \"3 tablespoons olive oil\", + \"1 onion, sliced\", \"1 teaspoon dried thyme\", \"1/4 teaspoon saffron threads\", + \"2 4-inch-long orange peel strips (orange part only)\", \"3/4 cup dry white + wine\", \"1 14 1/2-ounce can diced tomatoes in juice\", \"1 14-ounce can low-salt + chicken broth\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 chicken + legs (split into drumsticks and thighs), skinned\",\n \"weight\" : + 2064.0\n }, {\n \"text\" : \"3 tablespoons olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"1 onion, sliced\",\n \"weight\" + : 125.0\n }, {\n \"text\" : \"1 teaspoon dried thyme\",\n \"weight\" + : 1.0\n }, {\n \"text\" : \"1/4 teaspoon saffron threads\",\n + \ \"weight\" : 0.175\n }, {\n \"text\" : \"2 4-inch-long + orange peel strips (orange part only)\",\n \"weight\" : 4.0\n }, + {\n \"text\" : \"3/4 cup dry white wine\",\n \"weight\" : 110.25\n + \ }, {\n \"text\" : \"1 14 1/2-ounce can diced tomatoes in juice\",\n + \ \"weight\" : 411.0680853125\n }, {\n \"text\" : \"1 14-ounce + can low-salt chicken broth\",\n \"weight\" : 396.89332375000004\n } + ],\n \"calories\" : 5051.84132545,\n \"totalWeight\" : 3152.8864090625,\n + \ \"totalTime\" : 114.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 5051.84132545,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 373.3345676557812,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 96.64021769851875,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.2384,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 167.44042069120005,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 74.40072660409062,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 38.83087994534376,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 10.7361186209375,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 17.373697496343752,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 350.68538184896875,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1919.52,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1906.1863056562497,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 401.89995110312503,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 464.30274176874997,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 5597.207801371875,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 19.492564066156252,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 31.649482526125006,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 3447.5355716281256,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 671.1422287687501,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 71.253978749375,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 3.943505240546875,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.313740194046875,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 106.40538830279998,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 7.278927407071875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 144.400696825,\n \"unit\" : + \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 144.400696825,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 11.95529332375,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.064,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 12.887651703343751,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 101.8599744740625,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 252.5920662725,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 574.3608733165864,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 483.2010884925938,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 12.94362664844792,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 42.94447448375,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 701.3707636979375,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 639.84,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 79.42442940234373,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 40.18999511031251,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 116.07568544218749,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 159.92022289633928,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 108.29202258975695,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 210.9965501741667,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 492.50508166116083,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 74.57135875208334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 118.75663124895831,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 262.9003493697916,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.92589376746324,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 532.0269415139999,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 363.94637035359375,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 36.10017420625,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 199.25488872916665,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.516,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 64.43825851671876,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 127.32496809257812,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 373.3345676557812,\n \"hasRDI\" + : true,\n \"daily\" : 574.3608733165864,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 96.64021769851875,\n \"hasRDI\" : true,\n \"daily\" : + 483.2010884925938,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.2384,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 167.44042069120005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.40072660409062,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 38.83087994534376,\n \"hasRDI\" : true,\n \"daily\" : 12.94362664844792,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.09476132440626,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.7361186209375,\n \"hasRDI\" + : true,\n \"daily\" : 42.94447448375,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.373697496343752,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 350.68538184896875,\n \"hasRDI\" : true,\n \"daily\" : 701.3707636979375,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1919.52,\n \"hasRDI\" : true,\n \"daily\" + : 639.84,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1906.1863056562497,\n \"hasRDI\" : true,\n \"daily\" + : 79.42442940234373,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 401.89995110312503,\n \"hasRDI\" : true,\n \"daily\" + : 40.18999511031251,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 464.30274176874997,\n \"hasRDI\" : true,\n \"daily\" + : 116.07568544218749,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5597.207801371875,\n \"hasRDI\" : true,\n \"daily\" + : 159.92022289633928,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.492564066156252,\n \"hasRDI\" : true,\n \"daily\" + : 108.29202258975695,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 31.649482526125006,\n \"hasRDI\" : true,\n \"daily\" + : 210.9965501741667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3447.5355716281256,\n \"hasRDI\" : true,\n \"daily\" + : 492.50508166116083,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 671.1422287687501,\n \"hasRDI\" : true,\n + \ \"daily\" : 74.57135875208334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 71.253978749375,\n \"hasRDI\" : true,\n + \ \"daily\" : 118.75663124895831,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.943505240546875,\n \"hasRDI\" : true,\n + \ \"daily\" : 262.9003493697916,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.313740194046875,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.92589376746324,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 106.40538830279998,\n + \ \"hasRDI\" : true,\n \"daily\" : 532.0269415139999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.278927407071875,\n + \ \"hasRDI\" : true,\n \"daily\" : 363.94637035359375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 144.400696825,\n \"hasRDI\" : true,\n \"daily\" : 36.10017420625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 144.400696825,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.95529332375,\n + \ \"hasRDI\" : true,\n \"daily\" : 199.25488872916665,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.064,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.516,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.887651703343751,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.43825851671876,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 101.8599744740625,\n + \ \"hasRDI\" : true,\n \"daily\" : 127.32496809257812,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b49f63fabba19628c48b8cac87354655\",\n + \ \"label\" : \"CHICKEN IN A POT\",\n \"image\" : \"https://www.edamam.com/web-img/f22/f22f3143cd165035af81747d566b3494.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/7653-chicken-in-a-pot\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-in-a-pot-b49f63fabba19628c48b8cac87354655/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 clay pot, + seasoned and large enough to hold a whole chicken, preferably a locally grown, + uncaged chicken\", \"1 lemon, sliced thin\", \"1 medium onion, sliced thin\", + \"4 sprigs of fresh rosemary\", \"Olive oil\", \"Salt and pepper\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 clay pot, seasoned and large enough to hold + a whole chicken, preferably a locally grown, uncaged chicken\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 lemon, sliced thin\",\n \"weight\" + : 29.0\n }, {\n \"text\" : \"1 medium onion, sliced thin\",\n + \ \"weight\" : 55.0\n }, {\n \"text\" : \"4 sprigs of fresh + rosemary\",\n \"weight\" : 20.0\n }, {\n \"text\" : \"Olive + oil\",\n \"weight\" : 13.9264\n }, {\n \"text\" : \"Salt + and pepper\",\n \"weight\" : 6.144\n }, {\n \"text\" : + \"Salt and pepper\",\n \"weight\" : 3.072\n } ],\n \"calories\" + : 2165.430096,\n \"totalWeight\" : 1045.559904802188,\n \"totalTime\" + : 85.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2165.4300960000005,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 153.89254720000002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 42.219729552000004,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.8924000000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 67.83388278400001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 31.427493632000004,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 13.944344000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.344216,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.0766608000000004,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 173.02518080000002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2420.820959232,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 199.63298515252512,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 215.3187350480219,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2034.051064384175,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 10.290832005847221,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.39001830480219,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1391.0437600000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 407.51944000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 38.52,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.59941776,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : + {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 1.1605796000000002,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 62.879512960000014,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.3853395200000005,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 91.16224,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 91.16224,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8520000000000003,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.8448872000000005,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 27.4325568,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 108.27150480000003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 236.75776492307696,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 211.09864776000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.648114666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.376864,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 346.05036160000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 100.86753996799999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.96329851525251,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 53.82968376200547,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 58.11574469669072,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 57.17128892137345,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 82.6001220320146,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 198.72053714285718,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 45.27993777777778,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 64.2,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 39.961184,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 68.26938823529413,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 314.39756480000005,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 169.26697600000003,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.79056,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 47.53333333333334,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4600000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 24.224436000000004,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.290696000000004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 153.89254720000002,\n \"hasRDI\" : true,\n \"daily\" + : 236.75776492307696,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 42.219729552000004,\n \"hasRDI\" + : true,\n \"daily\" : 211.09864776000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.8924000000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.83388278400001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.427493632000004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.944344000000001,\n \"hasRDI\" : true,\n \"daily\" : 4.648114666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.600128000000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.344216,\n \"hasRDI\" + : true,\n \"daily\" : 21.376864,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.0766608000000004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 173.02518080000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 346.05036160000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" : 230.00000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2420.820959232,\n \"hasRDI\" : true,\n \"daily\" : 100.86753996799999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 199.63298515252512,\n \"hasRDI\" : true,\n \"daily\" : 19.96329851525251,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 215.3187350480219,\n \"hasRDI\" : true,\n \"daily\" : 53.82968376200547,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2034.051064384175,\n \"hasRDI\" : true,\n \"daily\" : 58.11574469669072,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.290832005847221,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.17128892137345,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.39001830480219,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.6001220320146,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1391.0437600000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.72053714285718,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 407.51944000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.27993777777778,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.52,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.2,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.59941776,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.961184,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1605796000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.26938823529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.879512960000014,\n + \ \"hasRDI\" : true,\n \"daily\" : 314.39756480000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.3853395200000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 169.26697600000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.16224,\n \"hasRDI\" : true,\n \"daily\" : 22.79056,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 91.16224,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8520000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.53333333333334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.8448872000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.224436000000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.4325568,\n \"hasRDI\" : true,\n \"daily\" + : 34.290696000000004,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3565107f0288e835899e54fc19296f8a\",\n + \ \"label\" : \"Chicken \\\"Stoup\\\"\",\n \"image\" : \"https://www.edamam.com/web-img/fe0/fe02761576e994437a6fb81719093f09.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"http://www.food52.com/recipes/7634_chicken_stoup\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stoup-3565107f0288e835899e54fc19296f8a/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 lbs. chicken + pieces, on the bone (dark meat is best, but you can use a mix if you'd like)\", + \"3 medium carrots, peeled\", \"3 stalks celery\", \"1 large sweet onion, + peeled\", \"2 cups homemade or good quality chicken stock\", \"Salt\", \"2 + tablespoons chopped fresh dill\", \"1 lemon\", \"Freshly ground black pepper\", + \"Crusty bread for serving\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 lbs. chicken pieces, on the bone (dark meat is best, but you can use + a mix if you'd like)\",\n \"weight\" : 907.18474\n }, {\n \"text\" + : \"3 medium carrots, peeled\",\n \"weight\" : 183.0\n }, {\n + \ \"text\" : \"3 stalks celery\",\n \"weight\" : 120.0\n }, + {\n \"text\" : \"1 large sweet onion, peeled\",\n \"weight\" + : 413.75\n }, {\n \"text\" : \"2 cups homemade or good quality + chicken stock\",\n \"weight\" : 480.0\n }, {\n \"text\" + : \"Salt\",\n \"weight\" : 13.00760844\n }, {\n \"text\" + : \"2 tablespoons chopped fresh dill\",\n \"weight\" : 6.0\n }, + {\n \"text\" : \"1 lemon\",\n \"weight\" : 58.0\n }, {\n + \ \"text\" : \"Freshly ground black pepper\",\n \"weight\" : + 6.50380422\n } ],\n \"calories\" : 1614.4947105922001,\n \"totalWeight\" + : 2183.1904061333307,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1614.4947105922001,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 50.823010011572,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 19.8104955859424,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.2679618500000003,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 25.730520087185802,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 4.2658106601156005,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 80.35212948669,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.16321246766,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 40.128074347008,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 215.77202299445804,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 585.9263862,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5056.613345812725,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 381.9463157537994,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 301.25531923533333,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 5489.217287236867,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.23671160007599,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 51.05931656613133,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2326.2693964676005,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1602.8897219394,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 71.17699999999999,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2430694005576,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.2485709055960004,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 54.897034226034606,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.4012503934802,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 145.67118891739997,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 240.8336889174,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 20.593093598000003,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 3.5461220958880006,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 85.77174860813999,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 80.72473552961002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 78.18924617164924,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 99.05247792971201,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 26.78404316223,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 56.65284987063999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 431.54404598891614,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 195.3087954,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 210.6922227421969,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.194631575379944,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 75.31382980883333,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 156.8347796353391,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 129.09284222264438,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 340.39544377420884,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 332.3241994953715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 178.09885799326665,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 118.62833333333332,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 82.87129337050666,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 132.26887679976474,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 274.485171130173,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 320.06251967401,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 36.41779722934999,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 343.2182266333334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.22679618500000004,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 17.730610479440003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 107.21468576017499,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 50.823010011572,\n \"hasRDI\" : true,\n \"daily\" : 78.18924617164924,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 19.8104955859424,\n \"hasRDI\" : true,\n \"daily\" + : 99.05247792971201,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.2679618500000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.730520087185802,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.2658106601156005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 80.35212948669,\n \"hasRDI\" : true,\n \"daily\" : 26.78404316223,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 66.18891701903,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 14.16321246766,\n \"hasRDI\" + : true,\n \"daily\" : 56.65284987063999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 40.128074347008,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 215.77202299445804,\n \"hasRDI\" : true,\n \"daily\" : 431.54404598891614,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 585.9263862,\n \"hasRDI\" : true,\n \"daily\" + : 195.3087954,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5056.613345812725,\n \"hasRDI\" : true,\n \"daily\" + : 210.6922227421969,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 381.9463157537994,\n \"hasRDI\" : true,\n \"daily\" + : 38.194631575379944,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 301.25531923533333,\n \"hasRDI\" : true,\n \"daily\" + : 75.31382980883333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5489.217287236867,\n \"hasRDI\" : true,\n \"daily\" + : 156.8347796353391,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.23671160007599,\n \"hasRDI\" : true,\n \"daily\" + : 129.09284222264438,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 51.05931656613133,\n \"hasRDI\" : true,\n \"daily\" + : 340.39544377420884,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2326.2693964676005,\n \"hasRDI\" : true,\n \"daily\" + : 332.3241994953715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1602.8897219394,\n \"hasRDI\" : true,\n + \ \"daily\" : 178.09885799326665,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 71.17699999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 118.62833333333332,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2430694005576,\n \"hasRDI\" : true,\n + \ \"daily\" : 82.87129337050666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.2485709055960004,\n + \ \"hasRDI\" : true,\n \"daily\" : 132.26887679976474,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.897034226034606,\n + \ \"hasRDI\" : true,\n \"daily\" : 274.485171130173,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.4012503934802,\n + \ \"hasRDI\" : true,\n \"daily\" : 320.06251967401,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 145.67118891739997,\n \"hasRDI\" : true,\n \"daily\" : 36.41779722934999,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 240.8336889174,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.593093598000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 343.2182266333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9071847400000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.22679618500000004,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.5461220958880006,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.730610479440003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.77174860813999,\n + \ \"hasRDI\" : true,\n \"daily\" : 107.21468576017499,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_82a6d20e66e01a69a3d484833bfcd7ca\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/4de/4de0bd5b79b1d8f701bbf02d2afd0b80.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/classic-chicken-marsala-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-82a6d20e66e01a69a3d484833bfcd7ca/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1¼ lb. chicken cutlets, pounded until + ¼\\\" thick (about 8)\", \"Kosher salt and freshly ground black pepper, to + taste\", \"⅓ cup flour\", \"5 tbsp. olive oil\", \"5 tbsp. unsalted butter\", + \"8 oz. white button mushrooms\", \"2 tbsp. minced shallots\", \"1 clove garlic, + minced\", \"⅓ cup dry marsala wine\", \"⅓ cup chicken stock\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1¼ lb. chicken cutlets, pounded until ¼\\\" thick + (about 8)\",\n \"weight\" : 566.9904625\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 6.933719885\n }, {\n \"text\" : \"Kosher salt and freshly ground + black pepper, to taste\",\n \"weight\" : 3.4668599425\n }, {\n + \ \"text\" : \"⅓ cup flour\",\n \"weight\" : 41.666666666666664\n + \ }, {\n \"text\" : \"5 tbsp. olive oil\",\n \"weight\" + : 67.5\n }, {\n \"text\" : \"5 tbsp. unsalted butter\",\n \"weight\" + : 71.0\n }, {\n \"text\" : \"8 oz. white button mushrooms\",\n + \ \"weight\" : 226.796185\n }, {\n \"text\" : \"2 tbsp. + minced shallots\",\n \"weight\" : 20.0\n }, {\n \"text\" + : \"1 clove garlic, minced\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"⅓ cup dry marsala wine\",\n \"weight\" : 78.66666666666666\n }, + {\n \"text\" : \"⅓ cup chicken stock\",\n \"weight\" : 80.0\n + \ } ],\n \"calories\" : 2404.220574655675,\n \"totalWeight\" + : 1164.7500830153897,\n \"totalTime\" : 121.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2404.220574655675,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 179.82217777770884,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.362736418732936,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.9227199856249997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 86.36322076247507,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 21.131794556559488,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 50.76457923089541,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.9730774154525,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 8.157319033298666,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 133.25525362910906,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 517.923896,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2695.433266487385,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 131.37853744110183,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 195.5342351990705,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2318.126847148323,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.314797813973954,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.446816070888641,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1303.0490958924831,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 623.453763184475,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.458719885000001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6481364432962334,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.5341029047215005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 66.4070196265928,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.4687993794160086,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 86.464336140225,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 86.464336140225,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.1391860465,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.78655422,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 12.982459210651998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 51.776249725872496,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.21102873278376,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 276.64950427339824,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 306.8136820936647,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.92152641029847,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.89230966181,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 266.5105072582181,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 172.64129866666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 112.30971943697439,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 13.137853744110183,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 48.88355879976763,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 66.23219563280924,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 40.63776563318863,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 42.97877380592427,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 186.1498708417833,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 69.27264035383055,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 12.431199808333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 43.20909621974889,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 90.24134733655886,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 332.035098132964,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 173.43996897080044,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.61608403505625,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 35.653100775,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.9466385550000002,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 64.91229605326,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 64.72031215734062,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 179.82217777770884,\n \"hasRDI\" : true,\n \"daily\" : 276.64950427339824,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 61.362736418732936,\n \"hasRDI\" : true,\n + \ \"daily\" : 306.8136820936647,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.9227199856249997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 86.36322076247507,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.131794556559488,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 50.76457923089541,\n \"hasRDI\" : true,\n \"daily\" : 16.92152641029847,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.791501815442906,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.9730774154525,\n \"hasRDI\" + : true,\n \"daily\" : 19.89230966181,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 8.157319033298666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 133.25525362910906,\n \"hasRDI\" : true,\n \"daily\" : 266.5105072582181,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 517.923896,\n \"hasRDI\" : true,\n \"daily\" + : 172.64129866666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2695.433266487385,\n \"hasRDI\" : true,\n \"daily\" + : 112.30971943697439,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 131.37853744110183,\n \"hasRDI\" : true,\n \"daily\" + : 13.137853744110183,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 195.5342351990705,\n \"hasRDI\" : true,\n \"daily\" + : 48.88355879976763,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2318.126847148323,\n \"hasRDI\" : true,\n \"daily\" + : 66.23219563280924,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.314797813973954,\n \"hasRDI\" : true,\n \"daily\" + : 40.63776563318863,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.446816070888641,\n \"hasRDI\" : true,\n \"daily\" + : 42.97877380592427,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1303.0490958924831,\n \"hasRDI\" : true,\n \"daily\" + : 186.1498708417833,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 623.453763184475,\n \"hasRDI\" : true,\n + \ \"daily\" : 69.27264035383055,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.458719885000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.431199808333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6481364432962334,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.20909621974889,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.5341029047215005,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.24134733655886,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.4070196265928,\n + \ \"hasRDI\" : true,\n \"daily\" : 332.035098132964,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4687993794160086,\n + \ \"hasRDI\" : true,\n \"daily\" : 173.43996897080044,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.464336140225,\n \"hasRDI\" : true,\n \"daily\" : 21.61608403505625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.464336140225,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1391860465,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.653100775,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.78655422,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9466385550000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.982459210651998,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.91229605326,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.776249725872496,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.72031215734062,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_690c3797b4f56fc1e119c14096d651c5\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/25f/25feccd2eed4722604be4a9ffa1ac768.jpg\",\n + \ \"source\" : \"San Francisco Gate\",\n \"url\" : \"http://www.sfgate.com/food/recipes/detail.html?rid=18229&sorig=qs\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-690c3797b4f56fc1e119c14096d651c5/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + about 3-4 pounds\", \"-- Salt and fresh-ground pepper, to taste\", \"3 to + 4 sprigs thyme, or other herbs\", \"-- Olive oil, to taste\", \"-- Chicken + stock (optional)\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + whole chicken, about 3-4 pounds\",\n \"weight\" : 1587.5732950000001\n + \ }, {\n \"text\" : \"-- Salt and fresh-ground pepper, to taste\",\n + \ \"weight\" : 9.676639770000001\n }, {\n \"text\" : \"3 + to 4 sprigs thyme, or other herbs\",\n \"weight\" : 25.2\n }, + {\n \"text\" : \"-- Olive oil, to taste\",\n \"weight\" : 21.933716812\n + \ } ],\n \"calories\" : 2584.4782139080803,\n \"totalWeight\" + : 1642.5286096732736,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2584.4782139080803,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 186.38628280636,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 50.24516574726095,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.047163345382,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 83.48540917664334,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.47742487150676,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 16.11288,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 9.324,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.43091999999999997,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 203.0919903516,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3801.4784618285703,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 597.1270031208256,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 271.42818409861275,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2246.3222637310223,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 41.0117886524894,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 15.707284509721273,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1637.590265682,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 490.495434646,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 29.8727974496,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7770059043599999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.39600780872,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 74.665064659206,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.9170244421,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 133.820990436,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 133.820990436,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.271097884322,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 461.45134512982406,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 129.22391069540402,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 286.7481273944,\n \"unit\" : + \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 251.22582873630472,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.37096,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 37.296,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 406.1839807032,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 269.88746015000004,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 158.39493590952378,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 59.71270031208256,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 67.85704602465319,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 64.18063610660063,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 227.8432702916078,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 104.7152300648085,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 233.941466526,\n \"unit\" : \"%\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 54.499492738444445,\n \"unit\" : \"%\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 49.78799574933334,\n + \ \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 51.800393624,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 82.11810639529412,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 373.32532329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.85122210499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 33.455247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 41.355489421609995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 576.81418141228,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 186.38628280636,\n \"hasRDI\" : true,\n \"daily\" : 286.7481273944,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.24516574726095,\n \"hasRDI\" : true,\n \"daily\" + : 251.22582873630472,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.48540917664334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.47742487150676,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.11288,\n \"hasRDI\" : true,\n \"daily\" : 5.37096,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.788880000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.324,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.296,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.43091999999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 203.0919903516,\n + \ \"hasRDI\" : true,\n \"daily\" : 406.1839807032,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3801.4784618285703,\n \"hasRDI\" : true,\n \"daily\" : 158.39493590952378,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 597.1270031208256,\n \"hasRDI\" : true,\n \"daily\" : 59.71270031208256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 271.42818409861275,\n \"hasRDI\" : true,\n \"daily\" : 67.85704602465319,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2246.3222637310223,\n \"hasRDI\" : true,\n \"daily\" : 64.18063610660063,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0117886524894,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.8432702916078,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.707284509721273,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.7152300648085,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1637.590265682,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.941466526,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.495434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.499492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.8727974496,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.78799574933334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7770059043599999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.800393624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.39600780872,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.11810639529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.665064659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 373.32532329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9170244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.85122210499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : true,\n \"daily\" : 33.455247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.271097884322,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.355489421609995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 461.45134512982406,\n + \ \"hasRDI\" : true,\n \"daily\" : 576.81418141228,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_aa619d4daf4d644ae7439c71df03a414\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/2b7/2b720ff1458b86ae5d2e7b836a62db5b.jpg\",\n + \ \"source\" : \"San Francisco Gate\",\n \"url\" : \"http://www.sfgate.com/food/recipes/detail/?rid=18229&sorig=qs\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-aa619d4daf4d644ae7439c71df03a414/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + about 3-4 lbs\", \"-- salt and fresh-ground pepper, to taste\", \"3 to 4 sprigs + thyme, or other herbs\", \"-- olive oil, to taste\", \"-- chicken stock (optional)\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1 whole chicken, about + 3-4 lbs\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"-- salt and fresh-ground pepper, to taste\",\n \"weight\" : 9.676639770000001\n + \ }, {\n \"text\" : \"3 to 4 sprigs thyme, or other herbs\",\n + \ \"weight\" : 25.2\n }, {\n \"text\" : \"-- olive oil, + to taste\",\n \"weight\" : 21.933716812\n } ],\n \"calories\" + : 2584.4782139080803,\n \"totalWeight\" : 1642.5286096732736,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2584.4782139080803,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 186.38628280636,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 50.24516574726095,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.047163345382,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 83.48540917664334,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 37.47742487150676,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.11288,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 9.324,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.43091999999999997,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 203.0919903516,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3801.4784618285703,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 597.1270031208256,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 271.42818409861275,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2246.3222637310223,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 41.0117886524894,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.707284509721273,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1637.590265682,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 490.495434646,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 29.8727974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7770059043599999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.39600780872,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 74.665064659206,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.9170244421,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 133.820990436,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 133.820990436,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.1590996812000003,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.271097884322,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 461.45134512982406,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 129.22391069540402,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 286.7481273944,\n \"unit\" : \"%\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 251.22582873630472,\n \"unit\" : \"%\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 5.37096,\n + \ \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 37.296,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 406.1839807032,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 269.88746015000004,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 158.39493590952378,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 59.71270031208256,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 67.85704602465319,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 64.18063610660063,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 227.8432702916078,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 104.7152300648085,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 233.941466526,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 54.499492738444445,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 49.78799574933334,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 51.800393624,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 82.11810639529412,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 373.32532329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.85122210499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 33.455247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 41.355489421609995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 576.81418141228,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 186.38628280636,\n \"hasRDI\" : true,\n \"daily\" : 286.7481273944,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.24516574726095,\n \"hasRDI\" : true,\n \"daily\" + : 251.22582873630472,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.48540917664334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.47742487150676,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.11288,\n \"hasRDI\" : true,\n \"daily\" : 5.37096,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.788880000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.324,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.296,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.43091999999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 203.0919903516,\n + \ \"hasRDI\" : true,\n \"daily\" : 406.1839807032,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3801.4784618285703,\n \"hasRDI\" : true,\n \"daily\" : 158.39493590952378,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 597.1270031208256,\n \"hasRDI\" : true,\n \"daily\" : 59.71270031208256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 271.42818409861275,\n \"hasRDI\" : true,\n \"daily\" : 67.85704602465319,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2246.3222637310223,\n \"hasRDI\" : true,\n \"daily\" : 64.18063610660063,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0117886524894,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.8432702916078,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.707284509721273,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.7152300648085,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1637.590265682,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.941466526,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.495434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.499492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.8727974496,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.78799574933334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7770059043599999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.800393624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.39600780872,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.11810639529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.665064659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 373.32532329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9170244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.85122210499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : true,\n \"daily\" : 33.455247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.271097884322,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.355489421609995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 461.45134512982406,\n + \ \"hasRDI\" : true,\n \"daily\" : 576.81418141228,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f944ef2d91414c98d218a1625af0215b\",\n + \ \"label\" : \"Classic Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/eec/eecd8dcc1c4a68f5e38f654942e72019.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/78228/recipes-classic-roast-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/classic-roast-chicken-f944ef2d91414c98d218a1625af0215b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"One 4 1/2- + to 5-pound chicken\", \"Extra-virgin olive oil\", \"Kosher salt and freshly + ground pepper\", \"1/2 small yellow onion, cut into chunks (optional)\", \"4 + or 5 fresh flat-leaf (Italian) parsley sprigs (optional)\", \"4 large fresh + thyme sprigs (optional)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"One 4 1/2- to 5-pound chicken\",\n \"weight\" : 2154.5637575\n + \ }, {\n \"text\" : \"Extra-virgin olive oil\",\n \"weight\" + : 29.302067102\n }, {\n \"text\" : \"Kosher salt and freshly ground + pepper\",\n \"weight\" : 12.927382545\n }, {\n \"text\" + : \"Kosher salt and freshly ground pepper\",\n \"weight\" : 6.4636912725\n + \ } ],\n \"calories\" : 3425.2263517406545,\n \"totalWeight\" + : 2200.8205534781155,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3425.2263517406545,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 250.15734871554346,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 67.28195861276734,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.4211502544469998,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 112.84929721503399,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 50.470802529773,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.133530568763751,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.6353138919425003,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.041367624144000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 273.18080157181276,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1098.8275163249998,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5093.567482575832,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 192.6063910940627,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 304.17849347201116,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2856.0801018298334,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.01226661832288,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.280262915556364,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2163.9145642075496,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 602.4375722345749,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 23.4416536816,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8860427996342999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.7697586704104997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 99.71555917159567,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.146671084452974,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.00502882232499,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 89.00502882232499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.541820400809999,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.9302067102,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.667379083671001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 50.1974573349865,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 171.26131758703275,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 384.8574595623745,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 336.4097930638367,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.3778435229212502,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.541255567770001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 546.3616031436255,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 366.2758387749999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 212.23197844065967,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.26063910940627,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 76.04462336800279,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 81.60228862370953,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 77.84592565734933,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 128.5350861037091,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 309.1306520296499,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 66.93750802606388,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 39.06942280266666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 59.06951997561999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 104.10345120061764,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 498.57779585797834,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 257.3335542226487,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.251257205581247,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 75.69700668016665,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7325516775499998,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 43.336895418355006,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 62.746821668733126,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 250.15734871554346,\n \"hasRDI\" : true,\n \"daily\" : 384.8574595623745,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 67.28195861276734,\n \"hasRDI\" : true,\n \"daily\" + : 336.4097930638367,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.4211502544469998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.84929721503399,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.470802529773,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 4.133530568763751,\n \"hasRDI\" : true,\n \"daily\" : 1.3778435229212502,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.498216676821251,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.6353138919425003,\n \"hasRDI\" + : true,\n \"daily\" : 6.541255567770001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.041367624144000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 273.18080157181276,\n \"hasRDI\" : true,\n \"daily\" : 546.3616031436255,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1098.8275163249998,\n \"hasRDI\" : true,\n \"daily\" + : 366.2758387749999,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5093.567482575832,\n \"hasRDI\" : true,\n \"daily\" + : 212.23197844065967,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 192.6063910940627,\n \"hasRDI\" : true,\n \"daily\" + : 19.26063910940627,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 304.17849347201116,\n \"hasRDI\" : true,\n \"daily\" + : 76.04462336800279,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2856.0801018298334,\n \"hasRDI\" : true,\n \"daily\" + : 81.60228862370953,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.01226661832288,\n \"hasRDI\" : true,\n \"daily\" + : 77.84592565734933,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.280262915556364,\n \"hasRDI\" : true,\n \"daily\" + : 128.5350861037091,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2163.9145642075496,\n \"hasRDI\" : true,\n \"daily\" + : 309.1306520296499,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 602.4375722345749,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.93750802606388,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 23.4416536816,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.06942280266666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8860427996342999,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.06951997561999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.7697586704104997,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.10345120061764,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 99.71555917159567,\n + \ \"hasRDI\" : true,\n \"daily\" : 498.57779585797834,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.146671084452974,\n + \ \"hasRDI\" : true,\n \"daily\" : 257.3335542226487,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.00502882232499,\n \"hasRDI\" : true,\n \"daily\" : 22.251257205581247,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.00502882232499,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.541820400809999,\n + \ \"hasRDI\" : true,\n \"daily\" : 75.69700668016665,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9302067102,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7325516775499998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.667379083671001,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.336895418355006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.1974573349865,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.746821668733126,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_ad598848e6d3ef58cbb564a883dcc204\",\n + \ \"label\" : \"Cook the Book: Lemon Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/291/2915c7b77ceb75f10790244b957f09d5.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2010/01/make-it-fast-cook-it-slow-lemon-chicken-slow-cooker-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cook-the-book-lemon-chicken-ad598848e6d3ef58cbb564a883dcc204/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 1/2 pounds boneless chicken, cut + in 2-inch chunks\", \"Olive oil for browning the chicken (optional)\", \"1 + tablespoon kosher salt\", \"6 ounces (1/2 can) frozen lemonade concentrate, + thawed\", \"3 tablespoons brown sugar\", \"1 teaspoon balsamic vinegar\", + \"3 tablespoons ketchup\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 1/2 pounds boneless chicken, cut in 2-inch chunks\",\n \"weight\" + : 680.388555\n }, {\n \"text\" : \"1 tablespoon kosher salt\",\n + \ \"weight\" : 14.5625\n }, {\n \"text\" : \"6 ounces (1/2 + can) frozen lemonade concentrate, thawed\",\n \"weight\" : 170.09713875\n + \ }, {\n \"text\" : \"3 tablespoons brown sugar\",\n \"weight\" + : 27.187500000000007\n }, {\n \"text\" : \"1 teaspoon balsamic + vinegar\",\n \"weight\" : 5.3\n }, {\n \"text\" : \"3 tablespoons + ketchup\",\n \"weight\" : 51.0\n } ],\n \"calories\" : 1646.135492675,\n + \ \"totalWeight\" : 937.1055965204648,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1646.135492675,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 102.58555523850002,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 29.3318867205,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.6599768983500001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 42.463895832,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 21.9974603265,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 47.651296031125014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.153,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 43.970762356250006,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 26.37731250000001,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 127.14126623000001,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 510.29141625000005,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2171.9359826017508,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 114.04502826491158,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 162.83162390270468,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1481.7961644966372,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.560534888017535,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.032328437145466,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1015.52567585,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 292.21930755,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 15.52867396125,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.41554410438750006,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.901126266,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 47.04297673248751,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.4747877888875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 45.68518830000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 45.68518830000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.1092045205,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3607771100000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.802775378875,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 11.735828325,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 82.30677463375,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 157.82393113615387,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 146.65943360249997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.883765343708337,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.612,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 254.28253246000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 170.09713875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 90.49733260840628,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.404502826491157,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 40.70790597567617,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 42.33703327133249,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 36.44741604454186,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 60.2155229143031,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 145.07509654999998,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 32.46881195,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.88112326875,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 27.702940292500003,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 53.00742741176471,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 235.21488366243756,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 123.73938944437499,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 11.421297075000002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 35.153408675,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34019427750000003,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 14.013876894374999,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 14.66978540625,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 102.58555523850002,\n \"hasRDI\" : true,\n \"daily\" + : 157.82393113615387,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 29.3318867205,\n \"hasRDI\" + : true,\n \"daily\" : 146.65943360249997,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6599768983500001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.463895832,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.9974603265,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 47.651296031125014,\n \"hasRDI\" : true,\n \"daily\" : 15.883765343708337,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 47.498296031125015,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.153,\n \"hasRDI\" : + true,\n \"daily\" : 0.612,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 43.970762356250006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 26.37731250000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 127.14126623000001,\n \"hasRDI\" : true,\n \"daily\" : 254.28253246000003,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 510.29141625000005,\n \"hasRDI\" : true,\n \"daily\" + : 170.09713875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2171.9359826017508,\n \"hasRDI\" : true,\n \"daily\" + : 90.49733260840628,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 114.04502826491158,\n \"hasRDI\" : true,\n \"daily\" + : 11.404502826491157,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 162.83162390270468,\n \"hasRDI\" : true,\n \"daily\" + : 40.70790597567617,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1481.7961644966372,\n \"hasRDI\" : true,\n \"daily\" + : 42.33703327133249,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.560534888017535,\n \"hasRDI\" : true,\n \"daily\" + : 36.44741604454186,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.032328437145466,\n \"hasRDI\" : true,\n \"daily\" + : 60.2155229143031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1015.52567585,\n \"hasRDI\" : true,\n \"daily\" + : 145.07509654999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 292.21930755,\n \"hasRDI\" : true,\n \"daily\" + : 32.46881195,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.52867396125,\n \"hasRDI\" : true,\n \"daily\" + : 25.88112326875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.41554410438750006,\n \"hasRDI\" : true,\n + \ \"daily\" : 27.702940292500003,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.901126266,\n \"hasRDI\" + : true,\n \"daily\" : 53.00742741176471,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 47.04297673248751,\n + \ \"hasRDI\" : true,\n \"daily\" : 235.21488366243756,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4747877888875,\n + \ \"hasRDI\" : true,\n \"daily\" : 123.73938944437499,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.68518830000001,\n \"hasRDI\" : true,\n \"daily\" : 11.421297075000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.68518830000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1092045205,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.153408675,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3607771100000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34019427750000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.802775378875,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.013876894374999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.735828325,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.66978540625,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_57bc67d9983287cbef4c326249237c80\",\n + \ \"label\" : \"Brick Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f94/f94bcc3b8b7fe4641db4bdab0e3ece3c.jpg\",\n + \ \"source\" : \"Tasting Table\",\n \"url\" : \"https://www.tastingtable.com/entry_detail/chefs_recipes/4387/Perfect_chicken_no_oven_necessary.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/brick-chicken-57bc67d9983287cbef4c326249237c80/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 garlic cloves, + finely chopped\", \"2 tablespoons fresh rosemary leaves, finely chopped, plus + additional sprigs for garnish\", \"2 tablespoons fresh lemon juice (about + 1 medium lemon)\", \"¼ teaspoon red-pepper flakes\", \"Kosher salt\", \"3 + tablespoons olive oil\", \"One 4-pound whole grass-fed chicken, butterflied + (ask your butcher to do this for you)\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"4 garlic cloves, finely chopped\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"2 tablespoons fresh lemon juice (about + 1 medium lemon)\",\n \"weight\" : 48.0\n }, {\n \"text\" + : \"¼ teaspoon red-pepper flakes\",\n \"weight\" : 0.45\n }, {\n + \ \"text\" : \"Kosher salt\",\n \"weight\" : 11.491916880000002\n + \ }, {\n \"text\" : \"3 tablespoons olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"One 4-pound whole grass-fed chicken, + butterflied (ask your butcher to do this for you)\",\n \"weight\" : + 1814.36948\n } ],\n \"calories\" : 3040.49917976,\n \"totalWeight\" + : 1924.5741687658558,\n \"totalTime\" : 30.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3040.49917976,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 226.55886470784,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 58.81233071983999,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.196758109008,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 106.55310577536,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 44.190251258720004,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 7.534034999999999,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.5184,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 1.37613,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 230.4666968304,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 925.3284348,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4454.037144350402,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 163.60696240780538,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 253.41079616765853,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2439.596030797268,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.638781690527324,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 16.346018016605857,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1837.1622322079998,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 515.2107110239999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 42.4041399424,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7772587478399999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.5050609956799998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 84.07561696766399,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.4995043624,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 84.46327478399999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 84.46327478399999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.82469086384,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.4675424928,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.7288987392,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 43.452918696,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 152.024958988,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 348.55209955052305,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 294.0616535992,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 2.5113449999999995,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.0736,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 460.9333936608,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 308.44281159999997,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 185.5848810146001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 16.360696240780538,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 63.35269904191463,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 69.70274373706481,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.65989828070735,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 108.97345344403905,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 262.45174745828564,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 57.245634558222214,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 70.67356657066667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 51.817249856,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 88.53299974588235,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 420.37808483832,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 224.97521812,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.115818695999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 63.74484773066666,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6168856232,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 48.644493696,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 54.31614836999999,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 226.55886470784,\n \"hasRDI\" : true,\n \"daily\" : 348.55209955052305,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 58.81233071983999,\n \"hasRDI\" : true,\n \"daily\" + : 294.0616535992,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.196758109008,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.55310577536,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 44.190251258720004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.534034999999999,\n \"hasRDI\" : true,\n \"daily\" : 2.5113449999999995,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.015635,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5184,\n \"hasRDI\" : true,\n + \ \"daily\" : 2.0736,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.37613,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 230.4666968304,\n + \ \"hasRDI\" : true,\n \"daily\" : 460.9333936608,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 925.3284348,\n \"hasRDI\" : true,\n \"daily\" : 308.44281159999997,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 4454.037144350402,\n \"hasRDI\" : true,\n \"daily\" : 185.5848810146001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 163.60696240780538,\n \"hasRDI\" : true,\n \"daily\" : 16.360696240780538,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 253.41079616765853,\n \"hasRDI\" : true,\n \"daily\" : 63.35269904191463,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2439.596030797268,\n \"hasRDI\" : true,\n \"daily\" : 69.70274373706481,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.638781690527324,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.65989828070735,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.346018016605857,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.97345344403905,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1837.1622322079998,\n + \ \"hasRDI\" : true,\n \"daily\" : 262.45174745828564,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 515.2107110239999,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.245634558222214,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.4041399424,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.67356657066667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7772587478399999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.817249856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5050609956799998,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.53299974588235,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 84.07561696766399,\n + \ \"hasRDI\" : true,\n \"daily\" : 420.37808483832,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.4995043624,\n + \ \"hasRDI\" : true,\n \"daily\" : 224.97521812,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 84.46327478399999,\n \"hasRDI\" : true,\n \"daily\" : 21.115818695999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 84.46327478399999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.82469086384,\n + \ \"hasRDI\" : true,\n \"daily\" : 63.74484773066666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4675424928,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6168856232,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.7288987392,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.644493696,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.452918696,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.31614836999999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c992f22e86d0d0cf58d368163420f459\",\n + \ \"label\" : \"Inside-Out Chicken Kiev\",\n \"image\" : \"https://www.edamam.com/web-img/7c9/7c9060705513b832201fd7ba16e4f370.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/2214/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/inside-out-chicken-kiev-c992f22e86d0d0cf58d368163420f459/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"25.0g garlic + butter, softened\", \"25.0g crispy breadcrumbs\", \"4 skinless, boneless chicken + breasts\" ],\n \"ingredients\" : [ {\n \"text\" : \"25.0g garlic + butter, softened\",\n \"weight\" : 25.0\n }, {\n \"text\" + : \"25.0g crispy breadcrumbs\",\n \"weight\" : 25.0\n }, {\n \"text\" + : \"4 skinless, boneless chicken breasts\",\n \"weight\" : 696.0\n + \ } ],\n \"calories\" : 1475.12,\n \"totalWeight\" : 746.0,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1475.12,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 85.98249999999999,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.656350000000003,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.5503,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 32.0982,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 14.91735,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 18.01,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.125,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 1.565,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 148.66600000000003,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 499.19,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 624.23,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 128.31,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 185.25,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1586.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.3629,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.953,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1258.29,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 338.03999999999996,\n + \ \"unit\" : \"µg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.68148,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.70085,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 70.62867999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.7198,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 69.59,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 34.84,\n \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n + \ \"label\" : \"Folic acid\",\n \"quantity\" : 20.5,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4964,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.1590000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.4792,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 3.4,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 73.756,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 132.2807692307692,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 158.28175000000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.003333333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.5,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 297.33200000000005,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 166.39666666666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 26.00958333333333,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.831,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.3125,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 45.32,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.349444444444444,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 39.686666666666675,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 179.75571428571428,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 37.56,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 45.431999999999995,\n \"unit\" : \"%\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 41.226470588235294,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 353.14339999999993,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 185.99,\n \"unit\" : + \"%\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 17.3975,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 41.60666666666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7897500000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.396,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 4.25,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 85.98249999999999,\n \"hasRDI\" + : true,\n \"daily\" : 132.2807692307692,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 31.656350000000003,\n \"hasRDI\" : true,\n \"daily\" : + 158.28175000000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.5503,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.0982,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.91735,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 18.01,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.003333333333334,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.885,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.125,\n \"hasRDI\" : true,\n \"daily\" + : 4.5,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 1.565,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 148.66600000000003,\n \"hasRDI\" + : true,\n \"daily\" : 297.33200000000005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 499.19,\n + \ \"hasRDI\" : true,\n \"daily\" : 166.39666666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 624.23,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.00958333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 128.31,\n \"hasRDI\" + : true,\n \"daily\" : 12.831,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 185.25,\n \"hasRDI\" : true,\n \"daily\" + : 46.3125,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1586.2,\n \"hasRDI\" : true,\n \"daily\" : 45.32,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.3629,\n \"hasRDI\" + : true,\n \"daily\" : 35.349444444444444,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.953,\n \"hasRDI\" : true,\n \"daily\" + : 39.686666666666675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1258.29,\n \"hasRDI\" : true,\n \"daily\" + : 179.75571428571428,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 338.03999999999996,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.56,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.68148,\n \"hasRDI\" : true,\n \"daily\" : 45.431999999999995,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.70085,\n \"hasRDI\" : true,\n \"daily\" : 41.226470588235294,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.62867999999999,\n \"hasRDI\" : true,\n \"daily\" : 353.14339999999993,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.7198,\n \"hasRDI\" : true,\n \"daily\" : 185.99,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 69.59,\n \"hasRDI\" : true,\n \"daily\" : 17.3975,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.84,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.5,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4964,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.60666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1590000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7897500000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4792,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.396,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.25,\n \"unit\" : + \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n + \ }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1e3cb29a2a22293d3b40e53acb94ad2d\",\n + \ \"label\" : \"Roast Chicken with Thyme Recipe\",\n \"image\" : + \"https://www.edamam.com/web-img/fa8/fa8947d21f887a08dc63eb21b88bf252.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/10/roast-chicken-with-thyme-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-with-thyme-recipe-1e3cb29a2a22293d3b40e53acb94ad2d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 4 1/2-pound + chicken\", \"About 4 tablespoons olive oil, depending on the size of your + Dutch oven\", \"1 bunch thyme\", \"1 head garlic, skin on, cut in half\", + \"Salt and pepper\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + 4 1/2-pound chicken\",\n \"weight\" : 2041.165665\n }, {\n \"text\" + : \"About 4 tablespoons olive oil, depending on the size of your Dutch oven\",\n + \ \"weight\" : 54.0\n }, {\n \"text\" : \"1 bunch thyme\",\n + \ \"weight\" : 15.0\n }, {\n \"text\" : \"1 head garlic, + skin on, cut in half\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 12.96099399\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 6.480496995\n } ],\n \"calories\" + : 3567.46024968745,\n \"totalWeight\" : 2177.1076702277705,\n \"totalTime\" + : 120.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3567.46024968745,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 263.744957623357,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 67.48356182799039,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.346352872634,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 126.07522237007304,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 50.78355802607009,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 24.3417778283025,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.789565739735,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.541475180768,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 262.85395694698053,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1040.99448915,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5038.492316796134,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 335.68855540571485,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 325.2847953837777,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3002.6588383801713,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.92561310518264,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.121783166293266,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2142.9883839860995,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 606.5267215906499,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 61.82288243519999,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9469945280745997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.8029060772309997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 95.09505235677484,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.546532528955448,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 92.63124362114999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 92.63124362114999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.3027772218199996,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.7759853044,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.020375125347998,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 64.786463363815,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 178.3730124843725,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 405.76147326670304,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 337.41780913995194,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.113925942767501,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.15826295894,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 525.7079138939611,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.99816304999996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 209.9371798665056,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.568855540571484,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 81.32119884594442,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 85.79025252514775,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 94.03118391768135,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 127.47855444195511,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 306.1411977122999,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 67.39185795451665,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 103.03813739199998,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 63.13296853830665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 106.05329866064704,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 475.47526178387426,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 277.3266264477724,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 23.157810905287498,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 71.71295369699999,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6939963261,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 60.10187562673999,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 80.98307920476876,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 263.744957623357,\n \"hasRDI\" + : true,\n \"daily\" : 405.76147326670304,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 67.48356182799039,\n \"hasRDI\" : true,\n \"daily\" : + 337.41780913995194,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.346352872634,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 126.07522237007304,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.78355802607009,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 24.3417778283025,\n \"hasRDI\" : true,\n \"daily\" : 8.113925942767501,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.5522120885675,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 4.789565739735,\n \"hasRDI\" + : true,\n \"daily\" : 19.15826295894,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.541475180768,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 262.85395694698053,\n \"hasRDI\" : true,\n \"daily\" : 525.7079138939611,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1040.99448915,\n \"hasRDI\" : true,\n \"daily\" + : 346.99816304999996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5038.492316796134,\n \"hasRDI\" : true,\n \"daily\" + : 209.9371798665056,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 335.68855540571485,\n \"hasRDI\" : true,\n \"daily\" + : 33.568855540571484,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 325.2847953837777,\n \"hasRDI\" : true,\n \"daily\" + : 81.32119884594442,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3002.6588383801713,\n \"hasRDI\" : true,\n \"daily\" + : 85.79025252514775,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.92561310518264,\n \"hasRDI\" : true,\n \"daily\" + : 94.03118391768135,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.121783166293266,\n \"hasRDI\" : true,\n \"daily\" + : 127.47855444195511,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2142.9883839860995,\n \"hasRDI\" : true,\n \"daily\" + : 306.1411977122999,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 606.5267215906499,\n \"hasRDI\" : true,\n + \ \"daily\" : 67.39185795451665,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 61.82288243519999,\n \"hasRDI\" : true,\n + \ \"daily\" : 103.03813739199998,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9469945280745997,\n \"hasRDI\" : true,\n + \ \"daily\" : 63.13296853830665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.8029060772309997,\n + \ \"hasRDI\" : true,\n \"daily\" : 106.05329866064704,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 95.09505235677484,\n + \ \"hasRDI\" : true,\n \"daily\" : 475.47526178387426,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.546532528955448,\n + \ \"hasRDI\" : true,\n \"daily\" : 277.3266264477724,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 92.63124362114999,\n \"hasRDI\" : true,\n \"daily\" : 23.157810905287498,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 92.63124362114999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.3027772218199996,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.71295369699999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7759853044,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6939963261,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.020375125347998,\n + \ \"hasRDI\" : true,\n \"daily\" : 60.10187562673999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.786463363815,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.98307920476876,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_711546628813a0aa548a7c3ed7b60d9a\",\n + \ \"label\" : \"Chicken And Mushroom Spaghetti\",\n \"image\" : \"https://www.edamam.com/web-img/a11/a11bc6e116ab167506bbdf9d327d1b09.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/1050265/chicken-and-mushroom-spaghetti\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-and-mushroom-spaghetti-711546628813a0aa548a7c3ed7b60d9a/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Fat\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"8 ozs whole-wheat + spaghetti\", \"2 cups chicken pot pie filling\", \"2 tbsps chopped fresh parsley + leaves\" ],\n \"ingredients\" : [ {\n \"text\" : \"8 ozs whole-wheat + spaghetti\",\n \"weight\" : 226.796185\n }, {\n \"text\" + : \"2 cups chicken pot pie filling\",\n \"weight\" : 480.0\n }, + {\n \"text\" : \"2 tbsps chopped fresh parsley leaves\",\n \"weight\" + : 7.6\n } ],\n \"calories\" : 1343.9867238000002,\n \"totalWeight\" + : 714.3961850000001,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1343.9867238000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 3.57118659,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 0.6815661573000001,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 0.5654725607500001,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 1.3712107886000005,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 305.04625760550005,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.1308,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.06459999999999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 35.18200186550001,\n \"unit\" : \"g\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 108.7996948,\n \"unit\" : \"mg\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 154.00647400000003,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 361.71854455000005,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1033.71579775,\n \"unit\" : \"mg\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 9.8559015155,\n \"unit\" : \"mg\"\n },\n \"ZN\" : + {\n \"label\" : \"Zinc\",\n \"quantity\" : 5.696389584500001,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 661.5421573000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 79.996,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 27.388,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2333013828000001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.40856654455,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 12.406432290500002,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 0.69019549255,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 160.02582544999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 160.02582544999999,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.056999999999999995,\n \"unit\" : + \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 124.64,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 67.19933619,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 5.494133215384615,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 3.407830786500001,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 101.68208586850001,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 12.5232,\n \"unit\" : \"%\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 70.36400373100003,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 4.533320616666667,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 15.400647400000002,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 90.42963613750003,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 29.534737078571432,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 54.755008419444444,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 37.97593056333334,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 94.5060224714286,\n \"unit\" : \"%\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 8.888444444444444,\n \"unit\" : \"%\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 45.64666666666667,\n + \ \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 82.22009218666668,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 24.033326150000004,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 62.032161452500006,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 34.5097746275,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 40.006456362499996,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 0.285,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 155.8,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 3.57118659,\n \"hasRDI\" : true,\n + \ \"daily\" : 5.494133215384615,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 0.6815661573000001,\n \"hasRDI\" : true,\n \"daily\" : + 3.407830786500001,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.0,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.5654725607500001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3712107886000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 305.04625760550005,\n \"hasRDI\" : true,\n \"daily\" : 101.68208586850001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 301.9154576055,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.1308,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.5232,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.06459999999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 35.18200186550001,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.36400373100003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 108.7996948,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.533320616666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 154.00647400000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.400647400000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 361.71854455000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.42963613750003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1033.71579775,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.534737078571432,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.8559015155,\n \"hasRDI\" + : true,\n \"daily\" : 54.755008419444444,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.696389584500001,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.97593056333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 661.5421573000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.5060224714286,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 79.996,\n \"hasRDI\" : true,\n \"daily\" + : 8.888444444444444,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 27.388,\n \"hasRDI\" : true,\n \"daily\" + : 45.64666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2333013828000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 82.22009218666668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.40856654455,\n \"hasRDI\" + : true,\n \"daily\" : 24.033326150000004,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.406432290500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.032161452500006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69019549255,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.5097746275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.02582544999999,\n \"hasRDI\" : true,\n \"daily\" : 40.006456362499996,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.02582544999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.056999999999999995,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.285,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : + null,\n \"total\" : 124.64,\n \"hasRDI\" : true,\n \"daily\" + : 155.8,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_31eeb3092c3a5878ab9de8e256c6e70d\",\n + \ \"label\" : \"Cook the Book: Perfect Roasted Chicken\",\n \"image\" + : \"https://www.edamam.com/web-img/b0a/b0a263aeca77229c7b6bf8bbcd36a736.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/09/perfect-roasted-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cook-the-book-perfect-roasted-chicken-31eeb3092c3a5878ab9de8e256c6e70d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"One 3- to 4-pound + chicken\", \"1 lemon and/or 1 medium onion, quartered\", \"Kosher salt\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"One 3- to 4-pound chicken\",\n + \ \"weight\" : 1587.5732950000001\n }, {\n \"text\" : \"1 + lemon and/or 1 medium onion, quartered\",\n \"weight\" : 110.0\n }, + {\n \"text\" : \"Kosher salt\",\n \"weight\" : 10.18543977\n + \ } ],\n \"calories\" : 2365.03215729,\n \"totalWeight\" : 1705.7976302537197,\n + \ \"totalTime\" : 75.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2365.03215729,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 162.69020599436,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.57479812985999,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.047163345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 67.37821005344001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 34.88815985138,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 10.274000000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.87,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.664000000000001,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 202.00627035160002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3947.672746056601,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 146.0243229268927,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 226.9922114725372,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2201.607145554298,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 9.974088871737274,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 14.33732724711372,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1618.8382656820002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 442.615434646,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 25.412797449600003,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.69832990436,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.32515980872,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 73.547784659206,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.9104244421,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 85.672990436,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 85.672990436,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.2606495217999996,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.633247609,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 118.2516078645,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 250.29262460670773,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 232.87399064929997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.424666666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 7.48,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 404.01254070320005,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 269.88746015000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 164.48636441902505,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 14.602432292689269,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 56.7480528681343,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 62.90306130155137,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 55.41160484298486,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 95.58218164742479,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 231.2626093831429,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.179492738444445,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 42.354662416000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.555326957333335,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 77.95057698352942,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 367.73892329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.521222105,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.418247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 16.303247609,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 20.791559511250004,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 162.69020599436,\n \"hasRDI\" : true,\n \"daily\" : 250.29262460670773,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 46.57479812985999,\n \"hasRDI\" : true,\n \"daily\" + : 232.87399064929997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 67.37821005344001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.88815985138,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 10.274000000000001,\n \"hasRDI\" : true,\n \"daily\" : 3.424666666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.404,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.87,\n \"hasRDI\" : true,\n \"daily\" + : 7.48,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 4.664000000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 202.00627035160002,\n \"hasRDI\" + : true,\n \"daily\" : 404.01254070320005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 809.66238045,\n + \ \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3947.672746056601,\n + \ \"hasRDI\" : true,\n \"daily\" : 164.48636441902505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 146.0243229268927,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.602432292689269,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 226.9922114725372,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.7480528681343,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2201.607145554298,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.90306130155137,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.974088871737274,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.41160484298486,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.33732724711372,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.58218164742479,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1618.8382656820002,\n + \ \"hasRDI\" : true,\n \"daily\" : 231.2626093831429,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 442.615434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.179492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.412797449600003,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.354662416000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69832990436,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.555326957333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.32515980872,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.95057698352942,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.547784659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 367.73892329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9104244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.521222105,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.672990436,\n \"hasRDI\" : true,\n \"daily\" : 21.418247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.672990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2606495217999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.303247609,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.633247609,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.791559511250004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_33c20e7eb8d4430db5a9cf82984ad264\",\n + \ \"label\" : \"Butter Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/fe8/fe8fdf2a427c7851aef06f6107f1794f.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/butter-chicken-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/butter-chicken-33c20e7eb8d4430db5a9cf82984ad264/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"30 grams garlic (~ 5 large cloves), peeled\", \"30 grams ginger (~ 1-inch + piece), peeled and sliced\", \"450 grams chicken thighs, boneless skinless\", + \"1/3 cup plain yogurt\", \"1 tablespoon vegetable oil\", \"1 teaspoon salt\", + \"1 teaspoon garam masala\", \"1/4 teaspoon crushed saffron threads\", \"600 + grams whole stewed tomatoes (1 1/2 small cans)\", \"2 tablespoons tomato paste\", + \"3 tablespoons butter\", \"6 pods green cardamom\", \"1 pod black cardamom\", + \"1 cinnamon stick\", \"4 cloves\", \"1 teaspoon fenugreek seeds\", \"2 fresh + chili peppers\", \"40 grams raw cashew nuts (about 1/4 cup)\", \"1 teaspoon + salt (to taste)\", \"1 teaspoon dried fenugreek leaves (qasuri methi)\", \"1 + teaspoons garam masala\", \"1/3 cup heavy cream\" ],\n \"ingredients\" + : [ {\n \"text\" : \"30 grams garlic (~ 5 large cloves), peeled\",\n + \ \"weight\" : 30.0\n }, {\n \"text\" : \"30 grams ginger + (~ 1-inch piece), peeled and sliced\",\n \"weight\" : 30.0\n }, + {\n \"text\" : \"450 grams chicken thighs, boneless skinless\",\n \"weight\" + : 450.0\n }, {\n \"text\" : \"1/3 cup plain yogurt\",\n \"weight\" + : 81.66666666666666\n }, {\n \"text\" : \"1 tablespoon vegetable + oil\",\n \"weight\" : 14.0\n }, {\n \"text\" : \"1 teaspoon + salt\",\n \"weight\" : 6.0\n }, {\n \"text\" : \"1 teaspoon + garam masala\",\n \"weight\" : 1.9\n }, {\n \"text\" : + \"1/4 teaspoon crushed saffron threads\",\n \"weight\" : 0.175\n }, + {\n \"text\" : \"600 grams whole stewed tomatoes (1 1/2 small cans)\",\n + \ \"weight\" : 213.75\n }, {\n \"text\" : \"2 tablespoons + tomato paste\",\n \"weight\" : 32.0\n }, {\n \"text\" : + \"3 tablespoons butter\",\n \"weight\" : 42.599999999999994\n }, + {\n \"text\" : \"6 pods green cardamom\",\n \"weight\" : 1.5\n + \ }, {\n \"text\" : \"1 pod black cardamom\",\n \"weight\" + : 0.25\n }, {\n \"text\" : \"1 cinnamon stick\",\n \"weight\" + : 2.6\n }, {\n \"text\" : \"4 cloves\",\n \"weight\" : + 0.6\n }, {\n \"text\" : \"1 teaspoon fenugreek seeds\",\n \"weight\" + : 3.7\n }, {\n \"text\" : \"2 fresh chili peppers\",\n \"weight\" + : 90.0\n }, {\n \"text\" : \"40 grams raw cashew nuts (about 1/4 + cup)\",\n \"weight\" : 56.7\n }, {\n \"text\" : \"1 teaspoon + salt (to taste)\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"1 teaspoon dried fenugreek leaves (qasuri methi)\",\n \"weight\" + : 3.7\n }, {\n \"text\" : \"1 teaspoons garam masala\",\n \"weight\" + : 1.9\n }, {\n \"text\" : \"1/3 cup heavy cream\",\n \"weight\" + : 79.33333333333333\n } ],\n \"calories\" : 2273.856666666667,\n + \ \"totalWeight\" : 1140.6910676548498,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2273.856666666667,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 182.6663725,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 68.03142816666667,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.887832,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 73.19727808333334,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 25.631820083333338,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 71.79328416666667,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.546374999999998,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 24.394521666666666,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 98.9823141666667,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 651.8933333333334,\n \"unit\" : \"mg\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 2642.617335,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 442.76243957049724,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 365.57499400988183,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 2892.792618745721,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 14.024631356594337,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 11.348828567654849,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 1369.4645000000003,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 854.9972499999999,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 177.6188333333333,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 2.025022416666667,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.225742083333333,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 25.881428,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.0908860000000002,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.73774999999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 89.73774999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.3073866666666665,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.726,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 9.858918333333335,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 58.4762,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 113.69283333333335,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 281.02518846153845,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 340.15714083333336,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 23.93109472222222,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 58.18549999999999,\n \"unit\" : \"%\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 197.9646283333334,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 217.2977777777778,\n \"unit\" + : \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 110.10905562499998,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 44.27624395704972,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 91.39374850247046,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 82.65121767844917,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 77.91461864774631,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 75.65885711769899,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 195.63778571428577,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 94.99969444444443,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 296.03138888888884,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 135.00149444444446,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 72.10247549019606,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 129.40714,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 154.54430000000002,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.434437499999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.12311111111111,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.4315,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 49.294591666666676,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 73.09525,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 182.6663725,\n \"hasRDI\" : true,\n \"daily\" : 281.02518846153845,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 68.03142816666667,\n \"hasRDI\" : true,\n \"daily\" + : 340.15714083333336,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.887832,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 73.19727808333334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.631820083333338,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 71.79328416666667,\n \"hasRDI\" : true,\n \"daily\" : 23.93109472222222,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.24690916666667,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.546374999999998,\n \"hasRDI\" + : true,\n \"daily\" : 58.18549999999999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 24.394521666666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 98.9823141666667,\n \"hasRDI\" : true,\n \"daily\" : 197.9646283333334,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 651.8933333333334,\n \"hasRDI\" : true,\n \"daily\" + : 217.2977777777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2642.617335,\n \"hasRDI\" : true,\n \"daily\" + : 110.10905562499998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 442.76243957049724,\n \"hasRDI\" : true,\n \"daily\" + : 44.27624395704972,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 365.57499400988183,\n \"hasRDI\" : true,\n \"daily\" + : 91.39374850247046,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2892.792618745721,\n \"hasRDI\" : true,\n \"daily\" + : 82.65121767844917,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.024631356594337,\n \"hasRDI\" : true,\n \"daily\" + : 77.91461864774631,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.348828567654849,\n \"hasRDI\" : true,\n \"daily\" + : 75.65885711769899,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1369.4645000000003,\n \"hasRDI\" : true,\n \"daily\" + : 195.63778571428577,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 854.9972499999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.99969444444443,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 177.6188333333333,\n \"hasRDI\" : true,\n + \ \"daily\" : 296.03138888888884,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.025022416666667,\n \"hasRDI\" : true,\n + \ \"daily\" : 135.00149444444446,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.225742083333333,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.10247549019606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.881428,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.40714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0908860000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 154.54430000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.73774999999999,\n \"hasRDI\" : true,\n \"daily\" : 22.434437499999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.73774999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.3073866666666665,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.12311111111111,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.726,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4315,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.858918333333335,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.294591666666676,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.4762,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.09525,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_a54d28d9e770c131633682405e7b6fbb\",\n + \ \"label\" : \"Buttermilk Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/71b/71b8d910554a0c7ed27a928e90944f93.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/336024/buttermilk-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/buttermilk-chicken-a54d28d9e770c131633682405e7b6fbb/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"Vegetable oil, for baking sheet\", + \"8 slices white bread\", \"1 cup buttermilk\", \"1 teaspoon hot-pepper sauce\", + \"Salt and pepper\", \"3/4 cup grated Parmesan cheese (2 1/2 ounces)\", \"1 + teaspoon dried thyme\", \"4 pounds chicken parts (preferably legs, thighs, + and wings), rinsed and patted dry\" ],\n \"ingredients\" : [ {\n \"text\" + : \"Vegetable oil, for baking sheet\",\n \"weight\" : 32.18260871425\n + \ }, {\n \"text\" : \"8 slices white bread\",\n \"weight\" + : 232.0\n }, {\n \"text\" : \"1 cup buttermilk\",\n \"weight\" + : 245.0\n }, {\n \"text\" : \"1 teaspoon hot-pepper sauce\",\n + \ \"weight\" : 3.1250000000000004\n }, {\n \"text\" : \"Salt + and pepper\",\n \"weight\" : 14.198209726875001\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 7.099104863437501\n }, {\n + \ \"text\" : \"3/4 cup grated Parmesan cheese (2 1/2 ounces)\",\n \"weight\" + : 70.8738078125\n }, {\n \"text\" : \"1 teaspoon dried thyme\",\n + \ \"weight\" : 1.0\n }, {\n \"text\" : \"4 pounds chicken + parts (preferably legs, thighs, and wings), rinsed and patted dry\",\n \"weight\" + : 1814.36948\n } ],\n \"calories\" : 5311.344891666199,\n \"totalWeight\" + : 2409.5282123916845,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 5311.344891666199,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 361.84836471876685,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 99.08054883031512,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.8493746668382978,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 156.5004427935259,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 72.4587920925527,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 136.94575037173078,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.492948530449686,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 26.241849733625997,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 358.93825888427995,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1836.0762797125003,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5594.290965232854,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 1610.6290532853875,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 504.2179832639931,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4659.967502902705,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.108486366607224,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 29.302478565720158,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 3918.7246455029817,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 603.6305208850032,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.904625000000001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 2.4132775386993877,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.8498526766916874,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 97.45657423776098,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.743148155861979,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 305.9878487736594,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 227.10784877365938,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 46.4,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 12.638576469750001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.1687385190625004,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 11.71540017547375,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 80.1233484742597,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 265.56724458330996,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 556.6897918750259,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 495.40274415157563,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.64858345724359,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 45.97179412179875,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 717.8765177685599,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 612.0254265708335,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 233.0954568847023,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 161.06290532853876,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 126.05449581599827,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 133.141928654363,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 128.38047981448457,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 195.34985710480106,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 559.817806500426,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 67.07005787611146,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 13.174375000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 160.88516924662585,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 226.46192215833457,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 487.2828711888049,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 337.15740779309897,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 76.49696219341484,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 210.64294116250002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5421846297656251,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 58.577000877368754,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 100.15418559282463,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 361.84836471876685,\n \"hasRDI\" : true,\n \"daily\" : 556.6897918750259,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 99.08054883031512,\n \"hasRDI\" : true,\n \"daily\" + : 495.40274415157563,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.8493746668382978,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 156.5004427935259,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.4587920925527,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 136.94575037173078,\n \"hasRDI\" : true,\n \"daily\" : 45.64858345724359,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.4528018412811,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 11.492948530449686,\n \"hasRDI\" + : true,\n \"daily\" : 45.97179412179875,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.241849733625997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 358.93825888427995,\n \"hasRDI\" : true,\n \"daily\" : 717.8765177685599,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1836.0762797125003,\n \"hasRDI\" : true,\n \"daily\" + : 612.0254265708335,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5594.290965232854,\n \"hasRDI\" : true,\n \"daily\" + : 233.0954568847023,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1610.6290532853875,\n \"hasRDI\" : true,\n \"daily\" + : 161.06290532853876,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 504.2179832639931,\n \"hasRDI\" : true,\n \"daily\" + : 126.05449581599827,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4659.967502902705,\n \"hasRDI\" : true,\n \"daily\" + : 133.141928654363,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.108486366607224,\n \"hasRDI\" : true,\n \"daily\" + : 128.38047981448457,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 29.302478565720158,\n \"hasRDI\" : true,\n \"daily\" + : 195.34985710480106,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3918.7246455029817,\n \"hasRDI\" : true,\n \"daily\" + : 559.817806500426,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 603.6305208850032,\n \"hasRDI\" : true,\n + \ \"daily\" : 67.07005787611146,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.904625000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 13.174375000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.4132775386993877,\n \"hasRDI\" : true,\n + \ \"daily\" : 160.88516924662585,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.8498526766916874,\n + \ \"hasRDI\" : true,\n \"daily\" : 226.46192215833457,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 97.45657423776098,\n + \ \"hasRDI\" : true,\n \"daily\" : 487.2828711888049,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.743148155861979,\n + \ \"hasRDI\" : true,\n \"daily\" : 337.15740779309897,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 305.9878487736594,\n \"hasRDI\" : true,\n \"daily\" : 76.49696219341484,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 227.10784877365938,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 46.4,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.638576469750001,\n + \ \"hasRDI\" : true,\n \"daily\" : 210.64294116250002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1687385190625004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5421846297656251,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.71540017547375,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.577000877368754,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 80.1233484742597,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.15418559282463,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0f6cb925cc2887ce8d861bf9f38a9355\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/08b/08be53ff976298cbb5a94680343f680e.jpg\",\n + \ \"source\" : \"Honest Cooking\",\n \"url\" : \"http://honestcooking.com/chicken-piccata-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-0f6cb925cc2887ce8d861bf9f38a9355/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"Two large chicken breasts\", \"¼ cup + flour\", \"Salt and pepper\", \"2 tbsp. olive oil\", \"3 tbsp. butter\", \"3 + tbsp. dry white wine\", \"3 tbsp. lemon juice\", \"2 tbsp. capers, rinsed + and drained\", \"1 tbsp. parsley, chopped\" ],\n \"ingredients\" : [ + {\n \"text\" : \"Two large chicken breasts\",\n \"weight\" : + 435.0\n }, {\n \"text\" : \"¼ cup flour\",\n \"weight\" + : 31.25\n }, {\n \"text\" : \"Salt and pepper\",\n \"weight\" + : 3.8577000000000004\n }, {\n \"text\" : \"Salt and pepper\",\n + \ \"weight\" : 1.9288500000000002\n }, {\n \"text\" : \"2 + tbsp. olive oil\",\n \"weight\" : 27.0\n }, {\n \"text\" + : \"3 tbsp. butter\",\n \"weight\" : 42.599999999999994\n }, {\n + \ \"text\" : \"3 tbsp. dry white wine\",\n \"weight\" : 44.099999999999994\n + \ }, {\n \"text\" : \"3 tbsp. lemon juice\",\n \"weight\" + : 42.0\n }, {\n \"text\" : \"2 tbsp. capers, rinsed and drained\",\n + \ \"weight\" : 17.2\n }, {\n \"text\" : \"1 tbsp. parsley, + chopped\",\n \"weight\" : 3.8\n } ],\n \"calories\" : 1461.6394134999998,\n + \ \"totalWeight\" : 646.9706945175138,\n \"totalTime\" : 30.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1461.6394135,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 102.43823051,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 37.319107092,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.8531779999999998,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 45.33742370149999,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 12.877660423000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 30.232154575,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.13354905,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.7068596399999998,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 95.18478251500001,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 369.99,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1499.652868098,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 90.6913481842033,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 134.30225194517516,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1129.2362640614012,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 4.614049421907795,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.9317551595175138,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 819.1435830000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 413.50678949999997,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 22.047600000000003,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.33441215799999996,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.44075293000000004,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 43.77824975550001,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.374886953500001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 45.70390449999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 45.70390449999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.5514200000000002,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.379,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 6.318990040000001,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 89.21487745,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 73.08197067500001,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 157.59727770769229,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 186.59553546,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 10.077384858333334,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 8.5341962,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : + {\n \"label\" : \"Protein\",\n \"quantity\" : 190.36956503000002,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 123.33,\n \"unit\" : + \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 62.485536170749995,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 9.06913481842033,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 33.57556298629379,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 32.26389325889718,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 25.633607899487753,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 26.211701063450093,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 117.02051185714289,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 45.94519883333333,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 36.746,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 22.294143866666662,\n \"unit\" : \"%\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 25.92664294117647,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 218.89124877750004,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 118.74434767500004,\n \"unit\" + : \"%\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 11.425976124999998,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 25.857000000000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.59475,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 31.594950200000007,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 111.51859681250001,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 102.43823051,\n \"hasRDI\" : + true,\n \"daily\" : 157.59727770769229,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 37.319107092,\n \"hasRDI\" : true,\n \"daily\" : 186.59553546,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.8531779999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.33742370149999,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.877660423000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 30.232154575,\n \"hasRDI\" : true,\n \"daily\" : 10.077384858333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.098605525,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.13354905,\n \"hasRDI\" + : true,\n \"daily\" : 8.5341962,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.7068596399999998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 95.18478251500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 190.36956503000002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 369.99,\n \"hasRDI\" : true,\n \"daily\" : 123.33,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1499.652868098,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.485536170749995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 90.6913481842033,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.06913481842033,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 134.30225194517516,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.57556298629379,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1129.2362640614012,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.26389325889718,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.614049421907795,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.633607899487753,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.9317551595175138,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.211701063450093,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 819.1435830000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 117.02051185714289,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 413.50678949999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.94519883333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.047600000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.746,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.33441215799999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.294143866666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.44075293000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.92664294117647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.77824975550001,\n + \ \"hasRDI\" : true,\n \"daily\" : 218.89124877750004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.374886953500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.74434767500004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.70390449999999,\n \"hasRDI\" : true,\n \"daily\" : 11.425976124999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.70390449999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5514200000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.857000000000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.379,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.59475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.318990040000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.594950200000007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 89.21487745,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.51859681250001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e94bcbe2193c9b9b52850fda540c1043\",\n + \ \"label\" : \"Chesapeake Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ac2/ac2b80a2b5782c0b451493cac4c6efb7.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chesapeake-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chesapeake-chicken-e94bcbe2193c9b9b52850fda540c1043/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 chicken, cut into 8 pieces\", \"1 + quart buttermilk\", \"3 drops tabasco\", \"5 tbsp. old bay seasoning\", \"2 + cups flour\", \"Freshly ground black pepper\", \"Frying oil\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 chicken, cut into 8 pieces\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 quart buttermilk\",\n \"weight\" + : 980.0\n }, {\n \"text\" : \"3 drops tabasco\",\n \"weight\" + : 0.17625000000000002\n }, {\n \"text\" : \"5 tbsp. old bay seasoning\",\n + \ \"weight\" : 22.0\n }, {\n \"text\" : \"2 cups flour\",\n + \ \"weight\" : 250.0\n }, {\n \"text\" : \"Freshly ground + black pepper\",\n \"weight\" : 6.51652875\n }, {\n \"text\" + : \"Frying oil\",\n \"weight\" : 29.541597\n } ],\n \"calories\" + : 3625.0653546425,\n \"totalWeight\" : 2208.23437575,\n \"totalTime\" + : 156.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3625.0653546425,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 181.03797533725,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 48.40033552425,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.00908930815,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 79.12102557768252,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 39.877157947165,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 256.315530135625,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.885739273750001,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 48.054934909,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 232.17214096212504,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 729.2000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2519.3589682500005,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 1523.5093723625005,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 407.24441416250005,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3723.4102670875004,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 20.095799441625,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 18.686628692125,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2542.5566529250004,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 545.3439877625001,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 27.167931250000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.25037425105,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.76709780175,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 66.99079764861251,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.9728345236625002,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 200.6713348875,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 200.6678098875,\n \"unit\" : + \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 0.0017625000000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 5.008000000000001,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.916152360200002,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 224.44906872474996,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 181.253267732125,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 278.5199620573077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 242.00167762125002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 85.43851004520833,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 43.542957095,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 464.3442819242501,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.06666666666672,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 104.97329034375002,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 152.35093723625005,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 101.81110354062501,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 106.3831504882143,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 111.64333023125,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.57752461416668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 363.2223789892858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 60.59377641805557,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 45.279885416666666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 83.35828340333333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 162.77045892647058,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 334.95398824306255,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 198.641726183125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 50.16783372187499,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 83.46666666666668,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4600000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.58076180100001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 280.5613359059374,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 181.03797533725,\n \"hasRDI\" : true,\n \"daily\" + : 278.5199620573077,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 48.40033552425,\n \"hasRDI\" + : true,\n \"daily\" : 242.00167762125002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.00908930815,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.12102557768252,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.877157947165,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 256.315530135625,\n \"hasRDI\" : true,\n \"daily\" : 85.43851004520833,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 245.429790861875,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 10.885739273750001,\n \"hasRDI\" + : true,\n \"daily\" : 43.542957095,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 48.054934909,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 232.17214096212504,\n \"hasRDI\" : true,\n \"daily\" : 464.3442819242501,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 729.2000000000002,\n \"hasRDI\" : true,\n \"daily\" + : 243.06666666666672,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2519.3589682500005,\n \"hasRDI\" : true,\n \"daily\" + : 104.97329034375002,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1523.5093723625005,\n \"hasRDI\" : true,\n \"daily\" + : 152.35093723625005,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 407.24441416250005,\n \"hasRDI\" : true,\n \"daily\" + : 101.81110354062501,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3723.4102670875004,\n \"hasRDI\" : true,\n \"daily\" + : 106.3831504882143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.095799441625,\n \"hasRDI\" : true,\n \"daily\" + : 111.64333023125,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.686628692125,\n \"hasRDI\" : true,\n \"daily\" + : 124.57752461416668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2542.5566529250004,\n \"hasRDI\" : true,\n \"daily\" + : 363.2223789892858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 545.3439877625001,\n \"hasRDI\" : true,\n + \ \"daily\" : 60.59377641805557,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.167931250000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 45.279885416666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.25037425105,\n \"hasRDI\" : true,\n + \ \"daily\" : 83.35828340333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.76709780175,\n \"hasRDI\" + : true,\n \"daily\" : 162.77045892647058,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.99079764861251,\n + \ \"hasRDI\" : true,\n \"daily\" : 334.95398824306255,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9728345236625002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.641726183125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 200.6713348875,\n \"hasRDI\" : true,\n \"daily\" : 50.16783372187499,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 200.6678098875,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0017625000000000002,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.008000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 83.46666666666668,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.916152360200002,\n \"hasRDI\" : true,\n + \ \"daily\" : 44.58076180100001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 224.44906872474996,\n \"hasRDI\" : true,\n + \ \"daily\" : 280.5613359059374,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0d254199d5f1a0a6a173edb0ae833a7b\",\n + \ \"label\" : \"Perfectly Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/679/679508d744a7085a9da30257da5b42bd.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/317811/perfectly-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/perfectly-roasted-chicken-0d254199d5f1a0a6a173edb0ae833a7b/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 organic chicken + (3 pounds)\", \"Coarse salt and freshly ground white pepper\", \"Vegetable + oil, for cooking\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + organic chicken (3 pounds)\",\n \"weight\" : 1360.77711\n }, {\n + \ \"text\" : \"Coarse salt and freshly ground white pepper\",\n \"weight\" + : 8.16466266\n }, {\n \"text\" : \"Coarse salt and freshly ground + white pepper\",\n \"weight\" : 0.0\n }, {\n \"text\" : + \"Vegetable oil, for cooking\",\n \"weight\" : 18.506568696\n } + ],\n \"calories\" : 2153.0542020926396,\n \"totalWeight\" : 1385.8881647499088,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2153.0542020926396,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 157.86103097688,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.08661822767655,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.03951396365432,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 71.06355820145735,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 33.052361559682076,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 172.1110888728,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 693.9963260999999,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3207.4966091339747,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 103.3712044809381,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 185.13173182053907,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1749.3991006563126,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 8.3497507171779,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.128406981933908,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1360.2327991559998,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 379.38465826799995,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 14.805254956799999,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.55519706088,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.11039412176,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 62.931586850748,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.2386495217999998,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.51970608799999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.51970608799999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.8685181478799997,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.8506568695999999,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.810417280128,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 13.879926521999998,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 107.65271010463198,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 242.86312457981538,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 205.43309113838276,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 344.2221777456,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 231.33210869999996,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 133.64569204724896,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 10.33712044809381,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 46.28293295513477,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 49.98283144732322,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 46.38750398432167,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 80.85604654622605,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 194.318971308,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 42.15385091866666,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 24.675424927999998,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 37.013137392,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 65.31730128,\n \"unit\" : \"%\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 314.65793425374,\n \"unit\" : \"%\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 161.93247609,\n + \ \"unit\" : \"%\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 13.879926521999998,\n + \ \"unit\" : \"%\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 47.80863579799999,\n \"unit\" + : \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.46266421739999997,\n \"unit\" : + \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 34.05208640064,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 17.3499081525,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 157.86103097688,\n \"hasRDI\" : true,\n \"daily\" : 242.86312457981538,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 41.08661822767655,\n \"hasRDI\" : true,\n \"daily\" + : 205.43309113838276,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.03951396365432,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 71.06355820145735,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.052361559682076,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 172.1110888728,\n \"hasRDI\" + : true,\n \"daily\" : 344.2221777456,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 693.9963260999999,\n \"hasRDI\" + : true,\n \"daily\" : 231.33210869999996,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 3207.4966091339747,\n \"hasRDI\" + : true,\n \"daily\" : 133.64569204724896,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 103.3712044809381,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.33712044809381,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 185.13173182053907,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.28293295513477,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1749.3991006563126,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.98283144732322,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.3497507171779,\n \"hasRDI\" + : true,\n \"daily\" : 46.38750398432167,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.128406981933908,\n \"hasRDI\" : true,\n + \ \"daily\" : 80.85604654622605,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1360.2327991559998,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.318971308,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 379.38465826799995,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.15385091866666,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.805254956799999,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.675424927999998,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.55519706088,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.013137392,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.11039412176,\n \"hasRDI\" : true,\n + \ \"daily\" : 65.31730128,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 62.931586850748,\n \"hasRDI\" : true,\n + \ \"daily\" : 314.65793425374,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.2386495217999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 161.93247609,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 55.51970608799999,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.879926521999998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 55.51970608799999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8685181478799997,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.80863579799999,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8506568695999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.46266421739999997,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.810417280128,\n \"hasRDI\" : true,\n + \ \"daily\" : 34.05208640064,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 13.879926521999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.3499081525,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7f75516e49a367930ba2c0c3544d4afb\",\n + \ \"label\" : \"Roast Chicken recipes\",\n \"image\" : \"https://www.edamam.com/web-img/bfc/bfcf87f838efdbc03544e49eb43a2900\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipe/roast-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-recipes-7f75516e49a367930ba2c0c3544d4afb/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"kosher salt\", + \"whole 4-pound chicken, giblets reserved for another use\", \"(1/2 stick) + unsalted butter, melted\" ],\n \"ingredients\" : [ {\n \"text\" + : \"kosher salt\",\n \"weight\" : 11.225216880000001\n }, {\n + \ \"text\" : \"whole 4-pound chicken, giblets reserved for another use\",\n + \ \"weight\" : 1814.36948\n }, {\n \"text\" : \"(1/2 stick) + unsalted butter, melted\",\n \"weight\" : 56.5\n } ],\n \"calories\" + : 4305.999382,\n \"totalWeight\" : 1878.8017673273916,\n \"totalTime\" + : 90.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 4305.999382,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 319.07119368800005,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 107.222244588,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 3.6120083956,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 125.09352055200003,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 60.32342920400001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.0339,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.0339,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 337.9529732800001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1482.2521100000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4350.669558350401,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 215.044391758574,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 364.08321887327395,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3443.3529001861916,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 16.366801868180392,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 23.827022475327396,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2680.6831356000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1130.3514868000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 29.029911680000005,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.0914466880000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.1964533760000005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 123.41899833480002,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.35198818,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 110.5571688,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 110.5571688,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 5.7205953880000004,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 4.476238960000001,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 6.75390844,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 31.170542200000003,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 215.2999691,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 490.8787595200001,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 536.11122294,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.011300000000000001,\n \"unit\" : \"%\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 675.9059465600002,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 494.0840366666667,\n \"unit\" + : \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 181.27789826460003,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 21.5044391758574,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 91.02080471831849,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 98.38151143389119,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 90.92667704544662,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 158.84681650218263,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 382.9547336571429,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 125.59460964444446,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 48.38318613333334,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 72.76311253333334,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 129.2031397647059,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 617.0949916740001,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 317.59940900000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 27.6392922,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 95.34325646666667,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1190597400000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 33.769542200000004,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 38.96317775000001,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 319.07119368800005,\n \"hasRDI\" : true,\n \"daily\" + : 490.8787595200001,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 107.222244588,\n \"hasRDI\" + : true,\n \"daily\" : 536.11122294,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 3.6120083956,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 125.09352055200003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 60.32342920400001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.0339,\n \"hasRDI\" : true,\n \"daily\" : 0.011300000000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0339,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 0.0339,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 337.9529732800001,\n \"hasRDI\" + : true,\n \"daily\" : 675.9059465600002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1482.2521100000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 494.0840366666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 4350.669558350401,\n + \ \"hasRDI\" : true,\n \"daily\" : 181.27789826460003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 215.044391758574,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.5044391758574,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 364.08321887327395,\n + \ \"hasRDI\" : true,\n \"daily\" : 91.02080471831849,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3443.3529001861916,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.38151143389119,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.366801868180392,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.92667704544662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 23.827022475327396,\n + \ \"hasRDI\" : true,\n \"daily\" : 158.84681650218263,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2680.6831356000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 382.9547336571429,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1130.3514868000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.59460964444446,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.029911680000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.38318613333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0914466880000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.76311253333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1964533760000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.2031397647059,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 123.41899833480002,\n + \ \"hasRDI\" : true,\n \"daily\" : 617.0949916740001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.35198818,\n + \ \"hasRDI\" : true,\n \"daily\" : 317.59940900000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 110.5571688,\n \"hasRDI\" : true,\n \"daily\" : 27.6392922,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 110.5571688,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.7205953880000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.34325646666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.476238960000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1190597400000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.75390844,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.769542200000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.170542200000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.96317775000001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_29bbe48c767bacfcf665b2adcf20aaf2\",\n + \ \"label\" : \"Spring Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/e7b/e7b20984220bc1d611a0f615f12ac66d.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2008/04/spring-ginger-roasted-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/spring-chicken-recipe-29bbe48c767bacfcf665b2adcf20aaf2/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Shellfish\" ],\n \"ingredientLines\" : [ + \"2 tablespoons unsalted butter, softened\", \"5 garlic cloves, 1 minced\", + \"1 tablespoon grated ginger, plus 12 slices ginger\", \"Salt and fresh black + pepper\", \"One 4-pound chicken\", \"1 onion, quartered\", \"2 serrano chiles, + seeded and thinly sliced\", \"1 lime, quartered\", \"1/2 cup chicken stock\", + \"1 tablespoon Asian fish sauce\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 tablespoons unsalted butter, softened\",\n \"weight\" : 28.4\n + \ }, {\n \"text\" : \"5 garlic cloves, 1 minced\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"1 tablespoon grated ginger, plus + 12 slices ginger\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"Salt and fresh black pepper\",\n \"weight\" : 13.235816880000002\n + \ }, {\n \"text\" : \"Salt and fresh black pepper\",\n \"weight\" + : 6.617908440000001\n }, {\n \"text\" : \"One 4-pound chicken\",\n + \ \"weight\" : 1814.36948\n }, {\n \"text\" : \"1 onion, + quartered\",\n \"weight\" : 125.0\n }, {\n \"text\" : \"2 + serrano chiles, seeded and thinly sliced\",\n \"weight\" : 12.2\n }, + {\n \"text\" : \"1 lime, quartered\",\n \"weight\" : 67.0\n + \ }, {\n \"text\" : \"1/2 cup chicken stock\",\n \"weight\" + : 120.0\n }, {\n \"text\" : \"1 tablespoon Asian fish sauce\",\n + \ \"weight\" : 18.0\n } ],\n \"calories\" : 3023.5011299444,\n + \ \"totalWeight\" : 2219.5061413836543,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3023.5011299444,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 210.931413522984,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 68.34188200532479,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 2.127710109008,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 83.74763211873162,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 41.168983984951204,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 34.71979244738,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.561730835319999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 9.762154614016001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 237.46473251731598,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 989.9884347999999,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5145.32772006945,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 265.16067219967704,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 320.54206024183657,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2978.0891590990927,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 13.227872011838057,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 16.989955191219654,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1942.7560275432,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 710.8830463028,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.27513994240001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9086780889552,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.6899257308719997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 86.93000716113319,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.9180594759603995,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 124.2093192188,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 124.2093192188,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.95937086384,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.8935424928,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.7491999869759995,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.17068481228,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 151.17505649722,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 324.50986695843693,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 341.7094100266239,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 11.573264149126667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.246923341279995,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 474.92946503463196,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 329.9961449333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 214.38865500289376,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 26.516067219967702,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.13551506045914,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 85.08826168854551,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 73.48817784354476,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 113.26636794146435,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 277.5365753633143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 78.98700514475556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 98.79189990400002,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 60.57853926368,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 99.40739593364704,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 434.650035805666,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 245.90297379801999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 31.0523298047,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 65.98951439733334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.7233856232,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 23.745999934879997,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 42.71335601535,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 210.931413522984,\n \"hasRDI\" : true,\n \"daily\" : 324.50986695843693,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 68.34188200532479,\n \"hasRDI\" : true,\n \"daily\" + : 341.7094100266239,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.127710109008,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.74763211873162,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.168983984951204,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 34.71979244738,\n \"hasRDI\" : true,\n \"daily\" : 11.573264149126667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.158061612060003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.561730835319999,\n \"hasRDI\" + : true,\n \"daily\" : 26.246923341279995,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 9.762154614016001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 237.46473251731598,\n \"hasRDI\" : true,\n \"daily\" : 474.92946503463196,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 989.9884347999999,\n \"hasRDI\" : true,\n \"daily\" + : 329.9961449333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5145.32772006945,\n \"hasRDI\" : true,\n \"daily\" + : 214.38865500289376,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 265.16067219967704,\n \"hasRDI\" : true,\n \"daily\" + : 26.516067219967702,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 320.54206024183657,\n \"hasRDI\" : true,\n \"daily\" + : 80.13551506045914,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2978.0891590990927,\n \"hasRDI\" : true,\n \"daily\" + : 85.08826168854551,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.227872011838057,\n \"hasRDI\" : true,\n \"daily\" + : 73.48817784354476,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.989955191219654,\n \"hasRDI\" : true,\n \"daily\" + : 113.26636794146435,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1942.7560275432,\n \"hasRDI\" : true,\n \"daily\" + : 277.5365753633143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 710.8830463028,\n \"hasRDI\" : true,\n + \ \"daily\" : 78.98700514475556,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.27513994240001,\n \"hasRDI\" : true,\n + \ \"daily\" : 98.79189990400002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9086780889552,\n \"hasRDI\" : true,\n + \ \"daily\" : 60.57853926368,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6899257308719997,\n \"hasRDI\" : true,\n + \ \"daily\" : 99.40739593364704,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 86.93000716113319,\n \"hasRDI\" : true,\n + \ \"daily\" : 434.650035805666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.9180594759603995,\n \"hasRDI\" : true,\n + \ \"daily\" : 245.90297379801999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 124.2093192188,\n \"hasRDI\" + : true,\n \"daily\" : 31.0523298047,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 124.2093192188,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3.95937086384,\n \"hasRDI\" : true,\n \"daily\" + : 65.98951439733334,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.8935424928,\n \"hasRDI\" : true,\n \"daily\" + : 0.7233856232,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.7491999869759995,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.745999934879997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 34.17068481228,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.71335601535,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_a56de84559ae6e117a1270a31b143ea7\",\n + \ \"label\" : \"Fricken' Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f7b/f7b5deae7b6d8222de0e01797d3358ab.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/1518-fricken-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/fricken-chicken-a56de84559ae6e117a1270a31b143ea7/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"5 boneless,skinless + chicken thighs,cut into 1-2 inch chunks\", \"2/3 cups flour\", \"1/2 teaspoon + salt\", \"1/2 teaspoon poultry seasoning\", \"1/4 teaspoon paprika\", \"2 + cups canola oil for frying\", \"1/2 stick butter\", \"1 cup hot sauce (i use + texas pete, but use your favorite\" ],\n \"ingredients\" : [ {\n \"text\" + : \"5 boneless,skinless chicken thighs,cut into 1-2 inch chunks\",\n \"weight\" + : 965.0\n }, {\n \"text\" : \"2/3 cups flour\",\n \"weight\" + : 83.33333333333333\n }, {\n \"text\" : \"1/2 teaspoon salt\",\n + \ \"weight\" : 3.0\n }, {\n \"text\" : \"1/2 teaspoon poultry + seasoning\",\n \"weight\" : 0.75\n }, {\n \"text\" : \"1/4 + teaspoon paprika\",\n \"weight\" : 0.575\n }, {\n \"text\" + : \"2 cups canola oil for frying\",\n \"weight\" : 436.0\n }, + {\n \"text\" : \"1/2 stick butter\",\n \"weight\" : 56.5\n }, + {\n \"text\" : \"1 cup hot sauce (i use texas pete, but use your favorite\",\n + \ \"weight\" : 225.6\n } ],\n \"calories\" : 3599.798883333333,\n + \ \"totalWeight\" : 1523.4970833333332,\n \"totalTime\" : 71.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3599.798883333333,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 279.1058791666667,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 54.01398760416667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.8024380625000003,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 147.8064977,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 65.59493119166666,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 68.37593416666665,\n \"unit\" + : \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 3.212225,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.1744149999999998,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 200.11137333333335,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1028.575,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 6887.833166666665,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 120.44475,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 255.39683333333338,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2781.130666666667,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 10.271985,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 16.177790833333336,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1916.714,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 487.21025000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 168.843975,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0371184999999998,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.1374403333333336,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 55.34359066666667,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.766914416666667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 76.81441666666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 76.81441666666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.98255,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.8475000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 37.02333074999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 180.81635375,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 179.98994416666665,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 429.39366025641027,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 270.0699380208333,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.791978055555553,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 12.8489,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 400.2227466666667,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 342.85833333333335,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 286.9930486111111,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.044475,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 63.849208333333344,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 79.4608761904762,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 57.066583333333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 107.85193888888891,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 273.8162857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.13447222222222,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 281.40662499999996,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 69.14123333333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.73178431372551,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 276.71795333333336,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 238.34572083333336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 19.203604166666665,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 99.70916666666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.21187500000000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 185.11665374999995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 226.02044218749998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 279.1058791666667,\n \"hasRDI\" : true,\n \"daily\" : 429.39366025641027,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 54.01398760416667,\n \"hasRDI\" : true,\n \"daily\" + : 270.0699380208333,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.8024380625000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 147.8064977,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.59493119166666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.37593416666665,\n \"hasRDI\" : true,\n \"daily\" : 22.791978055555553,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.16370916666665,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.212225,\n \"hasRDI\" + : true,\n \"daily\" : 12.8489,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.1744149999999998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 200.11137333333335,\n + \ \"hasRDI\" : true,\n \"daily\" : 400.2227466666667,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1028.575,\n \"hasRDI\" : true,\n \"daily\" : 342.85833333333335,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 6887.833166666665,\n \"hasRDI\" : true,\n \"daily\" : 286.9930486111111,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.44475,\n \"hasRDI\" : true,\n \"daily\" : 12.044475,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 255.39683333333338,\n \"hasRDI\" : true,\n \"daily\" : 63.849208333333344,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2781.130666666667,\n \"hasRDI\" : true,\n \"daily\" : 79.4608761904762,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.271985,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.066583333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.177790833333336,\n + \ \"hasRDI\" : true,\n \"daily\" : 107.85193888888891,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1916.714,\n + \ \"hasRDI\" : true,\n \"daily\" : 273.8162857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 487.21025000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.13447222222222,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 168.843975,\n + \ \"hasRDI\" : true,\n \"daily\" : 281.40662499999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0371184999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.14123333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1374403333333336,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.73178431372551,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 55.34359066666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 276.71795333333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.766914416666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 238.34572083333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 76.81441666666666,\n \"hasRDI\" : true,\n \"daily\" : 19.203604166666665,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 76.81441666666666,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.98255,\n + \ \"hasRDI\" : true,\n \"daily\" : 99.70916666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8475000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.21187500000000004,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.02333074999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 185.11665374999995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 180.81635375,\n + \ \"hasRDI\" : true,\n \"daily\" : 226.02044218749998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b065e1f8379ff06e3d3305c8b3583159\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/d30/d300b0711083364fc7be456a20c35f37.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/1973-chicken-piccata\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-b065e1f8379ff06e3d3305c8b3583159/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup flour\", \"4 chicken breasts, + cut in half and flattened\", \"Salt and pepper to taste\", \"4 tablespoons + vegetable oil\", \"1 shallot, minced\", \"1 garlic clove, minced\", \"1 cup + chicken broth\", \"1 lemon, cut in half\", \"3 tablespoons unsalted butter, + cut into 3 pieces\", \"2 tablespoons fresh parsley\", \"1/4 cup dry white + wine\" ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"4 chicken breasts, + cut in half and flattened\",\n \"weight\" : 696.0\n }, {\n \"text\" + : \"Salt and pepper to taste\",\n \"weight\" : 7.5693666666666655\n + \ }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 3.7846833333333327\n }, {\n \"text\" : \"4 tablespoons vegetable + oil\",\n \"weight\" : 56.0\n }, {\n \"text\" : \"1 shallot, + minced\",\n \"weight\" : 59.111111111111114\n }, {\n \"text\" + : \"1 garlic clove, minced\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"1 cup chicken broth\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"1 lemon, cut in half\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"3 tablespoons unsalted butter, cut into 3 pieces\",\n \"weight\" + : 42.599999999999994\n }, {\n \"text\" : \"2 tablespoons fresh + parsley\",\n \"weight\" : 7.6\n }, {\n \"text\" : \"1/4 + cup dry white wine\",\n \"weight\" : 36.75\n } ],\n \"calories\" + : 2417.7225551666666,\n \"totalWeight\" : 1270.865446046861,\n \"totalTime\" + : 241.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2417.7225551666666,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 158.85689178777776,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 45.007856680888885,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.556748,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 77.3736553653889,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 25.411461473,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 76.37626165833333,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.474380438888888,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 10.559976417777778,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 160.93360137611114,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 544.23,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2942.536338064666,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 177.6264746623578,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 230.0073383493575,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2268.7366247393047,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 8.458635935287976,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.861861827713528,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1419.903466333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 494.42186449999997,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 46.992888888888885,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6767376246666665,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8815791522222223,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 73.94038115272221,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.187589761833334,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 96.49867394444448,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 96.49867394444448,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.43882,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.423,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 15.394425151111113,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 135.15591550555556,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.88612775833333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 244.39521813504268,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 225.0392834044444,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.45875388611111,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 25.897521755555555,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 321.8672027522223,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 181.41,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 122.60568075269441,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 17.76264746623578,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 57.501834587339374,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 64.821046421123,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.992421862710984,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 45.74574551809019,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 202.84335233333329,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.935762722222215,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 78.32148148148147,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 45.11584164444444,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 51.85759718954249,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 369.7019057636111,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 209.3794880916667,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 24.12466848611112,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 40.647000000000006,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.85575,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 76.97212575555557,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 168.94489438194444,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 158.85689178777776,\n \"hasRDI\" + : true,\n \"daily\" : 244.39521813504268,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 45.007856680888885,\n \"hasRDI\" : true,\n \"daily\" : + 225.0392834044444,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.556748,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 77.3736553653889,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.411461473,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 76.37626165833333,\n \"hasRDI\" : true,\n \"daily\" : 25.45875388611111,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 69.90188121944445,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.474380438888888,\n \"hasRDI\" + : true,\n \"daily\" : 25.897521755555555,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 10.559976417777778,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 160.93360137611114,\n \"hasRDI\" : true,\n \"daily\" : 321.8672027522223,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 544.23,\n \"hasRDI\" : true,\n \"daily\" + : 181.41,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2942.536338064666,\n \"hasRDI\" : true,\n \"daily\" + : 122.60568075269441,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 177.6264746623578,\n \"hasRDI\" : true,\n \"daily\" + : 17.76264746623578,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 230.0073383493575,\n \"hasRDI\" : true,\n \"daily\" + : 57.501834587339374,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2268.7366247393047,\n \"hasRDI\" : true,\n \"daily\" + : 64.821046421123,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.458635935287976,\n \"hasRDI\" : true,\n \"daily\" + : 46.992421862710984,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.861861827713528,\n \"hasRDI\" : true,\n \"daily\" + : 45.74574551809019,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1419.903466333333,\n \"hasRDI\" : true,\n \"daily\" + : 202.84335233333329,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 494.42186449999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 54.935762722222215,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.992888888888885,\n \"hasRDI\" : true,\n + \ \"daily\" : 78.32148148148147,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6767376246666665,\n \"hasRDI\" : true,\n + \ \"daily\" : 45.11584164444444,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.8815791522222223,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.85759718954249,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.94038115272221,\n + \ \"hasRDI\" : true,\n \"daily\" : 369.7019057636111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.187589761833334,\n + \ \"hasRDI\" : true,\n \"daily\" : 209.3794880916667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 96.49867394444448,\n \"hasRDI\" : true,\n \"daily\" : 24.12466848611112,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 96.49867394444448,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.43882,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.647000000000006,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.423,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.85575,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.394425151111113,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.97212575555557,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 135.15591550555556,\n + \ \"hasRDI\" : true,\n \"daily\" : 168.94489438194444,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0a0fe753e69c6df33fcbf35778c2098b\",\n + \ \"label\" : \"Chicken Cacciatore (Hunter Style Chicken)\",\n \"image\" + : \"https://www.edamam.com/web-img/a59/a59d259f1d798c64e6b52c1041bb9607.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://simplyrecipes.com/recipes/chicken_cacciatore_hunter_style_chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-cacciatore-hunter-style-chicken-0a0fe753e69c6df33fcbf35778c2098b/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"One 3 1/2 pound chicken, cut into + pieces\", \"2 Tbsp extra virgin olive oil\", \"1 cup thinly sliced onions\", + \"2 garlic cloves, thinly sliced\", \"Salt and freshly ground pepper\", \"1/3 + cup white wine\", \"2 cups peeled and chopped, firm ripe tomatoes (or canned + plum tomatoes in their juice)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"One 3 1/2 pound chicken, cut into pieces\",\n \"weight\" : 1587.5732950000001\n + \ }, {\n \"text\" : \"2 Tbsp extra virgin olive oil\",\n \"weight\" + : 27.0\n }, {\n \"text\" : \"1 cup thinly sliced onions\",\n \"weight\" + : 115.0\n }, {\n \"text\" : \"2 garlic cloves, thinly sliced\",\n + \ \"weight\" : 6.0\n }, {\n \"text\" : \"Salt and freshly + ground pepper\",\n \"weight\" : 12.49543977\n }, {\n \"text\" + : \"Salt and freshly ground pepper\",\n \"weight\" : 6.247719885\n + \ }, {\n \"text\" : \"1/3 cup white wine\",\n \"weight\" + : 49.0\n }, {\n \"text\" : \"2 cups peeled and chopped, firm ripe + tomatoes (or canned plum tomatoes in their juice)\",\n \"weight\" : + 298.0\n } ],\n \"calories\" : 2724.15393420135,\n \"totalWeight\" + : 2099.3403065442644,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2724.15393420135,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 190.52488166261102,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 50.4808063906592,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.047163345382,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 87.21754070339017,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 38.05485209583231,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 29.586216866457505,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 7.237673130905,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 13.283785407264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 205.7487084476515,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4857.51149369477,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 220.7425115547735,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 277.37876203994267,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3057.502939338391,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.788915828709074,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.057470070150766,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1719.6796631002999,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 569.46231901495,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 68.4807974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.8320874418358,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.4083257045129998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 75.49003609749155,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.27160530696535,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 133.05510281645002,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 133.05510281645002,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.815125808604,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 66.974765060745,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 136.2076967100675,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 293.1152025578631,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 252.404031953296,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 9.862072288819169,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 28.95069252362,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 411.49741689530293,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 269.88746015000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 202.39631223728207,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.074251155477352,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.34469050998567,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 87.35722683823975,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 65.49397682616151,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 100.38313380100512,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 245.66852330004286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 63.27359100166112,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 114.13466241600001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.472496122386666,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.8426885007647,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 377.45018048745777,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 213.58026534826752,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 33.263775704112504,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 44.07562904302,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 83.71845632593126,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 190.52488166261102,\n \"hasRDI\" + : true,\n \"daily\" : 293.1152025578631,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.4808063906592,\n \"hasRDI\" : true,\n \"daily\" : 252.404031953296,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.047163345382,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 87.21754070339017,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 38.05485209583231,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 29.586216866457505,\n \"hasRDI\" : true,\n \"daily\" + : 9.862072288819169,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.348543735552504,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 7.237673130905,\n \"hasRDI\" + : true,\n \"daily\" : 28.95069252362,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 13.283785407264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 205.7487084476515,\n \"hasRDI\" : true,\n \"daily\" : 411.49741689530293,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" + : 269.88746015000004,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4857.51149369477,\n \"hasRDI\" : true,\n \"daily\" + : 202.39631223728207,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 220.7425115547735,\n \"hasRDI\" : true,\n \"daily\" + : 22.074251155477352,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 277.37876203994267,\n \"hasRDI\" : true,\n \"daily\" + : 69.34469050998567,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3057.502939338391,\n \"hasRDI\" : true,\n \"daily\" + : 87.35722683823975,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.788915828709074,\n \"hasRDI\" : true,\n \"daily\" + : 65.49397682616151,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.057470070150766,\n \"hasRDI\" : true,\n \"daily\" + : 100.38313380100512,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1719.6796631002999,\n \"hasRDI\" : true,\n \"daily\" + : 245.66852330004286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 569.46231901495,\n \"hasRDI\" : true,\n + \ \"daily\" : 63.27359100166112,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 68.4807974496,\n \"hasRDI\" : true,\n + \ \"daily\" : 114.13466241600001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8320874418358,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.472496122386666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.4083257045129998,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.8426885007647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 75.49003609749155,\n + \ \"hasRDI\" : true,\n \"daily\" : 377.45018048745777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.27160530696535,\n + \ \"hasRDI\" : true,\n \"daily\" : 213.58026534826752,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.05510281645002,\n \"hasRDI\" : true,\n \"daily\" : 33.263775704112504,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.05510281645002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.815125808604,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.07562904302,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.974765060745,\n + \ \"hasRDI\" : true,\n \"daily\" : 83.71845632593126,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e1314ccff96e0b31cb723538b2e72168\",\n + \ \"label\" : \"Circassian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/6fb/6fb574024daf1ea1f3b6bb1d63ca1202.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://www.simplyrecipes.com/recipes/circassian_chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/circassian-chicken-e1314ccff96e0b31cb723538b2e72168/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"1 pound skinless chicken breasts\", \"4 tablespoons olive or walnut + oil\", \"4 teaspoons paprika\", \"1 ½ cups chopped walnuts\", \"3 chopped + garlic cloves\", \"2 tablespoons chopped green onions\", \"1 teaspoon cayenne, + or to taste\", \"2 tablespoons chopped parsley\", \"2 slices of bread, crusts + removed\", \"1 quart chicken stock\", \"Salt and black pepper\", \"The juice + of a lemon\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound + skinless chicken breasts\",\n \"weight\" : 453.59237\n }, {\n + \ \"text\" : \"4 tablespoons olive or walnut oil\",\n \"weight\" + : 54.4\n }, {\n \"text\" : \"4 teaspoons paprika\",\n \"weight\" + : 9.2\n }, {\n \"text\" : \"1 ½ cups chopped walnuts\",\n \"weight\" + : 175.5\n }, {\n \"text\" : \"3 chopped garlic cloves\",\n \"weight\" + : 9.0\n }, {\n \"text\" : \"2 tablespoons chopped green onions\",\n + \ \"weight\" : 12.0\n }, {\n \"text\" : \"1 teaspoon cayenne, + or to taste\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"2 + tablespoons chopped parsley\",\n \"weight\" : 7.6\n }, {\n \"text\" + : \"2 slices of bread, crusts removed\",\n \"weight\" : 58.0\n }, + {\n \"text\" : \"1 quart chicken stock\",\n \"weight\" : 960.0\n + \ }, {\n \"text\" : \"Salt and black pepper\",\n \"weight\" + : 10.794554219999998\n }, {\n \"text\" : \"Salt and black pepper\",\n + \ \"weight\" : 5.397277109999999\n }, {\n \"text\" : \"The + juice of a lemon\",\n \"weight\" : 58.0\n } ],\n \"calories\" + : 2755.4580095461006,\n \"totalWeight\" : 1810.4355074811215,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2755.4580095461006,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 196.101401327786,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 22.162707140471195,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.0468314659,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 37.423482307142905,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 123.0743524743578,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 105.36430871184498,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.520211108829997,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 26.232492573503997,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 162.93009034172903,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 359.92243010000004,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 4196.304584561362,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 400.1765625863692,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 510.2866660618112,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3909.1849974215893,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.604318715605704,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.32207157398012,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1993.5894459337999,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 347.19373071970006,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 51.6875,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.6979608870787999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.206813593698,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 65.41285939736731,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.699537197090103,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 351.4488504087,\n \"unit\" : + \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 331.7288504087,\n \"unit\" : + \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 11.6,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 0.952543977,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 4.535923700000001,\n + \ \"unit\" : \"IU\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 7.8718889539440005,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 185.86902736907,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 137.77290047730503,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 301.6944635812092,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 110.81353570235596,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 35.121436237281664,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 86.08084443531999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 325.86018068345805,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 119.97414336666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 174.84602435672343,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 40.01765625863692,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 127.5716665154528,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 111.69099992633112,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.13510397558724,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 75.48047715986746,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 284.79849227625715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.57708119107778,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 86.14583333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 113.19739247192,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 129.81256433517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 327.06429698683655,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 284.97685985450516,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 87.862212602175,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 15.87573295,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1339809250000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 39.35944476972,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 232.33628421133753,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 196.101401327786,\n \"hasRDI\" : true,\n \"daily\" + : 301.6944635812092,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 22.162707140471195,\n \"hasRDI\" + : true,\n \"daily\" : 110.81353570235596,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.0468314659,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.423482307142905,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 123.0743524743578,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 105.36430871184498,\n \"hasRDI\" : true,\n \"daily\" : 35.121436237281664,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 83.84409760301499,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 21.520211108829997,\n \"hasRDI\" + : true,\n \"daily\" : 86.08084443531999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.232492573503997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 162.93009034172903,\n \"hasRDI\" : true,\n \"daily\" : 325.86018068345805,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 359.92243010000004,\n \"hasRDI\" : true,\n \"daily\" + : 119.97414336666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4196.304584561362,\n \"hasRDI\" : true,\n \"daily\" + : 174.84602435672343,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 400.1765625863692,\n \"hasRDI\" : true,\n \"daily\" + : 40.01765625863692,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 510.2866660618112,\n \"hasRDI\" : true,\n \"daily\" + : 127.5716665154528,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3909.1849974215893,\n \"hasRDI\" : true,\n \"daily\" + : 111.69099992633112,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.604318715605704,\n \"hasRDI\" : true,\n \"daily\" + : 81.13510397558724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.32207157398012,\n \"hasRDI\" : true,\n \"daily\" + : 75.48047715986746,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1993.5894459337999,\n \"hasRDI\" : true,\n \"daily\" + : 284.79849227625715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 347.19373071970006,\n \"hasRDI\" : true,\n + \ \"daily\" : 38.57708119107778,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 51.6875,\n \"hasRDI\" : true,\n \"daily\" + : 86.14583333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6979608870787999,\n \"hasRDI\" : true,\n + \ \"daily\" : 113.19739247192,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.206813593698,\n \"hasRDI\" + : true,\n \"daily\" : 129.81256433517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.41285939736731,\n + \ \"hasRDI\" : true,\n \"daily\" : 327.06429698683655,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.699537197090103,\n + \ \"hasRDI\" : true,\n \"daily\" : 284.97685985450516,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 351.4488504087,\n \"hasRDI\" : true,\n \"daily\" : 87.862212602175,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.7288504087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 11.6,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.952543977,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.87573295,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.535923700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1339809250000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.8718889539440005,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.35944476972,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 185.86902736907,\n + \ \"hasRDI\" : true,\n \"daily\" : 232.33628421133753,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_bb158d7286178b1c63d42aded1ec1b2c\",\n + \ \"label\" : \"Chicken with Rustic Sauce\",\n \"image\" : \"https://www.edamam.com/web-img/4cb/4cb254198c92acc77e03c00889162faa.png\",\n + \ \"source\" : \"Ruhlman\",\n \"url\" : \"http://ruhlman.com/2012/11/le-creuset-giveaway-roasting-technique-video-event/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-with-rustic-sauce-bb158d7286178b1c63d42aded1ec1b2c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"One 3- or 4-pound chicken\", \"Kosher + salt\", \"1 lemon and/or 1 medium onion, quartered (optional)\", \"1/2 spanish + onion, thinly sliced\", \"1 carrot, thinly sliced\", \"1/2 cup white wine\", + \"Squeeze of lemon (optional)\", \"2 teaspoons dijon mustard (optional)\" + ],\n \"ingredients\" : [ {\n \"text\" : \"One 3- or 4-pound chicken\",\n + \ \"weight\" : 920.0\n }, {\n \"text\" : \"Kosher salt\",\n + \ \"weight\" : 6.702\n }, {\n \"text\" : \"1/2 spanish onion, + thinly sliced\",\n \"weight\" : 62.5\n }, {\n \"text\" + : \"1 carrot, thinly sliced\",\n \"weight\" : 61.0\n }, {\n \"text\" + : \"1/2 cup white wine\",\n \"weight\" : 73.5\n } ],\n \"calories\" + : 2088.2799999999997,\n \"totalWeight\" : 1121.9158784250994,\n \"totalTime\" + : 290.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2088.28,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 138.76090000000002,\n \"unit\" : \"g\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 39.70082,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.8924000000000001,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 57.42466500000001,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 29.797995000000007,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.5923,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 2.7705,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 6.247,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 172.42625,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : + {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2597.56116,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 143.49981082202387,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 204.96915878425102,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2077.8282702740084,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.808922398802828,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.397765878425101,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1405.105,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 886.55,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 22.944000000000003,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.624685,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.16728,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 63.320710000000005,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.4159300000000004,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 79.4,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 79.4,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 2.8520000000000003,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.8400000000000003,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 3.1751000000000005,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 22.396,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 104.41400000000002,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 213.4783076923077,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 198.5041,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.530766666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.082,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 344.8525,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 108.23171500000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 14.349981082202389,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.242289696062755,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 59.36652200782881,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 48.93845777112682,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 82.65177252283401,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 200.7292857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 98.50555555555556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 38.24,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 41.64566666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 68.66352941176471,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 316.60355000000004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 170.7965,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 19.85,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 47.53333333333334,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.4600000000000001,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 15.875500000000002,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 27.994999999999997,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 138.76090000000002,\n \"hasRDI\" : true,\n \"daily\" : 213.4783076923077,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.70082,\n \"hasRDI\" : true,\n \"daily\" + : 198.5041,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.8924000000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 57.42466500000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.797995000000007,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.5923,\n \"hasRDI\" : true,\n \"daily\" : 4.530766666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.8218,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 2.7705,\n \"hasRDI\" : true,\n \"daily\" + : 11.082,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 6.247,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 172.42625,\n \"hasRDI\" : + true,\n \"daily\" : 344.8525,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 690.0000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 230.00000000000006,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 2597.56116,\n \"hasRDI\" + : true,\n \"daily\" : 108.23171500000001,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 143.49981082202387,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.349981082202389,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 204.96915878425102,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.242289696062755,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2077.8282702740084,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.36652200782881,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.808922398802828,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.93845777112682,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.397765878425101,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.65177252283401,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1405.105,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.7292857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 886.55,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.50555555555556,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.944000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.24,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.624685,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.64566666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.16728,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.66352941176471,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.320710000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 316.60355000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4159300000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 170.7965,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 79.4,\n \"hasRDI\" : true,\n \"daily\" : 19.85,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.4,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8520000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.53333333333334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.1751000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 15.875500000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.396,\n \"hasRDI\" : true,\n \"daily\" + : 27.994999999999997,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_090bf7a638ee7891fc85d1ca3e53ef24\",\n + \ \"label\" : \"Honey Glazed Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8d6/8d6eb1d64139f82085d3cfb4a6f6133d.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3109/honey-glazed-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/honey-glazed-chicken-090bf7a638ee7891fc85d1ca3e53ef24/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"1.0 tbsp dark + soy sauce\", \"1.0 tbsp honey\", \"Half a lemon\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 chicken breasts\",\n \"weight\" : 348.0\n + \ }, {\n \"text\" : \"1.0 tbsp dark soy sauce\",\n \"weight\" + : 16.0\n }, {\n \"text\" : \"1.0 tbsp honey\",\n \"weight\" + : 21.0\n }, {\n \"text\" : \"Half a lemon\",\n \"weight\" + : 28.0\n } ],\n \"calories\" : 679.0,\n \"totalWeight\" : 413.0,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 679.0,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 32.3652,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 9.2794,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 13.31076,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 6.8878,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 20.7024,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.9540000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 18.0092,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 17.2452,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 74.23140000000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1099.5199999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 52.1,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 101.5,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 884.76,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.0634,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 2.9862,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 637.4,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 83.8,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 14.945000000000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.23571999999999999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.33577999999999997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 34.884609999999995,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.8955199999999999,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 19.660000000000004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 19.660000000000004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.9816000000000001,\n + \ \"unit\" : \"mg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 33.95,\n \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 49.79261538461538,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.397000000000006,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.900800000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.8160000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 148.46280000000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 45.81333333333332,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 5.21,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 25.375,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 25.27885714285714,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 17.018888888888892,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 19.908,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 91.05714285714286,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 9.311111111111112,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 24.90833333333334,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 15.714666666666666,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 19.75176470588235,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 174.42304999999996,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 94.776,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 4.915000000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 19.720000000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34800000000000003,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.908,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 32.3652,\n \"hasRDI\" : true,\n + \ \"daily\" : 49.79261538461538,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 9.2794,\n \"hasRDI\" : true,\n \"daily\" : 46.397000000000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.3654,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 13.31076,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.8878,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 20.7024,\n \"hasRDI\" : true,\n \"daily\" : 6.900800000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.7484,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.9540000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 3.8160000000000003,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 18.0092,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 17.2452,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 74.23140000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 148.46280000000004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 222.72,\n \"hasRDI\" : true,\n \"daily\" : 74.24,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1099.5199999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.81333333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 52.1,\n \"hasRDI\" + : true,\n \"daily\" : 5.21,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 101.5,\n \"hasRDI\" : true,\n \"daily\" + : 25.375,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 884.76,\n \"hasRDI\" : true,\n \"daily\" : 25.27885714285714,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0634,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.018888888888892,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.9862,\n \"hasRDI\" + : true,\n \"daily\" : 19.908,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 637.4,\n \"hasRDI\" : true,\n \"daily\" + : 91.05714285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 83.8,\n \"hasRDI\" : true,\n \"daily\" + : 9.311111111111112,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 14.945000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.90833333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.23571999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 15.714666666666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.33577999999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.75176470588235,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.884609999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 174.42304999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8955199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 19.660000000000004,\n \"hasRDI\" : true,\n \"daily\" : 4.915000000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 19.660000000000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1832,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.720000000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3920000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34800000000000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9816000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.908,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" : + \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6c718af3cc9b7f7d9e6a7b4b5f4fe121\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/04e/04e6a0ad3ff061a3cdfe72829eee2fb3.jpg\",\n + \ \"source\" : \"Chowhound\",\n \"url\" : \"https://www.chowhound.com/recipes/chicken-marsala-31744\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-6c718af3cc9b7f7d9e6a7b4b5f4fe121/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2/3 cup all-purpose flour\", \"Kosher + salt\", \"Freshly ground black pepper\", \"4 skinless, boneless, chicken breasts + (about 1 1/2 pounds), tenders removed\", \"1/4 cup olive oil\", \"4 ounces + thinly sliced prosciutto, cut crosswise into thin strips\", \"8 ounces cremini + mushrooms, stemmed and halved\", \"1/2 cup Marsala wine\", \"1/2 cup chicken + broth\", \"2 tablespoons unsalted butter (1/4 stick)\", \"1/4 cup flat-leaf + parsley leaves\" ],\n \"ingredients\" : [ {\n \"text\" : \"2/3 + cup all-purpose flour\",\n \"weight\" : 83.33333333333333\n }, + {\n \"text\" : \"Kosher salt\",\n \"weight\" : 8.634996995\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 4.3174984975\n }, {\n \"text\" : \"4 skinless, boneless, chicken + breasts (about 1 1/2 pounds), tenders removed\",\n \"weight\" : 680.388555\n + \ }, {\n \"text\" : \"1/4 cup olive oil\",\n \"weight\" + : 54.0\n }, {\n \"text\" : \"4 ounces thinly sliced prosciutto, + cut crosswise into thin strips\",\n \"weight\" : 113.3980925\n }, + {\n \"text\" : \"8 ounces cremini mushrooms, stemmed and halved\",\n + \ \"weight\" : 226.796185\n }, {\n \"text\" : \"1/2 cup + Marsala wine\",\n \"weight\" : 118.0\n }, {\n \"text\" + : \"1/2 cup chicken broth\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"2 tablespoons unsalted butter (1/4 stick)\",\n \"weight\" : 28.25\n + \ }, {\n \"text\" : \"1/4 cup flat-leaf parsley leaves\",\n \"weight\" + : 15.0\n } ],\n \"calories\" : 2347.858847317058,\n \"totalWeight\" + : 1443.4836643308333,\n \"totalTime\" : 30.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2347.858847317058,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 139.43976266868518,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 40.224933133551865,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.4975613862000001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 71.31458009282154,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 19.06723123902172,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 84.85718718831791,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.1981042298675,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 7.126176372384,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 163.53253174122364,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 492.07510491,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3605.219862061167,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 184.72383373392498,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 236.40014653905834,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3271.6472590484423,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.406349583123916,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.177767751703582,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1748.16387233605,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 389.38032715432496,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.189999999999998,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.9223814569889668,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.421272071712167,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 74.22439743127143,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.8110933524943915,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 358.20285937957505,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.86952604624167,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 128.33333333333331,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.1233812686,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.8483723935,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.599302207340667,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 288.0432450404075,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 117.3929423658529,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.5227117979772,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 201.1246656677593,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 28.28572906277264,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 20.79241691947,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 327.0650634824473,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 164.02503497,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.21749425254865,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.4723833733925,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 59.100036634764585,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.47563597281264,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 68.92416435068841,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 74.51845167802388,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 249.73769604800714,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 43.264480794925,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 33.65,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 128.15876379926445,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 142.42776892424513,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 371.12198715635714,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 190.55466762471957,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.55071484489376,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 52.05635447666668,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.962093098375,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 52.99651103670334,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 360.0540563005094,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 139.43976266868518,\n \"hasRDI\" + : true,\n \"daily\" : 214.5227117979772,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 40.224933133551865,\n \"hasRDI\" : true,\n \"daily\" : + 201.1246656677593,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.4975613862000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 71.31458009282154,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 19.06723123902172,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 84.85718718831791,\n \"hasRDI\" : true,\n \"daily\" : 28.28572906277264,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 79.65908295845041,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.1981042298675,\n \"hasRDI\" + : true,\n \"daily\" : 20.79241691947,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.126176372384,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 163.53253174122364,\n \"hasRDI\" : true,\n \"daily\" : 327.0650634824473,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 492.07510491,\n \"hasRDI\" : true,\n \"daily\" + : 164.02503497,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3605.219862061167,\n \"hasRDI\" : true,\n \"daily\" + : 150.21749425254865,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.72383373392498,\n \"hasRDI\" : true,\n \"daily\" + : 18.4723833733925,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 236.40014653905834,\n \"hasRDI\" : true,\n \"daily\" + : 59.100036634764585,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3271.6472590484423,\n \"hasRDI\" : true,\n \"daily\" + : 93.47563597281264,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 12.406349583123916,\n \"hasRDI\" : true,\n \"daily\" + : 68.92416435068841,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.177767751703582,\n \"hasRDI\" : true,\n \"daily\" + : 74.51845167802388,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1748.16387233605,\n \"hasRDI\" : true,\n \"daily\" + : 249.73769604800714,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 389.38032715432496,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.264480794925,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 20.189999999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 33.65,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9223814569889668,\n \"hasRDI\" : true,\n + \ \"daily\" : 128.15876379926445,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.421272071712167,\n + \ \"hasRDI\" : true,\n \"daily\" : 142.42776892424513,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.22439743127143,\n + \ \"hasRDI\" : true,\n \"daily\" : 371.12198715635714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8110933524943915,\n + \ \"hasRDI\" : true,\n \"daily\" : 190.55466762471957,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 358.20285937957505,\n \"hasRDI\" : true,\n \"daily\" : 89.55071484489376,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 139.86952604624167,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 128.33333333333331,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.1233812686,\n \"hasRDI\" : true,\n \"daily\" : 52.05635447666668,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.8483723935,\n \"hasRDI\" : true,\n \"daily\" : 0.962093098375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 10.599302207340667,\n \"hasRDI\" : true,\n \"daily\" : 52.99651103670334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 288.0432450404075,\n \"hasRDI\" : true,\n \"daily\" : 360.0540563005094,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_24443da17a9c7061763c278093eb044e\",\n + \ \"label\" : \"Tangy Chicken Breasts\",\n \"image\" : \"https://www.edamam.com/web-img/e64/e64377bf29d1798e517500a649807c11.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3180/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tangy-chicken-breasts-24443da17a9c7061763c278093eb044e/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"3.0 tbsp barbecue + sauce\", \"50.0g cheddar , grated\", \"2 rashers streaky bacon\", \"2 skinless + chicken breasts\" ],\n \"ingredients\" : [ {\n \"text\" : \"3.0 + tbsp barbecue sauce\",\n \"weight\" : 51.0\n }, {\n \"text\" + : \"50.0g cheddar , grated\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"2 rashers streaky bacon\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"2 skinless chicken breasts\",\n \"weight\" : 544.0\n } ],\n + \ \"calories\" : 1185.38,\n \"totalWeight\" : 703.0,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1185.38,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 54.50429999999999,\n \"unit\" : \"g\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 20.48135,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.70472,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 18.118599999999997,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 6.81789,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.200100000000003,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.459,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.6724,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 142.1578,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 486.4,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1474.53,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 384.42999999999995,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 179.41000000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2088.12,\n \"unit\" : + \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 2.657,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 6.185300000000001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1488.94,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 181.57000000000002,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 0.306,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.69616,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 1.2544,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 54.88073000000001,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.628870000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 62.980000000000004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 62.980000000000004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.8724,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.532,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.093800000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 3.456,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 59.269000000000005,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 83.85276923076923,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 102.40674999999999,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.400033333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.8359999999999999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 284.3156,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 162.13333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 61.43875,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 38.44299999999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.852500000000006,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 59.66057142857143,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.761111111111111,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 41.23533333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 212.7057142857143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 20.174444444444447,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.51,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 46.410666666666664,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 73.78823529411764,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 274.40365,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 231.44350000000006,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 15.745,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 31.206666666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.133,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 20.469,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 4.32,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 54.50429999999999,\n \"hasRDI\" + : true,\n \"daily\" : 83.85276923076923,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 20.48135,\n \"hasRDI\" : true,\n \"daily\" : 102.40674999999999,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.70472,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 18.118599999999997,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 6.81789,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.200100000000003,\n \"hasRDI\" : true,\n \"daily\" : 7.400033333333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.741100000000003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.459,\n \"hasRDI\" : + true,\n \"daily\" : 1.8359999999999999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.6724,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 142.1578,\n \"hasRDI\" : true,\n \"daily\" : 284.3156,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 486.4,\n \"hasRDI\" : true,\n \"daily\" : 162.13333333333333,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1474.53,\n \"hasRDI\" : true,\n \"daily\" : 61.43875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 384.42999999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.44299999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 179.41000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.852500000000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2088.12,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.66057142857143,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.657,\n \"hasRDI\" + : true,\n \"daily\" : 14.761111111111111,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.185300000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.23533333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1488.94,\n \"hasRDI\" : true,\n \"daily\" + : 212.7057142857143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 181.57000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.174444444444447,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.306,\n \"hasRDI\" : true,\n \"daily\" + : 0.51,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.69616,\n \"hasRDI\" : true,\n \"daily\" : 46.410666666666664,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2544,\n \"hasRDI\" : true,\n \"daily\" : 73.78823529411764,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 54.88073000000001,\n \"hasRDI\" : true,\n \"daily\" : 274.40365,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4.628870000000001,\n \"hasRDI\" : true,\n \"daily\" : 231.44350000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 62.980000000000004,\n \"hasRDI\" : true,\n \"daily\" + : 15.745,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 62.980000000000004,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.8724,\n \"hasRDI\" : true,\n \"daily\" + : 31.206666666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.532,\n \"hasRDI\" : true,\n \"daily\" + : 0.133,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4.093800000000001,\n \"hasRDI\" : true,\n \"daily\" : 20.469,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.456,\n \"hasRDI\" : true,\n \"daily\" : 4.32,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_489eab58ba890b3da95c37ba3cd148d4\",\n + \ \"label\" : \"Chicken Roulade\",\n \"image\" : \"https://www.edamam.com/web-img/d0d/d0d8952a22d112f8e55a832d13f1d527.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipes/2012/08/chicken-roulade\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-roulade-489eab58ba890b3da95c37ba3cd148d4/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"2 tablespoons + extra-virgin olive oil plus more for brushing\", \"4 6-8-ounce skinless, boneless + chicken breasts, pounded to 1/8-inch thickness\", \"Kosher salt and freshly + ground black pepper\", \"4 ounces feta, crumbled\", \"2 tablespoons minced + fresh oregano\", \"4 garlic cloves, minced\", \"1/2 teaspoon finely grated + lemon zest\", \"1/2 cup dry white wine\", \"1/2 cup low-salt chicken broth\", + \"2 tablespoons fresh lemon juice\", \"Lemon wedges\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 tablespoons extra-virgin olive oil plus more + for brushing\",\n \"weight\" : 27.0\n }, {\n \"text\" : + \"4 6-8-ounce skinless, boneless chicken breasts, pounded to 1/8-inch thickness\",\n + \ \"weight\" : 793.7866475000001\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 7.126108440000001\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 3.5630542200000006\n }, {\n \"text\" : \"4 + ounces feta, crumbled\",\n \"weight\" : 113.3980925\n }, {\n \"text\" + : \"2 tablespoons minced fresh oregano\",\n \"weight\" : 12.0\n }, + {\n \"text\" : \"4 garlic cloves, minced\",\n \"weight\" : 12.0\n + \ }, {\n \"text\" : \"1/2 teaspoon finely grated lemon zest\",\n + \ \"weight\" : 1.0\n }, {\n \"text\" : \"1/2 cup dry white + wine\",\n \"weight\" : 73.5\n }, {\n \"text\" : \"1/2 cup + low-salt chicken broth\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"2 tablespoons fresh lemon juice\",\n \"weight\" : 28.0\n }, + {\n \"text\" : \"Lemon wedges\",\n \"weight\" : 7.0\n } + ],\n \"calories\" : 1777.0546572522005,\n \"totalWeight\" : 1194.5602621778248,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1777.0546572522005,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 111.372281566572,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 38.043936478592414,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6667807839000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.64491473456081,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 16.3518866405906,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 25.249555156940005,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.6394527176599984,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 7.055485530258,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 153.37233308070807,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 507.34306584500007,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2770.2229205027256,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 875.370143509478,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 232.76891447077827,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1910.064304970426,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.08725826347282,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.082712421175826,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1581.5622107125998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 305.41667658439997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 19.856,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.6375846313476001,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6332533185960003,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 66.48386563384963,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.1992617853802,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 98.32928153739999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 98.32928153739999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.1955274444500015,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.9937096420000007,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.086051488988,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 99.22988542313999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 88.85273286261003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 171.34197164088,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 190.21968239296206,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.416518385646668,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.55781087063999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 306.74466616141615,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 169.1143552816667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 115.4259550209469,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 87.5370143509478,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.19222861769456,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 54.57326585629789,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 61.59587924151567,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 60.55141614117217,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 225.93745867322855,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 33.93518628715555,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 33.093333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 42.50564208984001,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 96.07372462329414,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 332.41932816924816,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 209.96308926901,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 24.582320384349995,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 69.92545740750002,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7484274105000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 40.43025744494,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 124.03735677892499,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 111.372281566572,\n \"hasRDI\" : true,\n \"daily\" + : 171.34197164088,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 38.043936478592414,\n \"hasRDI\" + : true,\n \"daily\" : 190.21968239296206,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6667807839000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 49.64491473456081,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.3518866405906,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 25.249555156940005,\n \"hasRDI\" : true,\n \"daily\" : 8.416518385646668,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.610102439280006,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.6394527176599984,\n \"hasRDI\" + : true,\n \"daily\" : 26.55781087063999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.055485530258,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 153.37233308070807,\n \"hasRDI\" : true,\n \"daily\" : 306.74466616141615,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 507.34306584500007,\n \"hasRDI\" : true,\n \"daily\" + : 169.1143552816667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2770.2229205027256,\n \"hasRDI\" : true,\n \"daily\" + : 115.4259550209469,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 875.370143509478,\n \"hasRDI\" : true,\n \"daily\" + : 87.5370143509478,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 232.76891447077827,\n \"hasRDI\" : true,\n \"daily\" + : 58.19222861769456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1910.064304970426,\n \"hasRDI\" : true,\n \"daily\" + : 54.57326585629789,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.08725826347282,\n \"hasRDI\" : true,\n \"daily\" + : 61.59587924151567,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.082712421175826,\n \"hasRDI\" : true,\n \"daily\" + : 60.55141614117217,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1581.5622107125998,\n \"hasRDI\" : true,\n \"daily\" + : 225.93745867322855,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 305.41667658439997,\n \"hasRDI\" : true,\n + \ \"daily\" : 33.93518628715555,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.856,\n \"hasRDI\" : true,\n \"daily\" + : 33.093333333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6375846313476001,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.50564208984001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.6332533185960003,\n + \ \"hasRDI\" : true,\n \"daily\" : 96.07372462329414,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.48386563384963,\n + \ \"hasRDI\" : true,\n \"daily\" : 332.41932816924816,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1992617853802,\n + \ \"hasRDI\" : true,\n \"daily\" : 209.96308926901,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.32928153739999,\n \"hasRDI\" : true,\n \"daily\" : 24.582320384349995,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.32928153739999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1955274444500015,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.92545740750002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9937096420000007,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7484274105000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.086051488988,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.43025744494,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 99.22988542313999,\n + \ \"hasRDI\" : true,\n \"daily\" : 124.03735677892499,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_72a742681559bac8ad962ef3dd1fc85c\",\n + \ \"label\" : \"Chicken Galliano\",\n \"image\" : \"https://www.edamam.com/web-img/4c1/4c1e8e1a9a7a93bb66609491f02303cd.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Galliano\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-galliano-72a742681559bac8ad962ef3dd1fc85c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"6 boneless, skinless chicken breast halves, pounded ⅛\\\" thick\", \"Kosher + salt and freshly ground black pepper, to taste\", \"12 tbsp. herbed goat cheese, + softened\", \"6 thin slices prosciutto\", \"6 tbsp. unsalted butter, chilled\", + \"10 oz. cremini mushrooms, sliced\", \"Flour, for dredging\", \"2 tbsp. canola + oil\", \"1½ cups chicken broth\", \"¼ cup Galliano liqueur\", \"1 tbsp. finely + chopped parsley\", \"4 cups cooked rice, for serving\" ],\n \"ingredients\" + : [ {\n \"text\" : \"6 boneless, skinless chicken breast halves, pounded + ⅛\\\" thick\",\n \"weight\" : 522.0\n }, {\n \"text\" : + \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 9.1925713875\n }, {\n \"text\" : \"Kosher salt and freshly ground + black pepper, to taste\",\n \"weight\" : 4.59628569375\n }, {\n + \ \"text\" : \"12 tbsp. herbed goat cheese, softened\",\n \"weight\" + : 135.0\n }, {\n \"text\" : \"6 thin slices prosciutto\",\n \"weight\" + : 45.0\n }, {\n \"text\" : \"6 tbsp. unsalted butter, chilled\",\n + \ \"weight\" : 85.19999999999999\n }, {\n \"text\" : \"10 + oz. cremini mushrooms, sliced\",\n \"weight\" : 283.49523125\n }, + {\n \"text\" : \"Flour, for dredging\",\n \"weight\" : 13.788857081249997\n + \ }, {\n \"text\" : \"2 tbsp. canola oil\",\n \"weight\" + : 28.0\n }, {\n \"text\" : \"1½ cups chicken broth\",\n \"weight\" + : 360.0\n }, {\n \"text\" : \"¼ cup Galliano liqueur\",\n \"weight\" + : 69.6\n }, {\n \"text\" : \"1 tbsp. finely chopped parsley\",\n + \ \"weight\" : 3.8\n } ],\n \"calories\" : 2417.8750677420626,\n + \ \"totalWeight\" : 1553.0301401430459,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2417.8750677420626,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 148.1114049442625,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 71.05328035770795,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.9399959999999994,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.606006761562504,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 14.865004908094186,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 71.35935648360498,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 3.3615308092125,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 37.37098412005937,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 173.92998380132377,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.64,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3605.611100187657,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 330.85895967883107,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 235.53526556786798,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3794.561331236319,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.796324121903302,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.970535109192422,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2086.936374543875,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1028.9469971373123,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.774,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.26747308673425,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.2957994902062504,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 69.32496704649517,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.316783042859562,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 167.00227922156253,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 167.00227922156253,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.17703523125,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.5064952312499997,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.378564208588749,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 100.0074862519125,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.89375338710313,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 227.86369991425,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 355.2664017885397,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 23.786452161201662,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 13.44612323685,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 347.85996760264754,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.23379584115239,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.08589596788311,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.883816391966995,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 108.4160380353234,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 43.31291178835168,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 66.47023406128281,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 298.13376779198217,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 114.32744412636804,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 9.623333333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 84.49820578228334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 193.87055824742652,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 346.6248352324759,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 265.8391521429781,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 41.75056980539063,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 36.283920520833334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6266238078124999,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.89282104294374,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 125.0093578148906,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 148.1114049442625,\n \"hasRDI\" : true,\n \"daily\" : 227.86369991425,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 71.05328035770795,\n \"hasRDI\" : true,\n \"daily\" + : 355.2664017885397,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.9399959999999994,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 49.606006761562504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.865004908094186,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 71.35935648360498,\n \"hasRDI\" : true,\n \"daily\" : 23.786452161201662,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 67.99782567439249,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.3615308092125,\n \"hasRDI\" + : true,\n \"daily\" : 13.44612323685,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 37.37098412005937,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 173.92998380132377,\n \"hasRDI\" : true,\n \"daily\" : 347.85996760264754,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.64,\n \"hasRDI\" : true,\n \"daily\" + : 222.88,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3605.611100187657,\n \"hasRDI\" : true,\n \"daily\" + : 150.23379584115239,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 330.85895967883107,\n \"hasRDI\" : true,\n \"daily\" + : 33.08589596788311,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 235.53526556786798,\n \"hasRDI\" : true,\n \"daily\" + : 58.883816391966995,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3794.561331236319,\n \"hasRDI\" : true,\n \"daily\" + : 108.4160380353234,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.796324121903302,\n \"hasRDI\" : true,\n \"daily\" + : 43.31291178835168,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.970535109192422,\n \"hasRDI\" : true,\n \"daily\" + : 66.47023406128281,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2086.936374543875,\n \"hasRDI\" : true,\n \"daily\" + : 298.13376779198217,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1028.9469971373123,\n \"hasRDI\" : true,\n + \ \"daily\" : 114.32744412636804,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.774,\n \"hasRDI\" : true,\n \"daily\" + : 9.623333333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.26747308673425,\n \"hasRDI\" : true,\n + \ \"daily\" : 84.49820578228334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.2957994902062504,\n + \ \"hasRDI\" : true,\n \"daily\" : 193.87055824742652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 69.32496704649517,\n + \ \"hasRDI\" : true,\n \"daily\" : 346.6248352324759,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.316783042859562,\n + \ \"hasRDI\" : true,\n \"daily\" : 265.8391521429781,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 167.00227922156253,\n \"hasRDI\" : true,\n \"daily\" : 41.75056980539063,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 167.00227922156253,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.17703523125,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.283920520833334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5064952312499997,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6266238078124999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.378564208588749,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.89282104294374,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 100.0074862519125,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.0093578148906,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_11611704a162171b74def292122249cd\",\n + \ \"label\" : \"Chicken With Dates\",\n \"image\" : \"https://www.edamam.com/web-img/67a/67ad208d24b7f672f5bdc1482ca7f69d.jpg\",\n + \ \"source\" : \"NY Magazine\",\n \"url\" : \"http://nymag.com/restaurants/articles/recipes/chickendates.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-with-dates-11611704a162171b74def292122249cd/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chickens, cut into quarters\", + \"Salt and freshly ground black pepper\", \"1/3 cup olive oil\", \"3 large + onions, peeled and chopped\", \"1 tablespoon cinnamon\", \"1/2 teaspoon nutmeg\", + \"2 tablespoon honey\", \"3 cups light chicken stock\", \"1 pound dates, halved + lengthwise\", \"Juice of 2 lemons\", \"1 teaspoon saffron\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 large chickens, cut into quarters\",\n \"weight\" + : 2300.0\n }, {\n \"text\" : \"Salt and freshly ground black pepper\",\n + \ \"weight\" : 24.979154219999998\n }, {\n \"text\" : \"Salt + and freshly ground black pepper\",\n \"weight\" : 12.489577109999999\n + \ }, {\n \"text\" : \"1/3 cup olive oil\",\n \"weight\" + : 72.0\n }, {\n \"text\" : \"3 large onions, peeled and chopped\",\n + \ \"weight\" : 450.0\n }, {\n \"text\" : \"1 tablespoon + cinnamon\",\n \"weight\" : 7.8\n }, {\n \"text\" : \"1/2 + teaspoon nutmeg\",\n \"weight\" : 1.1\n }, {\n \"text\" + : \"2 tablespoon honey\",\n \"weight\" : 42.0\n }, {\n \"text\" + : \"3 cups light chicken stock\",\n \"weight\" : 720.0\n }, {\n + \ \"text\" : \"1 pound dates, halved lengthwise\",\n \"weight\" + : 453.59237\n }, {\n \"text\" : \"Juice of 2 lemons\",\n \"weight\" + : 116.0\n }, {\n \"text\" : \"1 teaspoon saffron\",\n \"weight\" + : 0.7\n } ],\n \"calories\" : 7497.0107034461,\n \"totalWeight\" + : 4193.841808339277,\n \"totalTime\" : 125.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 7497.0107034461,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 429.442628768786,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 112.1144069133712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.231,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 200.4634889748429,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 83.72816897955781,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 468.19628435084496,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 48.93045179883,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 369.631331632504,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 34.4904,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 462.25915895872896,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1746.6,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 9710.464854365364,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 842.4433100923267,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 818.9396552703927,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 9316.618163890244,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 30.547696809437614,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 34.401612256838284,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 4036.1998012338,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 987.8976517196999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 134.125,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 2.1320119282788004,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 3.8329906607980004,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 176.09061802336728,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 10.319023670690102,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 345.2170836087,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 345.2170836087,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.13,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.6000000000000005,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 18.022851601943998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 116.21003171906999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 374.850535172305,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 660.6809673365939,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 560.572034566856,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.0654281169483,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 195.72180719532,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 924.5183179174579,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 582.2,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 404.6027022652235,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 84.24433100923267,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 204.73491381759817,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 266.1890903968641,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 169.70942671909788,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 229.34408171225522,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 576.5999716048285,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 109.76640574663332,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 223.54166666666666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 142.13412855192004,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 225.47003887047063,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 880.4530901168364,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 515.9511835345052,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 86.304270902175,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 118.83333333333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.1500000000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 90.11425800971999,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 145.2625396488375,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 429.442628768786,\n \"hasRDI\" : true,\n \"daily\" : 660.6809673365939,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 112.1144069133712,\n \"hasRDI\" : true,\n \"daily\" + : 560.572034566856,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.231,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 200.4634889748429,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.72816897955781,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 468.19628435084496,\n \"hasRDI\" : true,\n \"daily\" : 156.0654281169483,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 419.26583255201496,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 48.93045179883,\n \"hasRDI\" + : true,\n \"daily\" : 195.72180719532,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 369.631331632504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 34.4904,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 462.25915895872896,\n \"hasRDI\" : true,\n \"daily\" : 924.5183179174579,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1746.6,\n \"hasRDI\" : true,\n \"daily\" + : 582.2,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 9710.464854365364,\n \"hasRDI\" : true,\n \"daily\" + : 404.6027022652235,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 842.4433100923267,\n \"hasRDI\" : true,\n \"daily\" + : 84.24433100923267,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 818.9396552703927,\n \"hasRDI\" : true,\n \"daily\" + : 204.73491381759817,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9316.618163890244,\n \"hasRDI\" : true,\n \"daily\" + : 266.1890903968641,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 30.547696809437614,\n \"hasRDI\" : true,\n \"daily\" + : 169.70942671909788,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.401612256838284,\n \"hasRDI\" : true,\n \"daily\" + : 229.34408171225522,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4036.1998012338,\n \"hasRDI\" : true,\n \"daily\" + : 576.5999716048285,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 987.8976517196999,\n \"hasRDI\" : true,\n + \ \"daily\" : 109.76640574663332,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 134.125,\n \"hasRDI\" : true,\n \"daily\" + : 223.54166666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.1320119282788004,\n \"hasRDI\" : true,\n + \ \"daily\" : 142.13412855192004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.8329906607980004,\n + \ \"hasRDI\" : true,\n \"daily\" : 225.47003887047063,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 176.09061802336728,\n + \ \"hasRDI\" : true,\n \"daily\" : 880.4530901168364,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.319023670690102,\n + \ \"hasRDI\" : true,\n \"daily\" : 515.9511835345052,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 345.2170836087,\n \"hasRDI\" : true,\n \"daily\" : 86.304270902175,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 345.2170836087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.13,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.83333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.6000000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1500000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 18.022851601943998,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.11425800971999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 116.21003171906999,\n + \ \"hasRDI\" : true,\n \"daily\" : 145.2625396488375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_150fc321f7c4bc1a5d602baf33e63b4d\",\n + \ \"label\" : \"The Neglected Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8bb/8bb29482b8b9f939204564d1eea3c31a.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"http://www.food52.com/recipes/3306_the_neglected_chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/the-neglected-chicken-150fc321f7c4bc1a5d602baf33e63b4d/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 3-lb free-range + chicken\", \"1 tablespoon fresh herbs (I like tarragon or herbes de Provence) + or 1 scant teaspoon dried\", \"2 teaspoons sea salt\", \"3 tablespoons butter\", + \"1/2 lemon\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 3-lb + free-range chicken\",\n \"weight\" : 1360.77711\n }, {\n \"text\" + : \"1 tablespoon fresh herbs (I like tarragon or herbes de Provence) or 1 + scant teaspoon dried\",\n \"weight\" : 3.8\n }, {\n \"text\" + : \"2 teaspoons sea salt\",\n \"weight\" : 9.708333333333334\n }, + {\n \"text\" : \"3 tablespoons butter\",\n \"weight\" : 42.599999999999994\n + \ }, {\n \"text\" : \"1/2 lemon\",\n \"weight\" : 29.0\n + \ } ],\n \"calories\" : 2304.6761348199993,\n \"totalWeight\" + : 1443.10387928996,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2304.6761348199993,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 174.02434228087998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.78074953987999,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.2939965817559997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 66.70984033152,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 31.214948444039997,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 2.9688999999999997,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.9373999999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.78286,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 172.9050488728,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 785.5863261,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3339.8011457628004,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 126.45655245759045,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 190.2069546528996,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1820.7208833151967,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.76893425185687,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.22512926516996,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1377.3007991559998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 687.0566582679999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 35.2292549568,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.5721950608799999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.13440212176,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 63.028372850748006,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.2665475218,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 65.76370608799999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 65.76370608799999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.94093814788,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.4896568695999997,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.8363053043999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 79.181926522,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 115.23380674099997,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 267.7297573552,\n \"unit\" : + \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 308.90374769939996,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.9896333333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.7495999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 345.8100977456,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 261.8621087,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 139.15838107345002,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.645655245759045,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.5517386632249,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 52.02059666614848,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 48.71630139920483,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 81.50086176779973,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 196.7572570222857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 76.33962869644444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 58.715424928,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 38.146337392,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 66.72953657411765,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.14186425374004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 163.32737609,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 16.440926521999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 49.015635798,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6224142173999999,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 19.181526522,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 98.97740815249999,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 174.02434228087998,\n \"hasRDI\" : true,\n \"daily\" + : 267.7297573552,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.78074953987999,\n \"hasRDI\" + : true,\n \"daily\" : 308.90374769939996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 2.2939965817559997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.70984033152,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.214948444039997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 2.9688999999999997,\n \"hasRDI\" : true,\n \"daily\" : 0.9896333333333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.0315,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.9373999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 3.7495999999999996,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.78286,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 172.9050488728,\n + \ \"hasRDI\" : true,\n \"daily\" : 345.8100977456,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 785.5863261,\n \"hasRDI\" : true,\n \"daily\" : 261.8621087,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3339.8011457628004,\n \"hasRDI\" : true,\n \"daily\" : 139.15838107345002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 126.45655245759045,\n \"hasRDI\" : true,\n \"daily\" : 12.645655245759045,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 190.2069546528996,\n \"hasRDI\" : true,\n \"daily\" : 47.5517386632249,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1820.7208833151967,\n \"hasRDI\" : true,\n \"daily\" : 52.02059666614848,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.76893425185687,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.71630139920483,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.22512926516996,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.50086176779973,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1377.3007991559998,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.7572570222857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 687.0566582679999,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.33962869644444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.2292549568,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.715424928,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5721950608799999,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.146337392,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.13440212176,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.72953657411765,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.028372850748006,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.14186425374004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2665475218,\n + \ \"hasRDI\" : true,\n \"daily\" : 163.32737609,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 65.76370608799999,\n \"hasRDI\" : true,\n \"daily\" : 16.440926521999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 65.76370608799999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.94093814788,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.015635798,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4896568695999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6224142173999999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8363053043999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.181526522,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.181926522,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.97740815249999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_49a9caf82601ea4e2df87ad9e40755ba\",\n + \ \"label\" : \"Chicken Vesuvio\",\n \"image\" : \"https://www.edamam.com/web-img/9c3/9c37c9b77041396987a30596eca08e52.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Vesuvio\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-vesuvio-49a9caf82601ea4e2df87ad9e40755ba/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 cup olive oil\", \"10 cloves garlic\", + \"4 large russet potatoes, peeled and quartered lengthwise\", \"2 3–4-lb. + whole chickens, each cut into 8 pieces\", \"1 ½ cups white wine\", \"â\N\x93 + cup finely chopped parsley\", \"1 tbsp. dried oregano\", \"Kosher salt and + freshly ground black pepper, to taste\", \"1 ½ cups chicken stock\", \"1 + cup frozen peas, thawed\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 cup olive oil\",\n \"weight\" : 216.0\n }, {\n \"text\" + : \"10 cloves garlic\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"4 large russet potatoes, peeled and quartered lengthwise\",\n \"weight\" + : 1476.0\n }, {\n \"text\" : \"2 3–4-lb. whole chickens, each + cut into 8 pieces\",\n \"weight\" : 3175.1465900000003\n }, {\n + \ \"text\" : \"1 ½ cups white wine\",\n \"weight\" : 147.0\n + \ }, {\n \"text\" : \"â\N\x93 cup finely chopped parsley\",\n \"weight\" + : 60.0\n }, {\n \"text\" : \"1 tbsp. dried oregano\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"Kosher salt and freshly ground black + pepper, to taste\",\n \"weight\" : 32.90487954\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 16.45243977\n }, {\n \"text\" : \"1 ½ cups chicken stock\",\n + \ \"weight\" : 240.0\n }, {\n \"text\" : \"1 cup frozen + peas, thawed\",\n \"weight\" : 134.0\n } ],\n \"calories\" + : 8151.1599384027,\n \"totalWeight\" : 5528.111498852398,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 8151.1599384027,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 547.174361525222,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 124.55305422131839,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 2.094326690764,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 294.1389636367803,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 94.24441505166459,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 325.630535232915,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 34.54046726181,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 22.215095614528,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 452.264049195303,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 1626.5247609,\n \"unit\" : \"mg\"\n },\n \"NA\" : + {\n \"label\" : \"Sodium\",\n \"quantity\" : 12791.533031749539,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 793.8582656928754,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 912.5487329375242,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 11548.322319537892,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 44.412520180438904,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 35.5505023260654,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 4302.3913862006,\n \"unit\" : \"mg\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 1287.7930280299,\n \"unit\" : \"µg\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 232.57559489919998,\n + \ \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 3.0841784436716004,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.5911440090260007,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 169.85040070498312,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 13.515185483930697,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 529.7928956329,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 529.7928956329,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 6.69320901172,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.318199362400001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 39.46040441720801,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1276.18513912149,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 407.55799692013505,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 841.8067100388032,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 622.765271106592,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 108.543511744305,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 138.16186904724,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 904.528098390606,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 542.1749203,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 532.9805429895641,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 79.38582656928754,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 228.13718323438104,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 329.9520662725112,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 246.7362232246606,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 237.003348840436,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 614.6273408858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 143.08811422554442,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 387.6259914986666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 205.61189624477336,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 211.24376523682358,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 849.2520035249156,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 675.7592741965349,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 132.448223908225,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 111.55348352866666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.0795498406000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 197.30202208604004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1595.2314239018626,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 547.174361525222,\n \"hasRDI\" : true,\n \"daily\" : 841.8067100388032,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 124.55305422131839,\n \"hasRDI\" : true,\n + \ \"daily\" : 622.765271106592,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.094326690764,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 294.1389636367803,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 94.24441505166459,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 325.630535232915,\n \"hasRDI\" : true,\n \"daily\" : 108.543511744305,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 291.090067971105,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 34.54046726181,\n \"hasRDI\" + : true,\n \"daily\" : 138.16186904724,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 22.215095614528,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 452.264049195303,\n \"hasRDI\" : true,\n \"daily\" : 904.528098390606,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1626.5247609,\n \"hasRDI\" : true,\n \"daily\" + : 542.1749203,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 12791.533031749539,\n \"hasRDI\" : true,\n \"daily\" + : 532.9805429895641,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 793.8582656928754,\n \"hasRDI\" : true,\n \"daily\" + : 79.38582656928754,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 912.5487329375242,\n \"hasRDI\" : true,\n \"daily\" + : 228.13718323438104,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11548.322319537892,\n \"hasRDI\" : true,\n \"daily\" + : 329.9520662725112,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 44.412520180438904,\n \"hasRDI\" : true,\n \"daily\" + : 246.7362232246606,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 35.5505023260654,\n \"hasRDI\" : true,\n \"daily\" + : 237.003348840436,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4302.3913862006,\n \"hasRDI\" : true,\n \"daily\" + : 614.6273408858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1287.7930280299,\n \"hasRDI\" : true,\n + \ \"daily\" : 143.08811422554442,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 232.57559489919998,\n \"hasRDI\" : true,\n + \ \"daily\" : 387.6259914986666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.0841784436716004,\n \"hasRDI\" : true,\n + \ \"daily\" : 205.61189624477336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.5911440090260007,\n + \ \"hasRDI\" : true,\n \"daily\" : 211.24376523682358,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 169.85040070498312,\n + \ \"hasRDI\" : true,\n \"daily\" : 849.2520035249156,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.515185483930697,\n + \ \"hasRDI\" : true,\n \"daily\" : 675.7592741965349,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 529.7928956329,\n \"hasRDI\" : true,\n \"daily\" : 132.448223908225,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 529.7928956329,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.69320901172,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.55348352866666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.318199362400001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0795498406000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.46040441720801,\n + \ \"hasRDI\" : true,\n \"daily\" : 197.30202208604004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 1276.18513912149,\n + \ \"hasRDI\" : true,\n \"daily\" : 1595.2314239018626,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n } ]\n}" + http_version: + recorded_at: Sun, 06 May 2018 18:00:52 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&from=0&q=&to=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Sun, 06 May 2018 18:00:58 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + { + "q" : "", + "from" : 0, + "to" : 100, + "params" : { + "sane" : [ ], + "q" : [ "" ], + "from" : [ "0" ], + "app_key" : [ "" ], + "to" : [ "100" ], + "app_id" : [ "" ] + }, + "more" : false, + "count" : 0, + "hits" : [ ] + } + http_version: + recorded_at: Sun, 06 May 2018 18:00:58 GMT recorded_with: VCR 4.0.0 diff --git a/test/cassettes/recipes2.yml b/test/cassettes/recipes2.yml index 325de433c..5f4e0f05e 100644 --- a/test/cassettes/recipes2.yml +++ b/test/cassettes/recipes2.yml @@ -57,4 +57,63 @@ http_interactions: } http_version: recorded_at: Fri, 04 May 2018 20:36:06 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&from=0&q=24324234234234.234&to=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Sun, 06 May 2018 18:00:52 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + { + "q" : "24324234234234.234", + "from" : 0, + "to" : 100, + "params" : { + "sane" : [ ], + "q" : [ "24324234234234.234" ], + "from" : [ "0" ], + "app_key" : [ "" ], + "to" : [ "100" ], + "app_id" : [ "" ] + }, + "more" : false, + "count" : 0, + "hits" : [ ] + } + http_version: + recorded_at: Sun, 06 May 2018 18:00:52 GMT recorded_with: VCR 4.0.0 diff --git a/test/cassettes/show_recipe.yml b/test/cassettes/show_recipe.yml index 12a6ebede..9ba1f5c3e 100644 --- a/test/cassettes/show_recipe.yml +++ b/test/cassettes/show_recipe.yml @@ -5819,4 +5819,22169 @@ http_interactions: } http_version: recorded_at: Fri, 04 May 2018 20:50:39 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&from=0&q=chicken&to=100 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Sun, 06 May 2018 18:00:54 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=ee37ea0cbec446fe0dc609c7b4a6323b; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-149-22-246/10.149.22.246 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: "{\n \"q\" : \"chicken\",\n \"from\" : 0,\n \"to\" : 100,\n \"params\" + : {\n \"sane\" : [ ],\n \"q\" : [ \"chicken\" ],\n \"from\" : [ \"0\" + ],\n \"app_key\" : [ \"\" ],\n \"to\" : [ \"100\" ],\n \"app_id\" + : [ \"\" ]\n },\n \"more\" : true,\n \"count\" : 191058,\n \"hits\" + : [ {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2\",\n + \ \"label\" : \"Teriyaki Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1/2 cup (125ml) + mirin\", \"1/2 cup (125ml) soy sauce\", \"One 2-inch (5cm) piece of fresh + ginger, peeled and grated\", \"2-pounds (900g) boneless chicken thighs (4-8 + thighs, depending on size)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1/2 cup (125ml) mirin\",\n \"weight\" : 122.99850757795392\n }, + {\n \"text\" : \"1/2 cup (125ml) soy sauce\",\n \"weight\" : + 134.72774670265568\n }, {\n \"text\" : \"One 2-inch (5cm) piece + of fresh ginger, peeled and grated\",\n \"weight\" : 15.0\n }, + {\n \"text\" : \"2-pounds (900g) boneless chicken thighs (4-8 thighs, + depending on size)\",\n \"weight\" : 907.18474\n } ],\n \"calories\" + : 2253.101981306866,\n \"totalWeight\" : 1179.9109942806097,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2253.101981306866,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 151.56383347020517,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.169838892692944,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7711070290000002,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 63.10028137309835,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 31.82952890962799,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 17.72546514133862,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.3778219736212456,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.7939109868106228,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 161.72175016748596,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 889.0410452000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 8139.824735928436,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 116.51301359077408,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 276.82169621464243,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2529.722194651041,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.335407066766463,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.950414243828696,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1660.4080117810859,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 208.65249020000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 0.75,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7104550166118764,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.542818655059382,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 45.028415542590324,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.3713281129199304,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 47.7274267383718,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 47.7274267383718,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.6245453880000005,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 1.944087954,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.065879540000005,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 112.6550990653433,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 233.17512841570027,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 205.8491944634647,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.908488380446207,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.511287894484982,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 323.44350033497193,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 296.3470150666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 339.1593639970182,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.651301359077408,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.20542405366061,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 72.27777699002974,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.307817037591455,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 86.33609495885797,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 237.20114454015513,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 23.183610022222226,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 1.25,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 47.3636677741251,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 90.75403853290483,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 225.1420777129516,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 168.56640564599653,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 11.93185668459295,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 93.74242313333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.22679618500000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 9.72043977,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 23.832349425000007,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 151.56383347020517,\n \"hasRDI\" + : true,\n \"daily\" : 233.17512841570027,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 41.169838892692944,\n \"hasRDI\" : true,\n \"daily\" : + 205.8491944634647,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.7711070290000002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 63.10028137309835,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.82952890962799,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 17.72546514133862,\n \"hasRDI\" : true,\n \"daily\" : 5.908488380446207,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.347643167717376,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.3778219736212456,\n \"hasRDI\" + : true,\n \"daily\" : 5.511287894484982,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.7939109868106228,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 161.72175016748596,\n \"hasRDI\" : true,\n \"daily\" : 323.44350033497193,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 889.0410452000001,\n \"hasRDI\" : true,\n \"daily\" + : 296.3470150666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 8139.824735928436,\n \"hasRDI\" : true,\n \"daily\" + : 339.1593639970182,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 116.51301359077408,\n \"hasRDI\" : true,\n \"daily\" + : 11.651301359077408,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 276.82169621464243,\n \"hasRDI\" : true,\n \"daily\" + : 69.20542405366061,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2529.722194651041,\n \"hasRDI\" : true,\n \"daily\" + : 72.27777699002974,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.335407066766463,\n \"hasRDI\" : true,\n \"daily\" + : 46.307817037591455,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 12.950414243828696,\n \"hasRDI\" : true,\n \"daily\" + : 86.33609495885797,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1660.4080117810859,\n \"hasRDI\" : true,\n \"daily\" + : 237.20114454015513,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 208.65249020000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.183610022222226,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.75,\n \"hasRDI\" : true,\n \"daily\" + : 1.25,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.7104550166118764,\n \"hasRDI\" : true,\n \"daily\" : 47.3636677741251,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.542818655059382,\n \"hasRDI\" : true,\n \"daily\" : 90.75403853290483,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.028415542590324,\n \"hasRDI\" : true,\n \"daily\" : 225.1420777129516,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.3713281129199304,\n \"hasRDI\" : true,\n \"daily\" : 168.56640564599653,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 47.7274267383718,\n \"hasRDI\" : true,\n \"daily\" + : 11.93185668459295,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 47.7274267383718,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.6245453880000005,\n \"hasRDI\" : true,\n \"daily\" + : 93.74242313333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.9071847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.22679618500000004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.944087954,\n \"hasRDI\" : true,\n \"daily\" + : 9.72043977,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.065879540000005,\n \"hasRDI\" : true,\n \"daily\" + : 23.832349425000007,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b79327d05b8e5b838ad6cfd9576b30b6\",\n + \ \"label\" : \"Chicken Vesuvio\",\n \"image\" : \"https://www.edamam.com/web-img/e42/e42f9119813e890af34c259785ae1cfb.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/12/chicken-vesuvio-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-vesuvio-b79327d05b8e5b838ad6cfd9576b30b6/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup olive oil\", \"5 cloves garlic, + peeled\", \"2 large russet potatoes, peeled and cut into chunks\", \"1 3-4 + pound chicken, cut into 8 pieces (or 3 pound chicken legs)\", \"3/4 cup white + wine\", \"3/4 cup chicken stock\", \"3 tablespoons chopped parsley\", \"1 + tablespoon dried oregano\", \"Salt and pepper\", \"1 cup frozen peas, thawed\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup olive oil\",\n + \ \"weight\" : 108.0\n }, {\n \"text\" : \"5 cloves garlic, + peeled\",\n \"weight\" : 15.0\n }, {\n \"text\" : \"2 large + russet potatoes, peeled and cut into chunks\",\n \"weight\" : 738.0\n + \ }, {\n \"text\" : \"1 3-4 pound chicken, cut into 8 pieces (or + 3 pound chicken legs)\",\n \"weight\" : 1587.5732950000001\n }, + {\n \"text\" : \"3/4 cup white wine\",\n \"weight\" : 110.25\n + \ }, {\n \"text\" : \"3/4 cup chicken stock\",\n \"weight\" + : 180.0\n }, {\n \"text\" : \"3 tablespoons chopped parsley\",\n + \ \"weight\" : 11.399999999999999\n }, {\n \"text\" : \"1 + tablespoon dried oregano\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 17.34133977\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 8.670669885\n }, {\n \"text\" + : \"1 cup frozen peas, thawed\",\n \"weight\" : 134.0\n } ],\n + \ \"calories\" : 4181.274538701351,\n \"totalWeight\" : 2913.153664598772,\n + \ \"totalTime\" : 60.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4181.274538701351,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 274.571129832611,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 62.5415118546592,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.047163345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 147.41068630389012,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 47.3896991368323,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 176.1886133914575,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 21.058879480905002,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 15.725792287264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 230.93090795265152,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 815.06238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6741.319937460769,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 441.1083779878552,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 479.3344106204877,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5906.466677482753,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 23.452202620288947,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.340223583205272,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2223.3049241003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 637.87051551495,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 103.79879744960002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.7282507278358001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.917496514513,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 86.96976241599155,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 6.884051091465349,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 282.68750431645003,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 282.68750431645003,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 20.174524488604003,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 371.39113421074507,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 209.06372693506756,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 422.4171228194015,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 312.707559273296,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 58.7295377971525,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 84.23551792362001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 461.8618159053031,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 271.68746015,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 280.88833072753204,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 44.11083779878552,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 119.83360265512192,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 168.75619078522152,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 130.29001455716082,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 122.26815722136848,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 317.61498915718573,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 70.87450172388333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 172.99799574933337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 115.21671518905335,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 112.79391261841177,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 434.8488120799578,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 344.2025545732675,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 70.67187607911251,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 100.87262244302002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 464.23891776343135,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 274.571129832611,\n \"hasRDI\" : true,\n \"daily\" : 422.4171228194015,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 62.5415118546592,\n \"hasRDI\" : true,\n \"daily\" + : 312.707559273296,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 147.41068630389012,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.3896991368323,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 176.1886133914575,\n \"hasRDI\" : true,\n \"daily\" : 58.7295377971525,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 155.1297339105525,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 21.058879480905002,\n \"hasRDI\" + : true,\n \"daily\" : 84.23551792362001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 15.725792287264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 230.93090795265152,\n \"hasRDI\" : true,\n \"daily\" : 461.8618159053031,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 815.06238045,\n \"hasRDI\" : true,\n \"daily\" + : 271.68746015,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6741.319937460769,\n \"hasRDI\" : true,\n \"daily\" + : 280.88833072753204,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 441.1083779878552,\n \"hasRDI\" : true,\n \"daily\" + : 44.11083779878552,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 479.3344106204877,\n \"hasRDI\" : true,\n \"daily\" + : 119.83360265512192,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5906.466677482753,\n \"hasRDI\" : true,\n \"daily\" + : 168.75619078522152,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.452202620288947,\n \"hasRDI\" : true,\n \"daily\" + : 130.29001455716082,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.340223583205272,\n \"hasRDI\" : true,\n \"daily\" + : 122.26815722136848,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2223.3049241003,\n \"hasRDI\" : true,\n \"daily\" + : 317.61498915718573,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 637.87051551495,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.87450172388333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 103.79879744960002,\n \"hasRDI\" : true,\n + \ \"daily\" : 172.99799574933337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.7282507278358001,\n \"hasRDI\" : true,\n + \ \"daily\" : 115.21671518905335,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.917496514513,\n \"hasRDI\" + : true,\n \"daily\" : 112.79391261841177,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 86.96976241599155,\n + \ \"hasRDI\" : true,\n \"daily\" : 434.8488120799578,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.884051091465349,\n + \ \"hasRDI\" : true,\n \"daily\" : 344.2025545732675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 282.68750431645003,\n \"hasRDI\" : true,\n \"daily\" : 70.67187607911251,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 282.68750431645003,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.174524488604003,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.87262244302002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 371.39113421074507,\n + \ \"hasRDI\" : true,\n \"daily\" : 464.23891776343135,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_888e9fc4a808e9e4ccdb2ac24a6a2f46\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/551/551b906bafd4c45d50033742eaf00c02.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Teriyaki\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-888e9fc4a808e9e4ccdb2ac24a6a2f46/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 tbsp. vegetable oil\", \"4 pieces + chicken, trimmed, skin pierced with a fork\", \"½ cup Teriyaki Sauce\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 tbsp. vegetable oil\",\n + \ \"weight\" : 14.0\n }, {\n \"text\" : \"4 pieces chicken, + trimmed, skin pierced with a fork\",\n \"weight\" : 357.6\n }, + {\n \"text\" : \"½ cup Teriyaki Sauce\",\n \"weight\" : 144.0\n + \ } ],\n \"calories\" : 1020.76,\n \"totalWeight\" : 515.6,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1020.7600000000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 67.88336000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 16.3241,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.4542520000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 32.39298000000001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 13.944200000000002,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 22.4064,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.144,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 20.304,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 75.0528,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 268.20000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5769.839999999999,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 75.33600000000001,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 159.36,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 999.8640000000001,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 5.6664,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.828560000000001,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 747.432,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 146.616,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.721600000000001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.25776000000000004,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.5299200000000001,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 26.149176000000004,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.3956,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.976,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 32.976,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.1085600000000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.7152000000000002,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.1248000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 5.364000000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 51.038000000000004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 104.43593846153848,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 81.6205,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.468800000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.576,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 150.1056,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 89.4,\n \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 240.40999999999994,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 7.533600000000002,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 39.84,\n \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 28.56754285714286,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 31.48,\n \"unit\" : \"%\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 32.190400000000004,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 106.776,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 16.29066666666667,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 9.536000000000001,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 17.184,\n \"unit\" : \"%\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 31.171764705882357,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 130.74588,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 69.78,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 8.244,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 18.476000000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.17880000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 20.624000000000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 6.705000000000001,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 67.88336000000001,\n \"hasRDI\" : true,\n \"daily\" + : 104.43593846153848,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 16.3241,\n \"hasRDI\" + : true,\n \"daily\" : 81.6205,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.4542520000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.39298000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.944200000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.4064,\n \"hasRDI\" : true,\n \"daily\" : 7.468800000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.262400000000003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.144,\n \"hasRDI\" : + true,\n \"daily\" : 0.576,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 20.304,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 75.0528,\n + \ \"hasRDI\" : true,\n \"daily\" : 150.1056,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 268.20000000000005,\n \"hasRDI\" : true,\n \"daily\" : 89.4,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 5769.839999999999,\n \"hasRDI\" : true,\n \"daily\" : 240.40999999999994,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 75.33600000000001,\n \"hasRDI\" : true,\n \"daily\" : 7.533600000000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 159.36,\n \"hasRDI\" : true,\n \"daily\" : 39.84,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 999.8640000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.56754285714286,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.6664,\n \"hasRDI\" + : true,\n \"daily\" : 31.48,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.828560000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.190400000000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 747.432,\n \"hasRDI\" : true,\n \"daily\" + : 106.776,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 146.616,\n \"hasRDI\" : true,\n \"daily\" + : 16.29066666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 5.721600000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 9.536000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.25776000000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.184,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.5299200000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.171764705882357,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.149176000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 130.74588,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3956,\n \"hasRDI\" : true,\n \"daily\" + : 69.78,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate + equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.976,\n \"hasRDI\" : true,\n \"daily\" + : 8.244,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.976,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.1085600000000002,\n \"hasRDI\" : true,\n \"daily\" + : 18.476000000000003,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7152000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.17880000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.1248000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.624000000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.364000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.705000000000001,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_14ebd7d6d65f761843dba35202de4b37\",\n + \ \"label\" : \"Chicken Satay\",\n \"image\" : \"https://www.edamam.com/web-img/ba6/ba6f66d885e4d62a98055b088a5a85a3.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3645/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-satay-14ebd7d6d65f761843dba35202de4b37/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Sugar-Conscious\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"100.0ml soy + sauce (Kikkoman is good)\", \"4.0 tbsp smooth peanut butter\", \"4 skinless + chicken breasts fillets\" ],\n \"ingredients\" : [ {\n \"text\" + : \"100.0ml soy sauce (Kikkoman is good)\",\n \"weight\" : 107.78219736212455\n + \ }, {\n \"text\" : \"4.0 tbsp smooth peanut butter\",\n \"weight\" + : 64.0\n }, {\n \"text\" : \"4 skinless chicken breasts fillets\",\n + \ \"weight\" : 1088.0\n } ],\n \"calories\" : 1745.4445646019262,\n + \ \"totalWeight\" : 1259.7821973621246,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1745.4445646019262,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 61.99035852496412,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 12.812121004074351,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.12416,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 24.19340833367867,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 12.91898717906239,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 19.59206232995274,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 4.062257578896997,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 7.144728789448498,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 267.78787086527694,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 794.24,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 6420.956101101502,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 121.3281251295011,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 491.9188260479722,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4459.892558525242,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.702041861750805,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.942505117050485,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2710.758447621127,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 76.16000000000001,\n \"unit\" : \"µg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.1542881251295012,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.226480625647506,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 115.20657705407227,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 9.265437652095946,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 168.68950763069745,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 168.68950763069745,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.2848,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 10.88,\n \"unit\" : \"IU\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 11.916800000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.3680000000000003,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 87.27222823009632,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 95.36978234609865,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 64.06060502037175,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.530687443317579,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 16.249030315587987,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 535.5757417305539,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.74666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 267.5398375458959,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.13281251295011,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 122.97970651199304,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 127.42550167214976,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 37.23356589861558,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 66.28336744700324,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 387.25120680301814,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 8.462222222222223,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 76.95254167530008,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 130.96944856750034,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 576.0328852703614,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 463.27188260479727,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 42.17237690767436,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 38.080000000000005,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 2.72,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 59.58400000000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.9600000000000004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 61.99035852496412,\n \"hasRDI\" : true,\n \"daily\" + : 95.36978234609865,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 12.812121004074351,\n \"hasRDI\" + : true,\n \"daily\" : 64.06060502037175,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.12416,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.19340833367867,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.91898717906239,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 19.59206232995274,\n \"hasRDI\" : true,\n \"daily\" : 6.530687443317579,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 15.529804751055742,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.062257578896997,\n \"hasRDI\" + : true,\n \"daily\" : 16.249030315587987,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.144728789448498,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 267.78787086527694,\n \"hasRDI\" : true,\n \"daily\" : 535.5757417305539,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 794.24,\n \"hasRDI\" : true,\n \"daily\" + : 264.74666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6420.956101101502,\n \"hasRDI\" : true,\n \"daily\" + : 267.5398375458959,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 121.3281251295011,\n \"hasRDI\" : true,\n \"daily\" + : 12.13281251295011,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 491.9188260479722,\n \"hasRDI\" : true,\n \"daily\" + : 122.97970651199304,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4459.892558525242,\n \"hasRDI\" : true,\n \"daily\" + : 127.42550167214976,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.702041861750805,\n \"hasRDI\" : true,\n \"daily\" + : 37.23356589861558,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.942505117050485,\n \"hasRDI\" : true,\n \"daily\" + : 66.28336744700324,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2710.758447621127,\n \"hasRDI\" : true,\n \"daily\" + : 387.25120680301814,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 76.16000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 8.462222222222223,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.1542881251295012,\n \"hasRDI\" : true,\n \"daily\" : 76.95254167530008,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.226480625647506,\n \"hasRDI\" : true,\n \"daily\" : 130.96944856750034,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 115.20657705407227,\n \"hasRDI\" : true,\n \"daily\" : 576.0328852703614,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.265437652095946,\n \"hasRDI\" : true,\n \"daily\" : 463.27188260479727,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 168.68950763069745,\n \"hasRDI\" : true,\n \"daily\" + : 42.17237690767436,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 168.68950763069745,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2.2848,\n \"hasRDI\" : true,\n \"daily\" + : 38.080000000000005,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 10.88,\n \"hasRDI\" : true,\n \"daily\" + : 2.72,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 11.916800000000002,\n \"hasRDI\" : true,\n \"daily\" : 59.58400000000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.3680000000000003,\n \"hasRDI\" : true,\n \"daily\" : 2.9600000000000004,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_be3ba087e212f13672b553ecfa876333\",\n + \ \"label\" : \"Baked Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/01c/01cacb70890274fb7b7cebb975a93231.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/318981/baked-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/baked-chicken-be3ba087e212f13672b553ecfa876333/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"6 bone-in chicken + breast halves, or 6 chicken thighs and wings, skin-on\", \"1/2 teaspoon coarse + salt\", \"1/2 teaspoon Mrs. Dash seasoning\", \"1/4 teaspoon freshly ground + black pepper\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 bone-in + chicken breast halves, or 6 chicken thighs and wings, skin-on\",\n \"weight\" + : 522.0\n }, {\n \"text\" : \"1/2 teaspoon coarse salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"1/2 teaspoon Mrs. Dash + seasoning\",\n \"weight\" : 0.75\n }, {\n \"text\" : \"1/4 + teaspoon freshly ground black pepper\",\n \"weight\" : 0.575\n } + ],\n \"calories\" : 901.58575,\n \"totalWeight\" : 525.6156350198669,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 901.58575,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 48.36022,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 13.917879,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.5480999999999999,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 19.953694249999998,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 10.251458499999998,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.8596375,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.230225,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.01718,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 108.9686675,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 334.08,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1216.981821,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 67.98700240476805,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 133.18615635019867,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1161.3550008015893,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 4.19094159556556,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 4.208683135019868,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 910.471,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 126.42524999999999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 0.09,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.33146099999999995,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.4461675,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 51.74860724999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 2.77817325,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 22.01275,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 22.01275,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.7748,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.088,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.42528,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 6.981775,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 45.0792875,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 74.40033846153847,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 69.589395,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.28654583333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.9209,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 217.937335,\n \"unit\" : + \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 111.36,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.707575875,\n \"unit\" : \"%\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.798700240476805,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 33.29653908754967,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 33.18157145147398,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.283008864253112,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 28.05788756679912,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 130.06728571428573,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 14.04725,\n \"unit\" : \"%\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.15,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 22.097399999999997,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 26.245147058823527,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 258.74303625,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 138.9086625,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 5.5031875,\n \"unit\" : \"%\"\n },\n \"VITB12\" : + {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 29.58,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.522,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 7.126400000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 8.72721875,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 48.36022,\n \"hasRDI\" : true,\n \"daily\" : 74.40033846153847,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 13.917879,\n \"hasRDI\" : true,\n \"daily\" + : 69.589395,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.5480999999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 19.953694249999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.251458499999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.8596375,\n \"hasRDI\" : true,\n \"daily\" : 0.28654583333333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6294125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.230225,\n \"hasRDI\" : + true,\n \"daily\" : 0.9209,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.01718,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 108.9686675,\n + \ \"hasRDI\" : true,\n \"daily\" : 217.937335,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 334.08,\n \"hasRDI\" : true,\n \"daily\" : 111.36,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1216.981821,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.707575875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.98700240476805,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.798700240476805,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 133.18615635019867,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.29653908754967,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1161.3550008015893,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.18157145147398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.19094159556556,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.283008864253112,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.208683135019868,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.05788756679912,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 910.471,\n + \ \"hasRDI\" : true,\n \"daily\" : 130.06728571428573,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 126.42524999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.04725,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.09,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.15,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.33146099999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.097399999999997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.4461675,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.245147058823527,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.74860724999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 258.74303625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.77817325,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.9086625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 22.01275,\n \"hasRDI\" : true,\n \"daily\" : 5.5031875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 22.01275,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.7748,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.58,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.088,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.522,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.42528,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.126400000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.981775,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.72721875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0a3f49a3da07cd8379d4e35f7a1a72fc\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/827/8275cc33e9f0f4314617d5a356900aa7.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2009/07/16/chicken-teriyaki-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-0a3f49a3da07cd8379d4e35f7a1a72fc/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup water\", \"2 tablespoons Japanese + soy sauce\", \"2 tablespoons dark brown sugar\", \"2 tablespoons mirin\", + \"4-6 skin-on filleted (boneless) chicken thighs\", \"2 tablespoons mild flavored + honey (or maltose)\", \"2 tablespoons dark soy sauce\", \"2 tablespoons sake\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup water\",\n \"weight\" + : 118.5\n }, {\n \"text\" : \"2 tablespoons Japanese soy sauce\",\n + \ \"weight\" : 32.0\n }, {\n \"text\" : \"2 tablespoons + dark brown sugar\",\n \"weight\" : 18.125000000000004\n }, {\n + \ \"text\" : \"2 tablespoons mirin\",\n \"weight\" : 29.8\n }, + {\n \"text\" : \"4-6 skin-on filleted (boneless) chicken thighs\",\n + \ \"weight\" : 745.0\n }, {\n \"text\" : \"2 tablespoons + mild flavored honey (or maltose)\",\n \"weight\" : 42.0\n }, {\n + \ \"text\" : \"2 tablespoons dark soy sauce\",\n \"weight\" : + 32.0\n }, {\n \"text\" : \"2 tablespoons sake\",\n \"weight\" + : 29.1\n } ],\n \"calories\" : 1955.851,\n \"totalWeight\" + : 1046.5249999999999,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1955.851,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : + {\n \"label\" : \"Fat\",\n \"quantity\" : 124.1093,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.750519999999995,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6332500000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 51.75932,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 25.997470000000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 60.3495125,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.5960000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 52.331275000000005,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 52.075275000000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.72585,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 730.1,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4131.643,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 97.33375,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 188.65025000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1858.8712500000001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 6.3579875,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.288767499999999,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1281.8290000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 171.35,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.21,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.56497,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2018099999999998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 35.9324475,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.69738125,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.619,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7450000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.5645,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 15.645000000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 97.79255,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 190.93738461538462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 168.75259999999997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.116504166666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.3840000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 257.4517,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.36666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 172.15179166666667,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.733375,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.16256250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 53.11060714285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.32215277777778,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 68.59178333333332,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 183.1184285714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.038888888888888,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.35,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 37.66466666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 70.69470588235293,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 179.6622375,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 134.86906249999998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 8.082812500000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 76.98333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.18625000000000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 7.8225,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.556250000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 124.1093,\n \"hasRDI\" : true,\n + \ \"daily\" : 190.93738461538462,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.750519999999995,\n \"hasRDI\" : true,\n \"daily\" : + 168.75259999999997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.6332500000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.75932,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.997470000000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 60.3495125,\n \"hasRDI\" : true,\n \"daily\" : 20.116504166666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.7535125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5960000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 2.3840000000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 52.331275000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 52.075275000000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 128.72585,\n \"hasRDI\" : + true,\n \"daily\" : 257.4517,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 730.1,\n \"hasRDI\" + : true,\n \"daily\" : 243.36666666666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 4131.643,\n \"hasRDI\" : + true,\n \"daily\" : 172.15179166666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.33375,\n \"hasRDI\" + : true,\n \"daily\" : 9.733375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 188.65025000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.16256250000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1858.8712500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 53.11060714285714,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.3579875,\n \"hasRDI\" : true,\n \"daily\" + : 35.32215277777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.288767499999999,\n \"hasRDI\" : true,\n \"daily\" + : 68.59178333333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1281.8290000000002,\n \"hasRDI\" : true,\n \"daily\" + : 183.1184285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 171.35,\n \"hasRDI\" : true,\n \"daily\" + : 19.038888888888888,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.21,\n \"hasRDI\" : true,\n \"daily\" + : 0.35,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.56497,\n \"hasRDI\" : true,\n \"daily\" : 37.66466666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2018099999999998,\n \"hasRDI\" : true,\n \"daily\" : 70.69470588235293,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 35.9324475,\n \"hasRDI\" : true,\n \"daily\" : 179.6622375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.69738125,\n \"hasRDI\" : true,\n \"daily\" : 134.86906249999998,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.331250000000004,\n \"hasRDI\" : true,\n \"daily\" + : 8.082812500000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.331250000000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.619,\n \"hasRDI\" : true,\n \"daily\" + : 76.98333333333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7450000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.18625000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5645,\n \"hasRDI\" : true,\n \"daily\" + : 7.8225,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 15.645000000000001,\n \"hasRDI\" : true,\n \"daily\" : 19.556250000000002,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8275bb28647abcedef0baaf2dcf34f8b\",\n + \ \"label\" : \"Chicken Paprikash\",\n \"image\" : \"https://www.edamam.com/web-img/e12/e12b8c5581226d7639168f41d126f2ff.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-paprikash/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-paprikash-8275bb28647abcedef0baaf2dcf34f8b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"640 grams chicken - drumsticks and + thighs ( 3 whole chicken legs cut apart)\", \"1/2 teaspoon salt\", \"1/4 teaspoon + black pepper\", \"1 tablespoon butter – cultured unsalted (or olive oil)\", + \"240 grams onion sliced thin (1 large onion)\", \"70 grams Anaheim pepper + chopped (1 large pepper)\", \"25 grams paprika (about 1/4 cup)\", \"1 cup + chicken stock\", \"1/2 teaspoon salt\", \"1/2 cup sour cream\", \"1 tablespoon + flour – all-purpose\" ],\n \"ingredients\" : [ {\n \"text\" : + \"640 grams chicken - drumsticks and thighs ( 3 whole chicken legs cut apart)\",\n + \ \"weight\" : 640.0\n }, {\n \"text\" : \"640 grams chicken + - drumsticks and thighs ( 3 whole chicken legs cut apart)\",\n \"weight\" + : 640.0\n }, {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1/4 teaspoon black pepper\",\n \"weight\" + : 0.725\n }, {\n \"text\" : \"1 tablespoon butter – cultured unsalted + (or olive oil)\",\n \"weight\" : 13.5\n }, {\n \"text\" + : \"240 grams onion sliced thin (1 large onion)\",\n \"weight\" : 78.125\n + \ }, {\n \"text\" : \"70 grams Anaheim pepper chopped (1 large + pepper)\",\n \"weight\" : 56.25\n }, {\n \"text\" : \"25 + grams paprika (about 1/4 cup)\",\n \"weight\" : 27.2\n }, {\n + \ \"text\" : \"1 cup chicken stock\",\n \"weight\" : 240.0\n + \ }, {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1/2 cup sour cream\",\n \"weight\" + : 115.0\n }, {\n \"text\" : \"1 tablespoon flour – all-purpose\",\n + \ \"weight\" : 7.8125\n } ],\n \"calories\" : 3033.2012500000005,\n + \ \"totalWeight\" : 1824.6125,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3033.2012500000005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 208.05040250000002,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.207636375,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8448,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 85.78187337499999,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 39.88905187500001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 47.816761250000006,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 12.0590375,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 16.12346375,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 236.58131375,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1283.0,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3945.65975,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 326.04037500000004,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 324.8095,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 4014.232125,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 16.441846249999998,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 22.4816375,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n + \ \"label\" : \"Phosphorus\",\n \"quantity\" : 2388.57225,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1144.9192500000001,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 143.94729999999998,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.3102805,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 2.9885087500000003,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 67.976613,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.47877425,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 101.71375,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.71375,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 7.682,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.7400000000000002,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 13.4064275,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 71.5251125,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 151.66006250000004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 320.07754230769234,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 306.038181875,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.938920416666669,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 48.236149999999995,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 473.16262750000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 427.6666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 164.40248958333333,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 32.604037500000004,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 81.202375,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 114.69234642857144,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 91.34359027777776,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 149.87758333333335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 341.22460714285717,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 127.21325000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 239.91216666666662,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 87.35203333333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 175.7946323529412,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 339.883065,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 273.9387125,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 25.4284375,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 128.03333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.43500000000000005,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 67.0321375,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 89.406390625,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 208.05040250000002,\n \"hasRDI\" + : true,\n \"daily\" : 320.07754230769234,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 61.207636375,\n \"hasRDI\" : true,\n \"daily\" : 306.038181875,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.8448,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.78187337499999,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 39.88905187500001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 47.816761250000006,\n \"hasRDI\" : true,\n \"daily\" + : 15.938920416666669,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 35.757723750000004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 12.0590375,\n \"hasRDI\" : true,\n \"daily\" : 48.236149999999995,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 16.12346375,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 236.58131375,\n \"hasRDI\" + : true,\n \"daily\" : 473.16262750000004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1283.0,\n + \ \"hasRDI\" : true,\n \"daily\" : 427.6666666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3945.65975,\n + \ \"hasRDI\" : true,\n \"daily\" : 164.40248958333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 326.04037500000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.604037500000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 324.8095,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.202375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 4014.232125,\n + \ \"hasRDI\" : true,\n \"daily\" : 114.69234642857144,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.441846249999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 91.34359027777776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 22.4816375,\n \"hasRDI\" + : true,\n \"daily\" : 149.87758333333335,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2388.57225,\n \"hasRDI\" + : true,\n \"daily\" : 341.22460714285717,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1144.9192500000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 127.21325000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 143.94729999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 239.91216666666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3102805,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.35203333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9885087500000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 175.7946323529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.976613,\n + \ \"hasRDI\" : true,\n \"daily\" : 339.883065,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.47877425,\n + \ \"hasRDI\" : true,\n \"daily\" : 273.9387125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.71375,\n \"hasRDI\" : true,\n \"daily\" : 25.4284375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.71375,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.682,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.03333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.7400000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.43500000000000005,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.4064275,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.0321375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 71.5251125,\n + \ \"hasRDI\" : true,\n \"daily\" : 89.406390625,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7db0abb2a417276a5390ff8f50af31fd\",\n + \ \"label\" : \"Chicken Teriyaki\",\n \"image\" : \"https://www.edamam.com/web-img/b66/b66e7eb3b7a552912a8465b63429089d.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/chicken-teriyaki-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-teriyaki-7db0abb2a417276a5390ff8f50af31fd/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup water\", \"2 tbsps japanese + soy sauce\", \"2 tbsps dark brown sugar\", \"2 tbsps mirin\", \"4-6 skin-on + filleted (boneless) chicken thighs\", \"2 tbsps mild flavored honey (or maltose)\", + \"2 tbsps dark soy sauce\", \"2 tbsps sake\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1/2 cup water\",\n \"weight\" : 118.5\n }, + {\n \"text\" : \"2 tbsps japanese soy sauce\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tbsps dark brown sugar\",\n \"weight\" + : 18.125000000000004\n }, {\n \"text\" : \"2 tbsps mirin\",\n + \ \"weight\" : 29.8\n }, {\n \"text\" : \"4-6 skin-on filleted + (boneless) chicken thighs\",\n \"weight\" : 745.0\n }, {\n \"text\" + : \"2 tbsps mild flavored honey (or maltose)\",\n \"weight\" : 42.0\n + \ }, {\n \"text\" : \"2 tbsps dark soy sauce\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tbsps sake\",\n \"weight\" + : 29.1\n } ],\n \"calories\" : 1955.851,\n \"totalWeight\" + : 1046.5249999999999,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1955.851,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : + {\n \"label\" : \"Fat\",\n \"quantity\" : 124.1093,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.750519999999995,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6332500000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 51.75932,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 25.997470000000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 60.3495125,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.5960000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 52.331275000000005,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 52.075275000000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.72585,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 730.1,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4131.643,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 97.33375,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 188.65025000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1858.8712500000001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 6.3579875,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.288767499999999,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1281.8290000000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 171.35,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.21,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.56497,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2018099999999998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 35.9324475,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.69738125,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 32.331250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.619,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7450000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.5645,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 15.645000000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 97.79255,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 190.93738461538462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 168.75259999999997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.116504166666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.3840000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 257.4517,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.36666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 172.15179166666667,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.733375,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.16256250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 53.11060714285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.32215277777778,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 68.59178333333332,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 183.1184285714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.038888888888888,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.35,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 37.66466666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 70.69470588235293,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 179.6622375,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 134.86906249999998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 8.082812500000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 76.98333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.18625000000000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 7.8225,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 19.556250000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 124.1093,\n \"hasRDI\" : true,\n + \ \"daily\" : 190.93738461538462,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.750519999999995,\n \"hasRDI\" : true,\n \"daily\" : + 168.75259999999997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.6332500000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.75932,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.997470000000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 60.3495125,\n \"hasRDI\" : true,\n \"daily\" : 20.116504166666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.7535125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5960000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 2.3840000000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 52.331275000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 52.075275000000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 128.72585,\n \"hasRDI\" : + true,\n \"daily\" : 257.4517,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 730.1,\n \"hasRDI\" + : true,\n \"daily\" : 243.36666666666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 4131.643,\n \"hasRDI\" : + true,\n \"daily\" : 172.15179166666667,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.33375,\n \"hasRDI\" + : true,\n \"daily\" : 9.733375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 188.65025000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.16256250000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1858.8712500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 53.11060714285714,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.3579875,\n \"hasRDI\" : true,\n \"daily\" + : 35.32215277777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.288767499999999,\n \"hasRDI\" : true,\n \"daily\" + : 68.59178333333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1281.8290000000002,\n \"hasRDI\" : true,\n \"daily\" + : 183.1184285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 171.35,\n \"hasRDI\" : true,\n \"daily\" + : 19.038888888888888,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.21,\n \"hasRDI\" : true,\n \"daily\" + : 0.35,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.56497,\n \"hasRDI\" : true,\n \"daily\" : 37.66466666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2018099999999998,\n \"hasRDI\" : true,\n \"daily\" : 70.69470588235293,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 35.9324475,\n \"hasRDI\" : true,\n \"daily\" : 179.6622375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.69738125,\n \"hasRDI\" : true,\n \"daily\" : 134.86906249999998,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 32.331250000000004,\n \"hasRDI\" : true,\n \"daily\" + : 8.082812500000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.331250000000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.619,\n \"hasRDI\" : true,\n \"daily\" + : 76.98333333333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.7450000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.18625000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5645,\n \"hasRDI\" : true,\n \"daily\" + : 7.8225,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 15.645000000000001,\n \"hasRDI\" : true,\n \"daily\" : 19.556250000000002,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_10abfbc20e802c832453500bcc50e1bd\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/ce0/ce0601eba5b5a77a2dcb359a0051c68c.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-piccata-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-10abfbc20e802c832453500bcc50e1bd/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chicken breasts\", \"1/2 cup + flour\", \"3 tablespoons vegetable oil\", \"2 scallions white part only, minced\", + \"3 tablespoons lemon juice\", \"1 cup chicken stock\", \"1 teaspoon honey\", + \"2 tablespoons unsalted butter cut into small pieces\", \"2 tablespoons parsley + minced\", \"2 tablespoons capers\", \"1 teaspoon lemon zest finely zested\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 large chicken breasts\",\n + \ \"weight\" : 435.0\n }, {\n \"text\" : \"1/2 cup flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"3 tablespoons + vegetable oil\",\n \"weight\" : 42.0\n }, {\n \"text\" + : \"2 scallions white part only, minced\",\n \"weight\" : 30.0\n }, + {\n \"text\" : \"3 tablespoons lemon juice\",\n \"weight\" : + 42.0\n }, {\n \"text\" : \"1 cup chicken stock\",\n \"weight\" + : 240.0\n }, {\n \"text\" : \"1 teaspoon honey\",\n \"weight\" + : 7.062500000000001\n }, {\n \"text\" : \"2 tablespoons unsalted + butter cut into small pieces\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 tablespoons parsley minced\",\n \"weight\" : 7.6\n }, {\n + \ \"text\" : \"2 tablespoons capers\",\n \"weight\" : 17.2\n + \ }, {\n \"text\" : \"1 teaspoon lemon zest finely zested\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 1684.95,\n \"totalWeight\" + : 913.7625,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1684.95,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 109.137,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 29.838694999999998,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.709842,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 54.318454999999986,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 17.435209,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 68.74445,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 3.6208250000000004,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 11.753435,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.799725000000001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 104.82197750000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.66,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1035.3584999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 115.83275,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 151.10525000000004,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1464.6075000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.7416325,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 4.5739575,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 917.1265000000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 349.316,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.836912500000004,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.47188199999999997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6743457500000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 48.118775625,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.533803,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.5272800000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1660000000000004,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 11.54024,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 193.6267,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.2475,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 167.90307692307692,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 149.19347499999998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.914816666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.483300000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 209.64395500000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.55333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 43.13993749999999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.583275,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 37.77631250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.84592857142858,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 31.89795833333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 30.493049999999997,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 131.01807142857146,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.812888888888885,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.728187500000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 31.458799999999997,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 39.667397058823546,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 240.593878125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 126.69014999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.502812500000005,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 25.45466666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5415000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 57.70120000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 242.03337499999998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 109.137,\n \"hasRDI\" : true,\n \"daily\" : 167.90307692307692,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 29.838694999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 149.19347499999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 1.709842,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 54.318454999999986,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.435209,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.74445,\n \"hasRDI\" : true,\n \"daily\" : 22.914816666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.123625,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.6208250000000004,\n \"hasRDI\" + : true,\n \"daily\" : 14.483300000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 11.753435,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.799725000000001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 104.82197750000002,\n \"hasRDI\" + : true,\n \"daily\" : 209.64395500000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 346.66,\n + \ \"hasRDI\" : true,\n \"daily\" : 115.55333333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1035.3584999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.13993749999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 115.83275,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.583275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.10525000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.77631250000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1464.6075000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.84592857142858,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.7416325,\n \"hasRDI\" + : true,\n \"daily\" : 31.89795833333333,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.5739575,\n \"hasRDI\" : true,\n \"daily\" + : 30.493049999999997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 917.1265000000002,\n \"hasRDI\" : true,\n \"daily\" + : 131.01807142857146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 349.316,\n \"hasRDI\" : true,\n \"daily\" + : 38.812888888888885,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 35.836912500000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.728187500000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.47188199999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.458799999999997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.6743457500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.667397058823546,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.118775625,\n + \ \"hasRDI\" : true,\n \"daily\" : 240.593878125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.533803,\n + \ \"hasRDI\" : true,\n \"daily\" : 126.69014999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : true,\n \"daily\" : 22.502812500000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5272800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.45466666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1660000000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5415000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.54024,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.70120000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.6267,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.03337499999998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e46651453f86086ff2f4e3f842641066\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/eb5/eb5985a8a19a9fc72b0cf627282199ed.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-piccata-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-e46651453f86086ff2f4e3f842641066/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chicken breasts\", \"1/2 cup + flour\", \"3 tbsps vegetable oil\", \"2 scallions white part only, minced\", + \"3 tbsps lemon juice\", \"1 cup chicken stock\", \"1 tsp honey\", \"2 tbsps + unsalted butter cut into small pieces\", \"2 tbsps parsley minced\", \"2 tbsps + capers\", \"1 tsp lemon zest finely zested\" ],\n \"ingredients\" : [ + {\n \"text\" : \"2 large chicken breasts\",\n \"weight\" : 435.0\n + \ }, {\n \"text\" : \"1/2 cup flour\",\n \"weight\" : 62.5\n + \ }, {\n \"text\" : \"3 tbsps vegetable oil\",\n \"weight\" + : 42.0\n }, {\n \"text\" : \"2 scallions white part only, minced\",\n + \ \"weight\" : 30.0\n }, {\n \"text\" : \"3 tbsps lemon + juice\",\n \"weight\" : 42.0\n }, {\n \"text\" : \"1 cup + chicken stock\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"1 tsp honey\",\n \"weight\" : 7.062500000000001\n }, {\n \"text\" + : \"2 tbsps unsalted butter cut into small pieces\",\n \"weight\" : + 28.4\n }, {\n \"text\" : \"2 tbsps parsley minced\",\n \"weight\" + : 7.6\n }, {\n \"text\" : \"2 tbsps capers\",\n \"weight\" + : 17.2\n }, {\n \"text\" : \"1 tsp lemon zest finely zested\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 1684.95,\n \"totalWeight\" + : 913.7625,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1684.95,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 109.137,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 29.838694999999998,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.709842,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 54.318454999999986,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 17.435209,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 68.74445,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 3.6208250000000004,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 11.753435,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.799725000000001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 104.82197750000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.66,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1035.3584999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 115.83275,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 151.10525000000004,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1464.6075000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.7416325,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 4.5739575,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 917.1265000000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 349.316,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.836912500000004,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.47188199999999997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6743457500000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 48.118775625,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.533803,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 90.01125000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.5272800000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1660000000000004,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 11.54024,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 193.6267,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.2475,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 167.90307692307692,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 149.19347499999998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.914816666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.483300000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 209.64395500000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.55333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 43.13993749999999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.583275,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 37.77631250000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.84592857142858,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 31.89795833333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 30.493049999999997,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 131.01807142857146,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.812888888888885,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.728187500000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 31.458799999999997,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 39.667397058823546,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 240.593878125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 126.69014999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.502812500000005,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 25.45466666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5415000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 57.70120000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 242.03337499999998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 109.137,\n \"hasRDI\" : true,\n \"daily\" : 167.90307692307692,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 29.838694999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 149.19347499999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 1.709842,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 54.318454999999986,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.435209,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.74445,\n \"hasRDI\" : true,\n \"daily\" : 22.914816666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.123625,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.6208250000000004,\n \"hasRDI\" + : true,\n \"daily\" : 14.483300000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 11.753435,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.799725000000001,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 104.82197750000002,\n \"hasRDI\" + : true,\n \"daily\" : 209.64395500000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 346.66,\n + \ \"hasRDI\" : true,\n \"daily\" : 115.55333333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1035.3584999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.13993749999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 115.83275,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.583275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.10525000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.77631250000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1464.6075000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.84592857142858,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.7416325,\n \"hasRDI\" + : true,\n \"daily\" : 31.89795833333333,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.5739575,\n \"hasRDI\" : true,\n \"daily\" + : 30.493049999999997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 917.1265000000002,\n \"hasRDI\" : true,\n \"daily\" + : 131.01807142857146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 349.316,\n \"hasRDI\" : true,\n \"daily\" + : 38.812888888888885,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 35.836912500000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.728187500000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.47188199999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.458799999999997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.6743457500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.667397058823546,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.118775625,\n + \ \"hasRDI\" : true,\n \"daily\" : 240.593878125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.533803,\n + \ \"hasRDI\" : true,\n \"daily\" : 126.69014999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : true,\n \"daily\" : 22.502812500000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 90.01125000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5272800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.45466666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1660000000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5415000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.54024,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.70120000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.6267,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.03337499999998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3da1169eb633a5e4607890ebf7dee89f\",\n + \ \"label\" : \"Grilled Butterflied Chicken Recipe\",\n \"image\" + : \"https://www.edamam.com/web-img/7a2/7a2f41a7891e8a8f8a087a96930c6463.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2012/08/grilled-butterflied-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/grilled-butterflied-chicken-recipe-3da1169eb633a5e4607890ebf7dee89f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + 3 1/2 to 4 pounds\", \"Kosher salt and freshly ground black pepper\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 whole chicken, 3 1/2 to + 4 pounds\",\n \"weight\" : 1700.9713875\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper\",\n \"weight\" : 10.205828325\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 5.1029141625\n } ],\n \"calories\" : 2499.628483072875,\n + \ \"totalWeight\" : 1714.2190942311247,\n \"totalTime\" : 60.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2499.628483072875,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 174.35943285279748,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 49.92310198999199,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.121960727195,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 72.21332845006087,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.41106263839175,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 3.2633136069187505,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.2910372831125,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.03265865064,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 215.66905387248374,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 867.495407625,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3967.4416670301102,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 151.79331974134493,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 240.13953984356124,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2254.557739840115,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 10.932315672155212,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.221122590952376,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1708.35360332175,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 475.60860965887497,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.506568696,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.6995074733954999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.3971778976925,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 78.72280987231237,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.063161382462875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 70.267128017625,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 70.267128017625,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.58564768485,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.313321087,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.52305193779,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 25.703378636512497,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 124.98142415364374,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.2452813119961,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 249.61550994995997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.08777120230625,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.164149132450001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 431.3381077449675,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 289.165135875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 165.31006945958794,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 15.179331974134493,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 60.03488496089031,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 64.4159354240033,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 60.73508706752895,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 101.47415060634918,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 244.05051476024997,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 52.845401073208336,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.844281159999998,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.63383155969999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.18693515838235,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 393.6140493615618,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 203.15806912314375,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 17.56678200440625,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 59.7607947475,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.57833027175,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 17.615259688949997,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.12922329564062,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 174.35943285279748,\n \"hasRDI\" : true,\n \"daily\" + : 268.2452813119961,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 49.92310198999199,\n \"hasRDI\" + : true,\n \"daily\" : 249.61550994995997,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.121960727195,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.21332845006087,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.41106263839175,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 3.2633136069187505,\n \"hasRDI\" : true,\n \"daily\" : 1.08777120230625,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9722763238062504,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.2910372831125,\n \"hasRDI\" + : true,\n \"daily\" : 5.164149132450001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.03265865064,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 215.66905387248374,\n \"hasRDI\" : true,\n \"daily\" : 431.3381077449675,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 867.495407625,\n \"hasRDI\" : true,\n \"daily\" + : 289.165135875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3967.4416670301102,\n \"hasRDI\" : true,\n \"daily\" + : 165.31006945958794,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 151.79331974134493,\n \"hasRDI\" : true,\n \"daily\" + : 15.179331974134493,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 240.13953984356124,\n \"hasRDI\" : true,\n \"daily\" + : 60.03488496089031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2254.557739840115,\n \"hasRDI\" : true,\n \"daily\" + : 64.4159354240033,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.932315672155212,\n \"hasRDI\" : true,\n \"daily\" + : 60.73508706752895,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.221122590952376,\n \"hasRDI\" : true,\n \"daily\" + : 101.47415060634918,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1708.35360332175,\n \"hasRDI\" : true,\n \"daily\" + : 244.05051476024997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 475.60860965887497,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.845401073208336,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.506568696,\n \"hasRDI\" : true,\n \"daily\" + : 30.844281159999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6995074733954999,\n \"hasRDI\" : true,\n + \ \"daily\" : 46.63383155969999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3971778976925,\n \"hasRDI\" + : true,\n \"daily\" : 82.18693515838235,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 78.72280987231237,\n + \ \"hasRDI\" : true,\n \"daily\" : 393.6140493615618,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.063161382462875,\n + \ \"hasRDI\" : true,\n \"daily\" : 203.15806912314375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.267128017625,\n \"hasRDI\" : true,\n \"daily\" : 17.56678200440625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.267128017625,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.58564768485,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7607947475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.313321087,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.57833027175,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.52305193779,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.615259688949997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.703378636512497,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.12922329564062,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e29feeb250c3cc0f6eb487b7cae5d8b1\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/93e/93e5e22c8792bfbc9fa3654207347c9c.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/5354/recipes-chicken-piccata.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-e29feeb250c3cc0f6eb487b7cae5d8b1/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 boneless, + skinless chicken breast halves, patted dry (2 1/2 to 3 pounds total)\", \"Kosher + salt and freshly ground black pepper\", \"1/2 cup all-purpose flour\", \"2 + tablespoons olive oil\", \"4 tablespoons unsalted butter\", \"2 tablespoons + fresh lemon juice\", \"1 tablespoon capers, drained\", \"2 tablespoons chopped + fresh flat-leaf parsley\" ],\n \"ingredients\" : [ {\n \"text\" + : \"4 boneless, skinless chicken breast halves, patted dry (2 1/2 to 3 pounds + total)\",\n \"weight\" : 348.0\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 3.231\n }, + {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n \"weight\" + : 1.6155\n }, {\n \"text\" : \"1/2 cup all-purpose flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"2 tablespoons + olive oil\",\n \"weight\" : 27.0\n }, {\n \"text\" : \"4 + tablespoons unsalted butter\",\n \"weight\" : 56.8\n }, {\n \"text\" + : \"2 tablespoons fresh lemon juice\",\n \"weight\" : 28.0\n }, + {\n \"text\" : \"1 tablespoon capers, drained\",\n \"weight\" + : 8.6\n }, {\n \"text\" : \"2 tablespoons chopped fresh flat-leaf + parsley\",\n \"weight\" : 7.6\n } ],\n \"calories\" : 1305.9649050000003,\n + \ \"totalWeight\" : 542.3978744593117,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1305.9649050000003,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 83.0544453,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 35.025056760000005,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.8862639999999997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 34.132949544999995,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 6.36084969,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 51.59456225000001,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.7062215,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.0186292,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 85.93358045,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 376.15999999999997,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1256.0277929400006,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 63.98943487023479,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 123.4293287445931,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1339.133584956745,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 5.151776885715728,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 2.9993668244593112,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 832.43249,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 445.9061849999999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 21.3138,\n \"unit\" : + \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.83713374,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.9705318999999999,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.321661165,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 2.877883105,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 234.303635,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 70.553635,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 96.25,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.82736,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.8519999999999999,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 7.4762912,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 150.5136735,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 65.29824525000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 127.7760696923077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 175.12528380000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 17.19818741666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.824886,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 171.8671609,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 125.38666666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 52.334491372500025,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.398943487023479,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 30.857332186148277,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 38.26095957019272,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 28.620982698420715,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.995778829728742,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 118.91892714285714,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.545131666666656,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 35.523,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.808916,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 57.090111764705874,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 186.608305825,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 143.89415525,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 58.57590875000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 13.789333333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.21299999999999997,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 37.381456,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 188.142091875,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 83.0544453,\n \"hasRDI\" : true,\n + \ \"daily\" : 127.7760696923077,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 35.025056760000005,\n \"hasRDI\" : true,\n \"daily\" : + 175.12528380000003,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.8862639999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 34.132949544999995,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.36084969,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 51.59456225000001,\n \"hasRDI\" : true,\n \"daily\" : 17.19818741666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 48.88834075000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 2.7062215,\n \"hasRDI\" + : true,\n \"daily\" : 10.824886,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.0186292,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 85.93358045,\n + \ \"hasRDI\" : true,\n \"daily\" : 171.8671609,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 376.15999999999997,\n \"hasRDI\" : true,\n \"daily\" : 125.38666666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1256.0277929400006,\n \"hasRDI\" : true,\n \"daily\" : 52.334491372500025,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.98943487023479,\n \"hasRDI\" : true,\n \"daily\" : 6.398943487023479,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 123.4293287445931,\n \"hasRDI\" : true,\n \"daily\" : 30.857332186148277,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1339.133584956745,\n \"hasRDI\" : true,\n \"daily\" : 38.26095957019272,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.151776885715728,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.620982698420715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.9993668244593112,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.995778829728742,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 832.43249,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.91892714285714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 445.9061849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.545131666666656,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.3138,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.523,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.83713374,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.808916,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9705318999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.090111764705874,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.321661165,\n + \ \"hasRDI\" : true,\n \"daily\" : 186.608305825,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.877883105,\n + \ \"hasRDI\" : true,\n \"daily\" : 143.89415525,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 234.303635,\n \"hasRDI\" : true,\n \"daily\" : 58.57590875000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.553635,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 96.25,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.82736,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.789333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8519999999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.21299999999999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.4762912,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.381456,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 150.5136735,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.142091875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_d6cf07aafab2c259d298d3f83768af36\",\n + \ \"label\" : \"Chicken Gravy\",\n \"image\" : \"https://www.edamam.com/web-img/fd1/fd1afed1849c44f5185720394e363b4e.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/332664/chicken-gravy\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-gravy-d6cf07aafab2c259d298d3f83768af36/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"4 cups chicken bones and wings\", \"2 tablespoons unsalted butter, softened\", + \"2 tablespoons all-purpose flour\", \"4 cups homemade bruce and eric bromberg's + chicken stock, or store-bought low-sodium chicken stock\", \"1 tablespoon + fresh thyme leaves\", \"Coarse salt and freshly ground black pepper\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"4 cups chicken bones and + wings\",\n \"weight\" : 568.0\n }, {\n \"text\" : \"2 tablespoons + unsalted butter, softened\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 tablespoons all-purpose flour\",\n \"weight\" : 15.6\n }, + {\n \"text\" : \"4 cups homemade bruce and eric bromberg's chicken + stock, or store-bought low-sodium chicken stock\",\n \"weight\" : 960.0\n + \ }, {\n \"text\" : \"1 tablespoon fresh thyme leaves\",\n \"weight\" + : 7.500000000000001\n }, {\n \"text\" : \"Coarse salt and freshly + ground black pepper\",\n \"weight\" : 9.477\n }, {\n \"text\" + : \"Coarse salt and freshly ground black pepper\",\n \"weight\" : 4.7385\n + \ } ],\n \"calories\" : 1092.360635,\n \"totalWeight\" : 1590.8628259378193,\n + \ \"totalTime\" : 270.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1092.360635,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 68.9885951,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.47207692,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.9309519999999999,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 8.655028515,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 2.22543023,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 28.305420750000003,\n \"unit\" + : \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 2.6700405000000007,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 1.3374864000000002,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 84.44221015,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 242.82,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3684.1149469800007,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 100.51239322507664,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 33.7690782593782,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 958.2876110750256,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.920238625594804,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 1.2935224759378194,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 327.10083,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 213.38539499999996,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 12.007500000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.13259758000000002,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.41857429999999995,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 14.275913055000002,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 0.14360503500000002,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 50.428545,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 9.556545,\n \"unit\" : \"µg\"\n },\n + \ \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n \"quantity\" + : 24.024,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.00828,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.42599999999999993,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.7440403999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 9.7917245,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 54.61803175,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 106.13630015384615,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 167.3603846,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 9.435140250000002,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 10.680162000000003,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 168.8844203,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 80.94,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 153.50478945750004,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 10.051239322507662,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 8.44226956484455,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 27.379646030715016,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 66.22354791997114,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 8.623483172918798,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 46.72869,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 23.70948833333333,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 20.012500000000003,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 8.839838666666667,\n \"unit\" : + \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 24.622017647058822,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 71.379565275,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 7.180251750000001,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 12.607136250000002,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 16.804666666666666,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.10649999999999998,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 3.7202019999999996,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 12.239655625000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 68.9885951,\n \"hasRDI\" : true,\n \"daily\" : 106.13630015384615,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 33.47207692,\n \"hasRDI\" : true,\n \"daily\" + : 167.3603846,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9309519999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.655028515,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.22543023,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 28.305420750000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.435140250000002,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.635380250000004,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.6700405000000007,\n \"hasRDI\" + : true,\n \"daily\" : 10.680162000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.3374864000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 84.44221015,\n \"hasRDI\" : true,\n \"daily\" : 168.8844203,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 242.82,\n \"hasRDI\" : true,\n \"daily\" + : 80.94,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3684.1149469800007,\n \"hasRDI\" : true,\n \"daily\" + : 153.50478945750004,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.51239322507664,\n \"hasRDI\" : true,\n \"daily\" + : 10.051239322507662,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 33.7690782593782,\n \"hasRDI\" : true,\n \"daily\" + : 8.44226956484455,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 958.2876110750256,\n \"hasRDI\" : true,\n \"daily\" + : 27.379646030715016,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.920238625594804,\n \"hasRDI\" : true,\n \"daily\" + : 66.22354791997114,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.2935224759378194,\n \"hasRDI\" : true,\n \"daily\" + : 8.623483172918798,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 327.10083,\n \"hasRDI\" : true,\n \"daily\" + : 46.72869,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin + A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 213.38539499999996,\n \"hasRDI\" : true,\n \"daily\" + : 23.70948833333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 12.007500000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.012500000000003,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.13259758000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 8.839838666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.41857429999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.622017647058822,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.275913055000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.379565275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.14360503500000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.180251750000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 50.428545,\n \"hasRDI\" : true,\n \"daily\" : 12.607136250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.556545,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.024,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.00828,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.804666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.42599999999999993,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.10649999999999998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7440403999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.7202019999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.7917245,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.239655625000001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_80d017d0e6fa3024f60a2ace10869a8b\",\n + \ \"label\" : \"Chicken Meatballs\",\n \"image\" : \"https://www.edamam.com/web-img/f63/f634a87784722694d9fa17c50a3a3c4f.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/84147/recipes-chicken-meatballs.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-meatballs-80d017d0e6fa3024f60a2ace10869a8b/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 tablespoons olive oil\", \"2 pounds + ground chicken, preferably thigh meat\", \"2 large eggs\", \"1/2 cup fresh + bread crumbs\", \"1/2 cup chopped fresh parsley\", \"1/4 cup dry white wine\", + \"1 tablespoon salt\", \"1 teaspoon ground fennel, preferably freshly ground + from fennel seeds\", \"1 teaspoon freshly ground pepper\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 tablespoons olive oil\",\n \"weight\" + : 27.0\n }, {\n \"text\" : \"2 pounds ground chicken, preferably + thigh meat\",\n \"weight\" : 907.18474\n }, {\n \"text\" + : \"2 large eggs\",\n \"weight\" : 100.0\n }, {\n \"text\" + : \"1/2 cup fresh bread crumbs\",\n \"weight\" : 54.0\n }, {\n + \ \"text\" : \"1/2 cup chopped fresh parsley\",\n \"weight\" + : 30.0\n }, {\n \"text\" : \"1/4 cup dry white wine\",\n \"weight\" + : 36.75\n }, {\n \"text\" : \"1 tablespoon salt\",\n \"weight\" + : 18.0\n }, {\n \"text\" : \"1 teaspoon ground fennel, preferably + freshly ground from fennel seeds\",\n \"weight\" : 2.0\n }, {\n + \ \"text\" : \"1 teaspoon freshly ground pepper\",\n \"weight\" + : 2.9\n } ],\n \"calories\" : 1829.4341620000002,\n \"totalWeight\" + : 1163.5028834712195,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1829.4341620000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 83.63652599399998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 25.6281806312,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.30596185,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 46.988357974,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 8.776824694,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" : + {\n \"label\" : \"Carbs\",\n \"quantity\" : 46.43267168800001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 4.9497,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.34436,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 217.61781273600002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 943.5263862,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2697.1724911752012,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 355.3788706330926,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 257.0994768347122,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3892.9160316776984,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 26.093280939455024,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 51.62897257747122,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2294.0278857999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 305.3666948,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 40.32,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 1.326857292,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 2.2640265580000003,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 48.57921524380001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.451363323200001,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 209.2360422,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 134.1760422,\n \"unit\" : \"µg\"\n + \ },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 44.28,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 21.672093598000004,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.90718474,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 6.855792532,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 530.6200711,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 91.47170810000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 128.67157845230767,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 128.14090315599998,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.477557229333337,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.7988,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 435.23562547200004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 314.5087954,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 112.38218713230005,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 35.537887063309256,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 64.27486920867806,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 111.22617233364853,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 144.96267188586125,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 344.19315051647476,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 327.71826939999994,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 33.92963275555556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 67.2,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 88.4571528,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 133.17803282352943,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 242.89607621900004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 272.56816616000003,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 52.30901055,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 361.2015599666667,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.726796185,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 34.27896266,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 663.2750888749999,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 83.63652599399998,\n \"hasRDI\" : true,\n \"daily\" + : 128.67157845230767,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 25.6281806312,\n \"hasRDI\" + : true,\n \"daily\" : 128.14090315599998,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 2.30596185,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.988357974,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.776824694,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 46.43267168800001,\n \"hasRDI\" : true,\n \"daily\" : 15.477557229333337,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 41.48297168800001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.9497,\n \"hasRDI\" : + true,\n \"daily\" : 19.7988,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 4.34436,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 217.61781273600002,\n + \ \"hasRDI\" : true,\n \"daily\" : 435.23562547200004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 943.5263862,\n \"hasRDI\" : true,\n \"daily\" : 314.5087954,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2697.1724911752012,\n \"hasRDI\" : true,\n \"daily\" : 112.38218713230005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 355.3788706330926,\n \"hasRDI\" : true,\n \"daily\" : 35.537887063309256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.0994768347122,\n \"hasRDI\" : true,\n \"daily\" : 64.27486920867806,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3892.9160316776984,\n \"hasRDI\" : true,\n \"daily\" : 111.22617233364853,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.093280939455024,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.96267188586125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.62897257747122,\n + \ \"hasRDI\" : true,\n \"daily\" : 344.19315051647476,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2294.0278857999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 327.71826939999994,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 305.3666948,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.92963275555556,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.32,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.2,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.326857292,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.4571528,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2640265580000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 133.17803282352943,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 48.57921524380001,\n + \ \"hasRDI\" : true,\n \"daily\" : 242.89607621900004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.451363323200001,\n + \ \"hasRDI\" : true,\n \"daily\" : 272.56816616000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 209.2360422,\n \"hasRDI\" : true,\n \"daily\" : 52.30901055,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 134.1760422,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 44.28,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.672093598000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 361.2015599666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.90718474,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.726796185,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.855792532,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.27896266,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 530.6200711,\n + \ \"hasRDI\" : true,\n \"daily\" : 663.2750888749999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3617247b4850a38df81556e1f506992e\",\n + \ \"label\" : \"Chicken Tsukune (Japanese Chicken Sausage)\",\n \"image\" + : \"https://www.edamam.com/web-img/c30/c303babe2c5d94693167b3647133cb04.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/tsukune\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-tsukune-japanese-chicken-sausage-3617247b4850a38df81556e1f506992e/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 small dried + shiitake mushroom\", \"1 tsp grated ginger\", \"1 scallion minced\", \"4 skin + on chicken thighs (about 1.5 lbs)\", \"1 tbs mirin\", \"2 tsp sugar\", \"1 + tsp soy sauce\", \"1 tsp kosher salt (less if you use table salt)\", \"Smoked + sea salt and lime wedges for serving\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 small dried shiitake mushroom\",\n \"weight\" : 2.7\n }, + {\n \"text\" : \"1 tsp grated ginger\",\n \"weight\" : 2.0\n + \ }, {\n \"text\" : \"1 scallion minced\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"4 skin on chicken thighs (about 1.5 + lbs)\",\n \"weight\" : 680.388555\n }, {\n \"text\" : \"1 + tbs mirin\",\n \"weight\" : 14.9\n }, {\n \"text\" : \"2 + tsp sugar\",\n \"weight\" : 8.4\n }, {\n \"text\" : \"1 + tsp soy sauce\",\n \"weight\" : 5.3\n }, {\n \"text\" : + \"1 tsp kosher salt (less if you use table salt)\",\n \"weight\" : + 4.854166666666667\n } ],\n \"calories\" : 1122.2360945849998,\n + \ \"totalWeight\" : 731.3054298392497,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1122.236094585,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 79.20921728984999,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 21.565348759740004,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.404831190225,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 33.0736290019,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 16.544545841295,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 14.086679971250001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.7829,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 8.847570000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 8.3832,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.7556125002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 466.74654873000003,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1694.5506608814,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 47.96208915641993,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 97.99512667839251,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1089.87020652714,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 3.623675208769524,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.46857552648925,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 771.607021945,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 117.042557355,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.0145,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.366277551605,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.747905383325,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 22.618417468125003,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.698912800095,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 29.251159655000002,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 29.251159655000002,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.9528863287,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.5815719885,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 1.0878711758500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 41.0537117585,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 56.111804729250004,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 121.8603342920769,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 107.82674379870002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.695559990416667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.1316,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.5112250004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 155.58218291,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 70.606277536725,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 4.7962089156419925,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 24.49878166959813,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 31.139148757918285,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 20.131528937608465,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 43.123836843261664,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 110.22957456357143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.004728595000001,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 5.024166666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 24.41850344033333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 43.994434313235296,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 113.09208734062501,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 84.94564000475,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 7.3127899137500005,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 49.214772145000005,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.145392997125,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 5.439355879250001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 51.317139698125004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 79.20921728984999,\n \"hasRDI\" : true,\n \"daily\" + : 121.8603342920769,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 21.565348759740004,\n \"hasRDI\" + : true,\n \"daily\" : 107.82674379870002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.404831190225,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.0736290019,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.544545841295,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 14.086679971250001,\n \"hasRDI\" : true,\n \"daily\" : 4.695559990416667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 13.303779971250002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.7829,\n \"hasRDI\" : + true,\n \"daily\" : 3.1316,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 8.847570000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.3832,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 79.7556125002,\n + \ \"hasRDI\" : true,\n \"daily\" : 159.5112250004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 466.74654873000003,\n \"hasRDI\" : true,\n \"daily\" : 155.58218291,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1694.5506608814,\n \"hasRDI\" : true,\n \"daily\" : 70.606277536725,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 47.96208915641993,\n \"hasRDI\" : true,\n \"daily\" : 4.7962089156419925,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 97.99512667839251,\n \"hasRDI\" : true,\n \"daily\" : 24.49878166959813,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1089.87020652714,\n \"hasRDI\" : true,\n \"daily\" : 31.139148757918285,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.623675208769524,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.131528937608465,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.46857552648925,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.123836843261664,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 771.607021945,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.22957456357143,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 117.042557355,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.004728595000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0145,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.024166666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.366277551605,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.41850344033333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.747905383325,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.994434313235296,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.618417468125003,\n + \ \"hasRDI\" : true,\n \"daily\" : 113.09208734062501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.698912800095,\n + \ \"hasRDI\" : true,\n \"daily\" : 84.94564000475,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.251159655000002,\n \"hasRDI\" : true,\n \"daily\" : 7.3127899137500005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.251159655000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9528863287,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.214772145000005,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5815719885,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.145392997125,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0878711758500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.439355879250001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0537117585,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.317139698125004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_589c4f7c38014675ad5a3a848c4aa370\",\n + \ \"label\" : \"Chicken Stock\",\n \"image\" : \"https://www.edamam.com/web-img/0ec/0ecc99cda650d5da2a2285231c066b84.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Stock\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stock-589c4f7c38014675ad5a3a848c4aa370/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 3-lb. chicken\", + \"2 carrots, peeled and roughly chopped\", \"2 stalks celery\", \"1 medium + yellow onion, peeled\", \"6 black peppercorns\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 3-lb. chicken\",\n \"weight\" : 1360.77711\n + \ }, {\n \"text\" : \"2 carrots, peeled and roughly chopped\",\n + \ \"weight\" : 122.0\n }, {\n \"text\" : \"2 stalks celery\",\n + \ \"weight\" : 80.0\n }, {\n \"text\" : \"1 medium yellow + onion, peeled\",\n \"weight\" : 110.0\n }, {\n \"text\" + : \"6 black peppercorns\",\n \"weight\" : 1.7999999999999998\n } + ],\n \"calories\" : 84.03176539279998,\n \"totalWeight\" : 66.98308440000001,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 84.0317653928,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 5.598077691235201,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 1.6012660615952,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.035902743270240005,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 2.3124310532608003,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 1.2052284977616001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 1.0195480000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.280856,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.46121280000000003,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 7.007788354912001,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 27.759853044,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 32.026796174400005,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 8.292805113120002,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 8.9033474784,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 101.27170967088001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 0.370389436528,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 0.5090808998352001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 58.275071966240006,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 56.64682633072001,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 1.304930198272,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.0282024424352,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 0.0503877648704,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 2.58140083402992,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 0.144137900872,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 5.14822824352,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 5.14822824352,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.1147407259152,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.074026274784,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.153516212176,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 2.2724210608799997,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4.201588269639999,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 8.612427217284925,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 8.006330307975999,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.33984933333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.123424,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 14.015576709824002,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 9.253284348000001,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1.3344498406000003,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 0.8292805113120002,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 2.2258368696,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2.893477419168,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 2.0577190918222223,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.393872665568001,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 8.325010280891428,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 6.294091814524446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 2.174883663786667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.8801628290133332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.963986168847059,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 12.9070041701496,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 7.2068950436,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 1.28705706088,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.9123454319200002,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.018506568696,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.76758106088,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 2.8405263261,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 5.598077691235201,\n \"hasRDI\" : true,\n \"daily\" : 8.612427217284925,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 1.6012660615952,\n \"hasRDI\" : true,\n \"daily\" + : 8.006330307975999,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.035902743270240005,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.3124310532608003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2052284977616001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 1.0195480000000001,\n \"hasRDI\" : true,\n \"daily\" : 0.33984933333333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7386920000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.280856,\n \"hasRDI\" + : true,\n \"daily\" : 1.123424,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.46121280000000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 7.007788354912001,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.015576709824002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 27.759853044,\n \"hasRDI\" : true,\n \"daily\" : 9.253284348000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 32.026796174400005,\n \"hasRDI\" : true,\n \"daily\" : 1.3344498406000003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.292805113120002,\n \"hasRDI\" : true,\n \"daily\" : 0.8292805113120002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.9033474784,\n \"hasRDI\" : true,\n \"daily\" : 2.2258368696,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.27170967088001,\n \"hasRDI\" : true,\n \"daily\" : 2.893477419168,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.370389436528,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.0577190918222223,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.5090808998352001,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.393872665568001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.275071966240006,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.325010280891428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 56.64682633072001,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.294091814524446,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.304930198272,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.174883663786667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0282024424352,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.8801628290133332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0503877648704,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.963986168847059,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.58140083402992,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.9070041701496,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.144137900872,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.2068950436,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.14822824352,\n \"hasRDI\" : true,\n \"daily\" : 1.28705706088,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.14822824352,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.1147407259152,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.9123454319200002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.074026274784,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.018506568696,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.153516212176,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.76758106088,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2724210608799997,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.8405263261,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_2463f2482609d7a471dbbf3b268bd956\",\n + \ \"label\" : \"Catalan Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/4d9/4d9084cbc170789caa9e997108b595de.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/columns/breadwinner/article/how-to-get-your-kids-to-eat-sauce-let-them-cook-it-themselves\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/catalan-chicken-2463f2482609d7a471dbbf3b268bd956/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 whole 4-pound chicken, quartered\", + \"8 slices bacon\", \"30 cloves garlic\", \"3 lemons, peeled, rinds thinly + sliced and reserved\", \"½ cup Banyuls or another fortified dessert wine\", + \"1 cup veal or chicken stock\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 whole 4-pound chicken, quartered\",\n \"weight\" : 920.0\n }, + {\n \"text\" : \"8 slices bacon\",\n \"weight\" : 224.0\n }, + {\n \"text\" : \"30 cloves garlic\",\n \"weight\" : 90.0\n }, + {\n \"text\" : \"3 lemons, peeled, rinds thinly sliced and reserved\",\n + \ \"weight\" : 174.0\n }, {\n \"text\" : \"½ cup Banyuls + or another fortified dessert wine\",\n \"weight\" : 51.5\n }, + {\n \"text\" : \"1 cup veal or chicken stock\",\n \"weight\" + : 240.0\n } ],\n \"calories\" : 3265.44,\n \"totalWeight\" + : 1699.5,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 3265.4400000000005,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 231.3096,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 70.3534,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.19032,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 97.8972,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 45.063120000000005,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 64.36035,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.7620000000000005,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 15.2887,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 213.17780000000002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 845.0400000000002,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2493.4950000000003,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 331.86,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 261.535,\n \"unit\" : + \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3082.7200000000003,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.4,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 16.21565,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1909.935,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 405.98,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 135.49999999999997,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.5131100000000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.63251,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 76.29377500000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.21294,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 89.04,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 89.04,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 3.9720000000000004,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 2.7360000000000007,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.1282000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 15.81,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 163.27200000000002,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 355.8609230769231,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 351.76699999999994,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 21.45345,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 27.048000000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 426.35560000000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 281.68000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.89562500000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.186,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 65.38375,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 88.07771428571428,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 68.88888888888889,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 108.10433333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 272.84785714285715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 45.10888888888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 225.8333333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 100.87400000000001,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 96.02999999999999,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 381.4688750000001,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 260.647,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 22.26,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 66.2,\n \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6840000000000002,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 20.641000000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 19.7625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 231.3096,\n \"hasRDI\" : true,\n \"daily\" : 355.8609230769231,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.3534,\n \"hasRDI\" : true,\n \"daily\" + : 351.76699999999994,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.19032,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 97.8972,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 45.063120000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 64.36035,\n \"hasRDI\" : true,\n \"daily\" : 21.45345,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 57.598349999999996,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.7620000000000005,\n \"hasRDI\" + : true,\n \"daily\" : 27.048000000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 15.2887,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 213.17780000000002,\n \"hasRDI\" : true,\n \"daily\" : 426.35560000000004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 845.0400000000002,\n \"hasRDI\" : true,\n \"daily\" + : 281.68000000000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2493.4950000000003,\n \"hasRDI\" : true,\n \"daily\" + : 103.89562500000001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 331.86,\n \"hasRDI\" : true,\n \"daily\" + : 33.186,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 261.535,\n \"hasRDI\" : true,\n \"daily\" : 65.38375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3082.7200000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.07771428571428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.4,\n \"hasRDI\" + : true,\n \"daily\" : 68.88888888888889,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.21565,\n \"hasRDI\" : true,\n \"daily\" + : 108.10433333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1909.935,\n \"hasRDI\" : true,\n \"daily\" + : 272.84785714285715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 405.98,\n \"hasRDI\" : true,\n \"daily\" + : 45.10888888888889,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 135.49999999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 225.8333333333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.5131100000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 100.87400000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.63251,\n \"hasRDI\" + : true,\n \"daily\" : 96.02999999999999,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.29377500000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 381.4688750000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.21294,\n + \ \"hasRDI\" : true,\n \"daily\" : 260.647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.04,\n \"hasRDI\" : true,\n \"daily\" : 22.26,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 89.04,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.9720000000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.2,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.7360000000000007,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.6840000000000002,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.1282000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.641000000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 15.81,\n \"hasRDI\" : true,\n \"daily\" + : 19.7625,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6b71506eaed4102c0b97dce1eaddd9a6\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/52c/52cdd87b67b161cce8e8a3f15237368f.jpg\",\n + \ \"source\" : \"Pioneer Woman\",\n \"url\" : \"http://thepioneerwoman.com/cooking/2012/08/roast-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-6b71506eaed4102c0b97dce1eaddd9a6/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole Chicken, + Rinsed And Patted Dry\", \"3/4 cups Butter, Softened\", \"3 whole Lemons\", + \"4 sprigs Rosemary\", \"Salt And Pepper, to taste\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole Chicken, Rinsed And Patted Dry\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"3/4 cups Butter, Softened\",\n \"weight\" + : 170.25\n }, {\n \"text\" : \"3 whole Lemons\",\n \"weight\" + : 174.0\n }, {\n \"text\" : \"4 sprigs Rosemary\",\n \"weight\" + : 20.0\n }, {\n \"text\" : \"Salt And Pepper, to taste\",\n \"weight\" + : 7.7055\n }, {\n \"text\" : \"Salt And Pepper, to taste\",\n + \ \"weight\" : 3.85275\n } ],\n \"calories\" : 3285.0229024999994,\n + \ \"totalWeight\" : 1294.0970715157387,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3285.0229025,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 278.4613746500001,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 127.79511028,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 6.4731950000000005,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 93.4758643225,\n \"unit\" : \"g\"\n },\n \"FAPU\" : + {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : 35.270217945000006,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 22.922783625,\n \"unit\" : + \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 8.66674575,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.4768076,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : + {\n \"label\" : \"Protein\",\n \"quantity\" : 175.54342572500002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1056.0375000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2995.4571830700006,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 269.2063196637773,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 226.17314571515737,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2205.0625932212592,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.081933286001941,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.54746704651574,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1440.3873449999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1573.6902425,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 111.3,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.6414734700000001,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 1.23401995,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 63.04114193250001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.4427190025,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 101.9024675,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.9024675,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.1414250000000004,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.393750000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 7.0108686,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.02445175,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 164.251145125,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 428.402114846154,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 638.9755514000001,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.640927875000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 34.666983,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 351.08685145000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 352.01250000000005,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 124.81071596125003,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 26.920631966377734,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 56.543286428789344,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 63.001788377750266,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 61.566296033344116,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 83.64978031010493,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 205.7696207142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 174.8544713888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 185.5,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 42.76489800000001,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 72.58940882352941,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.20570966250006,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 172.135950125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 25.475616875,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 52.35708333333334,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.0984375000000002,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 35.054343,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 40.0305646875,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 278.4613746500001,\n \"hasRDI\" : true,\n \"daily\" : 428.402114846154,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 127.79511028,\n \"hasRDI\" : true,\n \"daily\" + : 638.9755514000001,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 6.4731950000000005,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 93.4758643225,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.270217945000006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.922783625,\n \"hasRDI\" : true,\n \"daily\" : 7.640927875000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.256037875,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 8.66674575,\n \"hasRDI\" + : true,\n \"daily\" : 34.666983,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 4.4768076,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 175.54342572500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 351.08685145000004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1056.0375000000001,\n \"hasRDI\" : true,\n \"daily\" : 352.01250000000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2995.4571830700006,\n \"hasRDI\" : true,\n \"daily\" : 124.81071596125003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 269.2063196637773,\n \"hasRDI\" : true,\n \"daily\" : 26.920631966377734,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 226.17314571515737,\n \"hasRDI\" : true,\n \"daily\" : 56.543286428789344,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2205.0625932212592,\n \"hasRDI\" : true,\n \"daily\" : 63.001788377750266,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.081933286001941,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.566296033344116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.54746704651574,\n + \ \"hasRDI\" : true,\n \"daily\" : 83.64978031010493,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1440.3873449999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.7696207142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1573.6902425,\n + \ \"hasRDI\" : true,\n \"daily\" : 174.8544713888889,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 111.3,\n + \ \"hasRDI\" : true,\n \"daily\" : 185.5,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6414734700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.76489800000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.23401995,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.58940882352941,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.04114193250001,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.20570966250006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4427190025,\n + \ \"hasRDI\" : true,\n \"daily\" : 172.135950125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.9024675,\n \"hasRDI\" : true,\n \"daily\" : 25.475616875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.9024675,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1414250000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 52.35708333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.393750000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0984375000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.0108686,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.054343,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 32.02445175,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.0305646875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_40808a28f527b82c94ecf5281df3d45c\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/b9e/b9e17c0b2b0ddccd6a7ead841bade121.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2015/02/chicken-marsala-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-40808a28f527b82c94ecf5281df3d45c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4 boneless, skinless chicken breasts + (about 1 1/2 pound, 680g), cut in half crosswise\", \"salt\", \"freshly ground + black pepper\", \"8 to 10 ounces (230-280g) button mushrooms, stems trimmed + and sliced\", \"3 tablespoons (total) olive oil\", \"4 tablespoons (total) + unsalted butter\", \"2 large cloves garlic, peeled and minced\", \"about 1/3 + cup (50g) flour\", \"1/3 cup (80ml) chicken stock or water\", \"1 teaspoon + corn starch\", \"2/3 cup (160ml) Marsala wine (preferably dry)\", \"1 1/2 + teaspoons balsamic vinegar\", \"2 tablespoons chopped parsley\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4 boneless, skinless chicken breasts (about 1 + 1/2 pound, 680g), cut in half crosswise\",\n \"weight\" : 1088.0\n + \ }, {\n \"text\" : \"salt\",\n \"weight\" : 10.558634298572732\n + \ }, {\n \"text\" : \"freshly ground black pepper\",\n \"weight\" + : 5.279317149286366\n }, {\n \"text\" : \"8 to 10 ounces (230-280g) + button mushrooms, stems trimmed and sliced\",\n \"weight\" : 255.145708125\n + \ }, {\n \"text\" : \"3 tablespoons (total) olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"4 tablespoons (total) unsalted butter\",\n + \ \"weight\" : 56.8\n }, {\n \"text\" : \"2 large cloves + garlic, peeled and minced\",\n \"weight\" : 10.0\n }, {\n \"text\" + : \"about 1/3 cup (50g) flour\",\n \"weight\" : 50.0\n }, {\n + \ \"text\" : \"1/3 cup (80ml) chicken stock or water\",\n \"weight\" + : 81.1536544844232\n }, {\n \"text\" : \"1 teaspoon corn starch\",\n + \ \"weight\" : 3.0208333333333335\n }, {\n \"text\" : \"2/3 + cup (160ml) Marsala wine (preferably dry)\",\n \"weight\" : 159.60218715269895\n + \ }, {\n \"text\" : \"1 1/2 teaspoons balsamic vinegar\",\n \"weight\" + : 7.949999999999999\n }, {\n \"text\" : \"2 tablespoons chopped + parsley\",\n \"weight\" : 7.6\n } ],\n \"calories\" : 2511.1741894500074,\n + \ \"totalWeight\" : 1773.9810924186893,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2511.174189450008,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 117.73034625050481,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.462517888008904,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.938275458333333,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.57685142283257,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 11.492672460535035,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 62.794717729030516,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.758340986686118,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 9.340066836657309,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 262.03657330688776,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 918.7946096345327,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4104.592427885141,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 155.11950161025138,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 378.0301350777764,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4926.178580615248,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.141676330210341,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.73670474141049,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2690.5775958913737,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 499.1768271751515,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.953783846260514,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.3655318661963292,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.12605908522143,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 116.13397455479182,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 9.39693663465238,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 175.67070889237687,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 175.67070889237687,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4834182832500002,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.36229141625,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.424190148843739,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 164.30661198235063,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 125.55870947250038,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 181.12360961616125,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 207.31258944004452,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.931572576343505,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.033363946744473,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 524.0731466137755,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 306.26486987817754,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 171.0246844952142,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 15.511950161025137,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 94.5075337694441,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 140.74795944614996,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 45.23153516783523,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 64.9113649427366,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 384.36822798448196,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 55.46409190835016,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 31.589639743767524,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 91.03545774642195,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 183.88582854243708,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 580.6698727739591,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 469.846831732619,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 43.917677223094216,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 41.390304720833335,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34057285406249993,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 67.12095074421869,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 205.38326497793827,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 117.73034625050481,\n \"hasRDI\" : true,\n \"daily\" + : 181.12360961616125,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 41.462517888008904,\n \"hasRDI\" + : true,\n \"daily\" : 207.31258944004452,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.938275458333333,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 49.57685142283257,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.492672460535035,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 62.794717729030516,\n \"hasRDI\" : true,\n \"daily\" : 20.931572576343505,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.0363767423444,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 5.758340986686118,\n \"hasRDI\" + : true,\n \"daily\" : 23.033363946744473,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 9.340066836657309,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 262.03657330688776,\n \"hasRDI\" : true,\n \"daily\" : 524.0731466137755,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 918.7946096345327,\n \"hasRDI\" : true,\n \"daily\" + : 306.26486987817754,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4104.592427885141,\n \"hasRDI\" : true,\n \"daily\" + : 171.0246844952142,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 155.11950161025138,\n \"hasRDI\" : true,\n \"daily\" + : 15.511950161025137,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 378.0301350777764,\n \"hasRDI\" : true,\n \"daily\" + : 94.5075337694441,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4926.178580615248,\n \"hasRDI\" : true,\n \"daily\" + : 140.74795944614996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.141676330210341,\n \"hasRDI\" : true,\n \"daily\" + : 45.23153516783523,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.73670474141049,\n \"hasRDI\" : true,\n \"daily\" + : 64.9113649427366,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2690.5775958913737,\n \"hasRDI\" : true,\n \"daily\" + : 384.36822798448196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 499.1768271751515,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.46409190835016,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.953783846260514,\n \"hasRDI\" : true,\n + \ \"daily\" : 31.589639743767524,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3655318661963292,\n \"hasRDI\" : true,\n + \ \"daily\" : 91.03545774642195,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.12605908522143,\n + \ \"hasRDI\" : true,\n \"daily\" : 183.88582854243708,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 116.13397455479182,\n + \ \"hasRDI\" : true,\n \"daily\" : 580.6698727739591,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.39693663465238,\n + \ \"hasRDI\" : true,\n \"daily\" : 469.846831732619,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 175.67070889237687,\n \"hasRDI\" : true,\n \"daily\" : 43.917677223094216,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 175.67070889237687,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4834182832500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.390304720833335,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.36229141625,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34057285406249993,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.424190148843739,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.12095074421869,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 164.30661198235063,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.38326497793827,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b7ad27e3e2c9440baca6ac8f7fac2a53\",\n + \ \"label\" : \"Twistin’ Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/245/245252a20f66378b825b918781a422b4.jpg\",\n + \ \"source\" : \"Cookstr\",\n \"url\" : \"http://www.cookstr.com/recipes/twistinrsquo-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/twistin-chicken-b7ad27e3e2c9440baca6ac8f7fac2a53/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", + \"Alcohol-Free\" ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 boneless, skinless chicken breasts , or 1 pound chicken tenders\", + \"2 egg whites\", \"juice from ½ lemon\", \"2 teaspoons cornstarch\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"2 boneless, skinless chicken + breasts , or 1 pound chicken tenders\",\n \"weight\" : 544.0\n }, + {\n \"text\" : \"2 egg whites\",\n \"weight\" : 52.8\n }, + {\n \"text\" : \"juice from ½ lemon\",\n \"weight\" : 29.0\n + \ }, {\n \"text\" : \"2 teaspoons cornstarch\",\n \"weight\" + : 5.2\n } ],\n \"calories\" : 708.4780000000001,\n \"totalWeight\" + : 631.0,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 708.4780000000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 14.432160000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 3.074498,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.03808,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 3.752182,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 2.33367,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 7.83428,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.8588,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 1.09988,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 128.48772,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 397.12,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 333.49600000000004,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 38.540000000000006,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 160.604,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1943.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 2.2534799999999997,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.7355600000000004,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1171.9560000000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.370000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 15.37,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.525072,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.2004720000000002,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 52.308440000000004,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.437680000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 54.262,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 54.262,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 1.18992,\n \"unit\" : \"µg\"\n },\n \"VITD\" : {\n + \ \"label\" : \"Vitamin D\",\n \"quantity\" : 5.44,\n \"unit\" + : \"IU\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 3.0899000000000005,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1.088,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 35.4239,\n \"unit\" : \"%\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 22.20332307692308,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 15.372490000000003,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 2.6114266666666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 3.4352,\n \"unit\" : \"%\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 256.97544,\n \"unit\" : \"%\"\n },\n \"CHOLE\" : + {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 132.37333333333333,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 13.895666666666669,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 3.8540000000000005,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 40.151,\n \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 55.52,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.51933333333333,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 24.903733333333335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 167.42228571428572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 4.263333333333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.616666666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 35.004799999999996,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 70.61600000000001,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 261.5422,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 221.88400000000007,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.5655,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 19.832,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.36,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 15.449500000000004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1.36,\n \"unit\" : \"%\"\n }\n },\n + \ \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n + \ \"schemaOrgTag\" : \"fatContent\",\n \"total\" : 14.432160000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.20332307692308,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 3.074498,\n \"hasRDI\" : true,\n \"daily\" : 15.372490000000003,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.03808,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.752182,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.33367,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.83428,\n \"hasRDI\" : true,\n \"daily\" : 2.6114266666666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.975479999999999,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.8588,\n \"hasRDI\" : + true,\n \"daily\" : 3.4352,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.09988,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 128.48772,\n + \ \"hasRDI\" : true,\n \"daily\" : 256.97544,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 397.12,\n \"hasRDI\" : true,\n \"daily\" : 132.37333333333333,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 333.49600000000004,\n \"hasRDI\" : true,\n \"daily\" : 13.895666666666669,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 38.540000000000006,\n \"hasRDI\" : true,\n \"daily\" : 3.8540000000000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.604,\n \"hasRDI\" : true,\n \"daily\" : 40.151,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1943.2,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.52,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.2534799999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.51933333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.7355600000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.903733333333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1171.9560000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 167.42228571428572,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.370000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.263333333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.37,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.616666666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.525072,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.004799999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2004720000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.61600000000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 52.308440000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 261.5422,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.437680000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 221.88400000000007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 54.262,\n \"hasRDI\" : true,\n \"daily\" : 13.5655,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.262,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.18992,\n \"hasRDI\" : true,\n \"daily\" + : 19.832,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.44,\n \"hasRDI\" : true,\n \"daily\" : 1.36,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0899000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.449500000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.088,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.36,\n \"unit\" : + \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n + \ }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_44d56ce15bf57f82e886a54c45539033\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/0f1/0f1cb835e1967f2d9816657a5bb388a8.jpg\",\n + \ \"source\" : \"Fine Cooking\",\n \"url\" : \"http://www.finecooking.com/recipes/roast-chicken.aspx\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-44d56ce15bf57f82e886a54c45539033/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1-1/2 Tbs. + olive oil\", \"2 tsp. granulated sugar\", \"3-1/2 to 4-lb. whole chicken\", + \"Freshly ground black pepper\", \"2 Tbs. kosher salt\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1-1/2 Tbs. olive oil\",\n \"weight\" : + 20.25\n }, {\n \"text\" : \"2 tsp. granulated sugar\",\n \"weight\" + : 8.4\n }, {\n \"text\" : \"3-1/2 to 4-lb. whole chicken\",\n + \ \"weight\" : 1700.9713875\n }, {\n \"text\" : \"Freshly + ground black pepper\",\n \"weight\" : 5.2762391625000005\n }, + {\n \"text\" : \"2 Tbs. kosher salt\",\n \"weight\" : 29.125\n + \ } ],\n \"calories\" : 3881.849843422875,\n \"totalWeight\" + : 1742.2309398204768,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3881.849843422875,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 276.5882963541975,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 76.18143205039199,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.649942245875,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 120.95420848741088,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 57.124940183091745,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 11.77247494441875,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.3348885081125004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 8.41696793064,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 8.3832,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 316.9288793239837,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1275.728540625,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4034.469732851111,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 212.52708727278937,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 349.2899795994548,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3285.914305897263,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 15.962865243600072,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 22.353685735441726,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2508.76439750175,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 698.822853448875,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 27.2155422,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0262811707955,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 2.0522588954925,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 115.74337147750236,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 5.968753712212874,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 102.95524390762499,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 102.95524390762499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.2730113012499995,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.401942775,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.063662049789999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 46.3422743215125,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 194.09249217114376,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 425.5204559295346,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 380.9071602519599,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.92415831480625,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.3395540324500015,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 633.8577586479674,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 425.242846875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 168.10290553546298,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 21.252708727278936,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.3224948998637,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.88326588277894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 88.68258468666707,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 149.0245715696115,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 358.39491392882144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 77.64698371654165,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 45.359237,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 68.4187447197,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 120.72111149955882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 578.7168573875118,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 298.4376856106437,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 25.738810976906247,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 87.8835216875,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.85048569375,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 40.31831024895,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 57.92784290189062,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 276.5882963541975,\n \"hasRDI\" : true,\n \"daily\" + : 425.5204559295346,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 76.18143205039199,\n \"hasRDI\" + : true,\n \"daily\" : 380.9071602519599,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.649942245875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 120.95420848741088,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 57.124940183091745,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 11.77247494441875,\n \"hasRDI\" : true,\n \"daily\" : 3.92415831480625,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.43758643630625,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.3348885081125004,\n \"hasRDI\" + : true,\n \"daily\" : 5.3395540324500015,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 8.41696793064,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 8.3832,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 316.9288793239837,\n \"hasRDI\" : true,\n \"daily\" : 633.8577586479674,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1275.728540625,\n \"hasRDI\" : true,\n \"daily\" + : 425.242846875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4034.469732851111,\n \"hasRDI\" : true,\n \"daily\" + : 168.10290553546298,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 212.52708727278937,\n \"hasRDI\" : true,\n \"daily\" + : 21.252708727278936,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 349.2899795994548,\n \"hasRDI\" : true,\n \"daily\" + : 87.3224948998637,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3285.914305897263,\n \"hasRDI\" : true,\n \"daily\" + : 93.88326588277894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.962865243600072,\n \"hasRDI\" : true,\n \"daily\" + : 88.68258468666707,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.353685735441726,\n \"hasRDI\" : true,\n \"daily\" + : 149.0245715696115,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2508.76439750175,\n \"hasRDI\" : true,\n \"daily\" + : 358.39491392882144,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 698.822853448875,\n \"hasRDI\" : true,\n + \ \"daily\" : 77.64698371654165,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.2155422,\n \"hasRDI\" : true,\n \"daily\" + : 45.359237,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.0262811707955,\n \"hasRDI\" : true,\n \"daily\" : 68.4187447197,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.0522588954925,\n \"hasRDI\" : true,\n \"daily\" : 120.72111149955882,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 115.74337147750236,\n \"hasRDI\" : true,\n \"daily\" : 578.7168573875118,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 5.968753712212874,\n \"hasRDI\" : true,\n \"daily\" : 298.4376856106437,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 102.95524390762499,\n \"hasRDI\" : true,\n \"daily\" + : 25.738810976906247,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 102.95524390762499,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.2730113012499995,\n \"hasRDI\" : true,\n \"daily\" + : 87.8835216875,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 3.401942775,\n \"hasRDI\" : true,\n \"daily\" + : 0.85048569375,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.063662049789999,\n \"hasRDI\" : true,\n + \ \"daily\" : 40.31831024895,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.3422743215125,\n \"hasRDI\" : true,\n + \ \"daily\" : 57.92784290189062,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_85ef4933c59628b6dccf9d6704f90bd8\",\n + \ \"label\" : \"Chicken Stroganoff\",\n \"image\" : \"https://www.edamam.com/web-img/e86/e8612df6b67bb4e4cbb0b3272dc8c284.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/chicken-stroganoff-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stroganoff-85ef4933c59628b6dccf9d6704f90bd8/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4-5 skinless boneless chicken thighs + washed, dried, trimmed of excess fat and cut into bite size pieces\", \"Sweet + hungarian paprika\", \"1/2 tsp kosher salt\", \"Freshly ground black pepper\", + \"2 tbs flour for dusting\", \"1/2 medium onion diced\", \"8 oz. mushrooms + cleaned and sliced\", \"1/4 c vermouth or sherry\", \"1/2 c chicken stock\", + \"1 tsp tomato paste\", \"1 bay leaf\", \"1/4 c plain yogurt\", \"Salt and + pepper to taste\", \"Chopped parsley (optional)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4-5 skinless boneless chicken thighs washed, dried, + trimmed of excess fat and cut into bite size pieces\",\n \"weight\" + : 670.5\n }, {\n \"text\" : \"Sweet hungarian paprika\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"1/2 tsp kosher salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"Freshly ground black + pepper\",\n \"weight\" : 3.648594805\n }, {\n \"text\" + : \"2 tbs flour for dusting\",\n \"weight\" : 15.625\n }, {\n + \ \"text\" : \"1/2 medium onion diced\",\n \"weight\" : 55.0\n + \ }, {\n \"text\" : \"8 oz. mushrooms cleaned and sliced\",\n \"weight\" + : 226.796185\n }, {\n \"text\" : \"1/4 c vermouth or sherry\",\n + \ \"weight\" : 59.0\n }, {\n \"text\" : \"1/2 c chicken + stock\",\n \"weight\" : 120.0\n }, {\n \"text\" : \"1 tsp + tomato paste\",\n \"weight\" : 5.0\n }, {\n \"text\" : + \"1 bay leaf\",\n \"weight\" : 0.6\n }, {\n \"text\" : + \"1/4 c plain yogurt\",\n \"weight\" : 61.25\n }, {\n \"text\" + : \"Salt and pepper to taste\",\n \"weight\" : 7.29718961\n }, + {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" : + 3.648594805\n } ],\n \"calories\" : 1764.4016066211,\n \"totalWeight\" + : 1226.3286830279164,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1764.4016066211,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 116.09145541028602,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 32.2833937218712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.569925,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 47.8659224812179,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 24.089456098307807,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 40.887165886595014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.8338258213300005,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 12.736803976504,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 126.20417761697901,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.6525,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2839.570083788062,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 191.55815954259992,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 184.02995396727917,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2616.672592890333,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.625534553910125,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 10.783537026776918,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1399.2997786838005,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 179.57674119470002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 10.752969885000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7908673746288002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.130901604998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 41.7441902701923,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8025128541651,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 86.9808736837,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 86.9808736837,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 4.474443474,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.18534237,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 1.814745390444,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 27.225374391569993,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 88.220080331055,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 178.6022390927477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 161.416968609356,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.629055295531671,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.335303285320002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 252.40835523395802,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88416666666666,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 118.31542015783593,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.155815954259992,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.00748849181979,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.76207408258094,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.364080855056244,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 71.89024684517945,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 199.89996838340008,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.952971243855558,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.921616475000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.72449164192002,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.34715323517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 208.7209513509615,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 140.12564270825501,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 21.745218420925,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 74.5740579,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2963355925,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.073726952220001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.03171798946249,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 116.09145541028602,\n \"hasRDI\" : true,\n \"daily\" + : 178.6022390927477,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.2833937218712,\n \"hasRDI\" + : true,\n \"daily\" : 161.416968609356,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.569925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.8659224812179,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.089456098307807,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 40.887165886595014,\n \"hasRDI\" : true,\n \"daily\" : 13.629055295531671,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 35.05334006526501,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.8338258213300005,\n \"hasRDI\" + : true,\n \"daily\" : 23.335303285320002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 12.736803976504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 126.20417761697901,\n \"hasRDI\" : true,\n \"daily\" : 252.40835523395802,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.6525,\n \"hasRDI\" : true,\n \"daily\" + : 222.88416666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2839.570083788062,\n \"hasRDI\" : true,\n \"daily\" + : 118.31542015783593,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 191.55815954259992,\n \"hasRDI\" : true,\n \"daily\" + : 19.155815954259992,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.02995396727917,\n \"hasRDI\" : true,\n \"daily\" + : 46.00748849181979,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2616.672592890333,\n \"hasRDI\" : true,\n \"daily\" + : 74.76207408258094,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.625534553910125,\n \"hasRDI\" : true,\n \"daily\" + : 42.364080855056244,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.783537026776918,\n \"hasRDI\" : true,\n \"daily\" + : 71.89024684517945,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1399.2997786838005,\n \"hasRDI\" : true,\n \"daily\" + : 199.89996838340008,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 179.57674119470002,\n \"hasRDI\" : true,\n + \ \"daily\" : 19.952971243855558,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.752969885000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.921616475000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7908673746288002,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.72449164192002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.130901604998,\n \"hasRDI\" + : true,\n \"daily\" : 125.34715323517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.7441902701923,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.7209513509615,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8025128541651,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.12564270825501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : true,\n \"daily\" : 21.745218420925,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474443474,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.5740579,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.18534237,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2963355925,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.814745390444,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.073726952220001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.225374391569993,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.03171798946249,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_dbbcecdf101b25733aebb9f85edea12a\",\n + \ \"label\" : \"Chicken Ramen\",\n \"image\" : \"https://www.edamam.com/web-img/15b/15b3c28a2df3910ec02e68b771de33a3.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-ramen-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-ramen-dbbcecdf101b25733aebb9f85edea12a/chicken\",\n + \ \"yield\" : 18.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 pounds chicken bones\", \"1 pound chicken wing tips\", \"1 small leek + cut into 4 pieces\", \"2 length ginger sliced into 8 coins\", \"4 large cloves + garlic unpeeled\", \"vegetable oil for frying the aromatics\", \"4 inch piece + kombu\", \"10 cups water\", \"1/4 cup sesame oil\", \"3 scallions white part + only, minced\", \"1 tablespoon soy sauce\", \"1 cup soy milk\", \"1 tablespoon + salt\", \"4 servings ramen noodles boiled according to package directions\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 pounds chicken bones\",\n + \ \"weight\" : 907.18474\n }, {\n \"text\" : \"1 pound chicken + wing tips\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1 small leek cut into 4 pieces\",\n \"weight\" : 66.75\n }, + {\n \"text\" : \"2 length ginger sliced into 8 coins\",\n \"weight\" + : 30.0\n }, {\n \"text\" : \"4 large cloves garlic unpeeled\",\n + \ \"weight\" : 20.0\n }, {\n \"text\" : \"vegetable oil + for frying the aromatics\",\n \"weight\" : 59.989968696\n }, {\n + \ \"text\" : \"4 inch piece kombu\",\n \"weight\" : 15.0\n }, + {\n \"text\" : \"10 cups water\",\n \"weight\" : 2370.0\n }, + {\n \"text\" : \"1/4 cup sesame oil\",\n \"weight\" : 54.5\n + \ }, {\n \"text\" : \"3 scallions white part only, minced\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tablespoon soy + sauce\",\n \"weight\" : 16.0\n }, {\n \"text\" : \"1 cup + soy milk\",\n \"weight\" : 243.0\n }, {\n \"text\" : \"1 + tablespoon salt\",\n \"weight\" : 18.0\n }, {\n \"text\" + : \"4 servings ramen noodles boiled according to package directions\",\n \"weight\" + : 172.0\n } ],\n \"calories\" : 6046.47817296,\n \"totalWeight\" + : 4703.549123967689,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 6046.47817296,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 510.968004192,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 87.40426536551499,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.7148140990550003,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 276.059092567615,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 93.08901496176999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 145.823025,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 10.160499999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.61705,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 209.89535462400002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 793.7866475000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 10908.84104332722,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 364.13796809224556,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 275.7302086746769,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1979.2811676974152,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 25.792968248643376,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 7.974910624467691,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 995.7511151,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 121.3458133,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 25.176000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.2863798798000001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2105951411,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.6675773189,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.1493952136000005,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 463.9514659,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 257.55146590000004,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 120.39999999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.563980925,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4535923700000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 74.17562766500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 182.03901005999998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 302.323908648,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 786.1046218338462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 437.0213268275749,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 48.607675,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : + {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.641999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 419.79070924800004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.59554916666673,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 454.5350434719675,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 36.41379680922456,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 68.93255216866922,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 56.55089050564043,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 143.29426804801875,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 53.16607082978461,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 142.2501593,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.482868144444446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.96000000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 85.75865865333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 71.21147888823529,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 188.33788659450002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 157.46976068000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 115.987866475,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 26.066348750000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.11339809250000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 370.87813832500007,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 227.54876257499996,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 510.968004192,\n \"hasRDI\" : true,\n \"daily\" : 786.1046218338462,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 87.40426536551499,\n \"hasRDI\" : true,\n \"daily\" + : 437.0213268275749,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.7148140990550003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 276.059092567615,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 93.08901496176999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 145.823025,\n \"hasRDI\" : true,\n \"daily\" : 48.607675,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 135.66252500000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.160499999999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.641999999999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.61705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 209.89535462400002,\n \"hasRDI\" : true,\n \"daily\" : 419.79070924800004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 793.7866475000001,\n \"hasRDI\" : true,\n \"daily\" + : 264.59554916666673,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 10908.84104332722,\n \"hasRDI\" : true,\n \"daily\" + : 454.5350434719675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 364.13796809224556,\n \"hasRDI\" : true,\n \"daily\" + : 36.41379680922456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 275.7302086746769,\n \"hasRDI\" : true,\n \"daily\" + : 68.93255216866922,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1979.2811676974152,\n \"hasRDI\" : true,\n \"daily\" + : 56.55089050564043,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.792968248643376,\n \"hasRDI\" : true,\n \"daily\" + : 143.29426804801875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.974910624467691,\n \"hasRDI\" : true,\n \"daily\" + : 53.16607082978461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 995.7511151,\n \"hasRDI\" : true,\n \"daily\" + : 142.2501593,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 121.3458133,\n \"hasRDI\" : true,\n \"daily\" + : 13.482868144444446,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 25.176000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.96000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2863798798000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 85.75865865333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.2105951411,\n \"hasRDI\" + : true,\n \"daily\" : 71.21147888823529,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 37.6675773189,\n \"hasRDI\" + : true,\n \"daily\" : 188.33788659450002,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.1493952136000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 157.46976068000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 463.9514659,\n \"hasRDI\" : true,\n \"daily\" : 115.987866475,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.55146590000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.39999999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.563980925,\n \"hasRDI\" : true,\n \"daily\" : 26.066348750000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.4535923700000001,\n \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.17562766500001,\n \"hasRDI\" : true,\n \"daily\" : 370.87813832500007,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 182.03901005999998,\n \"hasRDI\" : true,\n \"daily\" : 227.54876257499996,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1c199811ae3755b6c0a03b9439941a03\",\n + \ \"label\" : \"Chicken Ramen\",\n \"image\" : \"https://www.edamam.com/web-img/c2e/c2eec6e078f45c9c76c581a816f74157.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-ramen-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-ramen-1c199811ae3755b6c0a03b9439941a03/chicken\",\n + \ \"yield\" : 18.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"2 lbs chicken bones\", \"1 lb chicken wing tips\", \"1 small leek cut + into 4 pieces\", \"2 length ginger sliced into 8 coins\", \"4 large cloves + garlic unpeeled\", \"Vegetable oil for frying the aromatics\", \"4 inch piece + kombu\", \"10 cups water\", \"1/4 cup sesame oil\", \"3 scallions white part + only, minced\", \"1 tbsp soy sauce\", \"1 cup soy milk\", \"1 tbsp salt\", + \"4 servings ramen noodles boiled according to package directions\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 lbs chicken bones\",\n \"weight\" : 907.18474\n + \ }, {\n \"text\" : \"1 lb chicken wing tips\",\n \"weight\" + : 453.59237\n }, {\n \"text\" : \"1 small leek cut into 4 pieces\",\n + \ \"weight\" : 66.75\n }, {\n \"text\" : \"2 length ginger + sliced into 8 coins\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"4 large cloves garlic unpeeled\",\n \"weight\" : 20.0\n }, + {\n \"text\" : \"Vegetable oil for frying the aromatics\",\n \"weight\" + : 59.989968696\n }, {\n \"text\" : \"4 inch piece kombu\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"10 cups water\",\n \"weight\" + : 2370.0\n }, {\n \"text\" : \"1/4 cup sesame oil\",\n \"weight\" + : 54.5\n }, {\n \"text\" : \"3 scallions white part only, minced\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tbsp soy sauce\",\n + \ \"weight\" : 16.0\n }, {\n \"text\" : \"1 cup soy milk\",\n + \ \"weight\" : 243.0\n }, {\n \"text\" : \"1 tbsp salt\",\n + \ \"weight\" : 18.0\n }, {\n \"text\" : \"4 servings ramen + noodles boiled according to package directions\",\n \"weight\" : 172.0\n + \ } ],\n \"calories\" : 6046.47817296,\n \"totalWeight\" : 4703.549123967689,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 6046.47817296,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 510.968004192,\n \"unit\" : + \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 87.40426536551499,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.7148140990550003,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 276.059092567615,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 93.08901496176999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 145.823025,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 10.160499999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.61705,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 209.89535462400002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 793.7866475000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 10908.84104332722,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 364.13796809224556,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 275.7302086746769,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1979.2811676974152,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 25.792968248643376,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 7.974910624467691,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 995.7511151,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 121.3458133,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 25.176000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.2863798798000001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.2105951411,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 37.6675773189,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.1493952136000005,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 463.9514659,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 257.55146590000004,\n + \ \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" + : \"Folic acid\",\n \"quantity\" : 120.39999999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.563980925,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4535923700000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 74.17562766500001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 182.03901005999998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 302.323908648,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 786.1046218338462,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 437.0213268275749,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 48.607675,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : + {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.641999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 419.79070924800004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 264.59554916666673,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 454.5350434719675,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 36.41379680922456,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 68.93255216866922,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 56.55089050564043,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 143.29426804801875,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 53.16607082978461,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 142.2501593,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 13.482868144444446,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.96000000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 85.75865865333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 71.21147888823529,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 188.33788659450002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 157.46976068000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 115.987866475,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 26.066348750000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.11339809250000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 370.87813832500007,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 227.54876257499996,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 510.968004192,\n \"hasRDI\" : true,\n \"daily\" : 786.1046218338462,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 87.40426536551499,\n \"hasRDI\" : true,\n \"daily\" + : 437.0213268275749,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.7148140990550003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 276.059092567615,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 93.08901496176999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 145.823025,\n \"hasRDI\" : true,\n \"daily\" : 48.607675,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 135.66252500000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.160499999999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.641999999999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.61705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 209.89535462400002,\n \"hasRDI\" : true,\n \"daily\" : 419.79070924800004,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 793.7866475000001,\n \"hasRDI\" : true,\n \"daily\" + : 264.59554916666673,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 10908.84104332722,\n \"hasRDI\" : true,\n \"daily\" + : 454.5350434719675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 364.13796809224556,\n \"hasRDI\" : true,\n \"daily\" + : 36.41379680922456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 275.7302086746769,\n \"hasRDI\" : true,\n \"daily\" + : 68.93255216866922,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1979.2811676974152,\n \"hasRDI\" : true,\n \"daily\" + : 56.55089050564043,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 25.792968248643376,\n \"hasRDI\" : true,\n \"daily\" + : 143.29426804801875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.974910624467691,\n \"hasRDI\" : true,\n \"daily\" + : 53.16607082978461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 995.7511151,\n \"hasRDI\" : true,\n \"daily\" + : 142.2501593,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 121.3458133,\n \"hasRDI\" : true,\n \"daily\" + : 13.482868144444446,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 25.176000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.96000000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2863798798000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 85.75865865333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.2105951411,\n \"hasRDI\" + : true,\n \"daily\" : 71.21147888823529,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 37.6675773189,\n \"hasRDI\" + : true,\n \"daily\" : 188.33788659450002,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.1493952136000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 157.46976068000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 463.9514659,\n \"hasRDI\" : true,\n \"daily\" : 115.987866475,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 257.55146590000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.39999999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.563980925,\n \"hasRDI\" : true,\n \"daily\" : 26.066348750000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.4535923700000001,\n \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.17562766500001,\n \"hasRDI\" : true,\n \"daily\" : 370.87813832500007,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 182.03901005999998,\n \"hasRDI\" : true,\n \"daily\" : 227.54876257499996,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1c467782c786df1808bd922a559937e5\",\n + \ \"label\" : \"Chicken Stroganoff\",\n \"image\" : \"https://www.edamam.com/web-img/f6d/f6de0da464ad73467d688125b46eb75b.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2008/04/02/chicken-stroganoff/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stroganoff-1c467782c786df1808bd922a559937e5/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4-5 skinless boneless chicken thighs + washed, dried, trimmed of excess fat and cut into bite size pieces\", \"sweet + hungarian paprika\", \"1/2 teaspoon kosher salt\", \"freshly ground black + pepper\", \"2 Tbs flour for dusting\", \"1/2 medium onion diced\", \"8 oz. + mushrooms cleaned and sliced\", \"1/4 C vermouth or sherry\", \"1/2 C chicken + stock\", \"1 Tsp tomato paste\", \"1 bay leaf\", \"1/4 C plain yogurt\", \"salt + and pepper to taste\", \"chopped parsley (optional)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4-5 skinless boneless chicken thighs washed, dried, + trimmed of excess fat and cut into bite size pieces\",\n \"weight\" + : 670.5\n }, {\n \"text\" : \"sweet hungarian paprika\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"1/2 teaspoon kosher salt\",\n \"weight\" + : 2.4270833333333335\n }, {\n \"text\" : \"freshly ground black + pepper\",\n \"weight\" : 3.648594805\n }, {\n \"text\" + : \"2 Tbs flour for dusting\",\n \"weight\" : 15.625\n }, {\n + \ \"text\" : \"1/2 medium onion diced\",\n \"weight\" : 55.0\n + \ }, {\n \"text\" : \"8 oz. mushrooms cleaned and sliced\",\n \"weight\" + : 226.796185\n }, {\n \"text\" : \"1/4 C vermouth or sherry\",\n + \ \"weight\" : 59.0\n }, {\n \"text\" : \"1/2 C chicken + stock\",\n \"weight\" : 120.0\n }, {\n \"text\" : \"1 Tsp + tomato paste\",\n \"weight\" : 5.0\n }, {\n \"text\" : + \"1 bay leaf\",\n \"weight\" : 0.6\n }, {\n \"text\" : + \"1/4 C plain yogurt\",\n \"weight\" : 61.25\n }, {\n \"text\" + : \"salt and pepper to taste\",\n \"weight\" : 7.29718961\n }, + {\n \"text\" : \"salt and pepper to taste\",\n \"weight\" : + 3.648594805\n } ],\n \"calories\" : 1764.4016066211,\n \"totalWeight\" + : 1226.3286830279164,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1764.4016066211,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 116.09145541028602,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 32.2833937218712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.569925,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 47.8659224812179,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 24.089456098307807,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 40.887165886595014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.8338258213300005,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 12.736803976504,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 126.20417761697901,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.6525,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2839.570083788062,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 191.55815954259992,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 184.02995396727917,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2616.672592890333,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.625534553910125,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 10.783537026776918,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1399.2997786838005,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 179.57674119470002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 10.752969885000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7908673746288002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.130901604998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 41.7441902701923,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8025128541651,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 86.9808736837,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 86.9808736837,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 4.474443474,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.18534237,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 1.814745390444,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 27.225374391569993,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 88.220080331055,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 178.6022390927477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 161.416968609356,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.629055295531671,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 23.335303285320002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 252.40835523395802,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88416666666666,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 118.31542015783593,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.155815954259992,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.00748849181979,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.76207408258094,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.364080855056244,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 71.89024684517945,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 199.89996838340008,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 19.952971243855558,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.921616475000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.72449164192002,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.34715323517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 208.7209513509615,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 140.12564270825501,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 21.745218420925,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 74.5740579,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2963355925,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.073726952220001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.03171798946249,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 116.09145541028602,\n \"hasRDI\" : true,\n \"daily\" + : 178.6022390927477,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.2833937218712,\n \"hasRDI\" + : true,\n \"daily\" : 161.416968609356,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.569925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 47.8659224812179,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.089456098307807,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 40.887165886595014,\n \"hasRDI\" : true,\n \"daily\" : 13.629055295531671,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 35.05334006526501,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.8338258213300005,\n \"hasRDI\" + : true,\n \"daily\" : 23.335303285320002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 12.736803976504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 126.20417761697901,\n \"hasRDI\" : true,\n \"daily\" : 252.40835523395802,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.6525,\n \"hasRDI\" : true,\n \"daily\" + : 222.88416666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2839.570083788062,\n \"hasRDI\" : true,\n \"daily\" + : 118.31542015783593,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 191.55815954259992,\n \"hasRDI\" : true,\n \"daily\" + : 19.155815954259992,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.02995396727917,\n \"hasRDI\" : true,\n \"daily\" + : 46.00748849181979,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2616.672592890333,\n \"hasRDI\" : true,\n \"daily\" + : 74.76207408258094,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.625534553910125,\n \"hasRDI\" : true,\n \"daily\" + : 42.364080855056244,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 10.783537026776918,\n \"hasRDI\" : true,\n \"daily\" + : 71.89024684517945,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1399.2997786838005,\n \"hasRDI\" : true,\n \"daily\" + : 199.89996838340008,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 179.57674119470002,\n \"hasRDI\" : true,\n + \ \"daily\" : 19.952971243855558,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.752969885000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.921616475000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7908673746288002,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.72449164192002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.130901604998,\n \"hasRDI\" + : true,\n \"daily\" : 125.34715323517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.7441902701923,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.7209513509615,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8025128541651,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.12564270825501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : true,\n \"daily\" : 21.745218420925,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.9808736837,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474443474,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.5740579,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.18534237,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2963355925,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.814745390444,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.073726952220001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.225374391569993,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.03171798946249,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6289468ceb188ec8103d4a0c4adab6b8\",\n + \ \"label\" : \"Oven-Roasted Chicken Thighs\",\n \"image\" : \"https://www.edamam.com/web-img/676/676a9be0cb7bc68b41ccc0ca765969ed.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/97461/recipes-oven-roasted-chicken-thighs.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/oven-roasted-chicken-thighs-6289468ceb188ec8103d4a0c4adab6b8/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"8 bone-in, + skin-on chicken thighs (6 to 8 ounces each)\", \"1 1/4 teaspoons sea salt\", + \"Freshly ground black pepper\", \"Mild olive oil\" ],\n \"ingredients\" + : [ {\n \"text\" : \"8 bone-in, skin-on chicken thighs (6 to 8 ounces + each)\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"1 1/4 teaspoons sea salt\",\n \"weight\" : 6.067708333333334\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 4.78092301\n }, {\n \"text\" : \"Mild olive oil\",\n \"weight\" + : 21.673517645333334\n } ],\n \"calories\" : 2659.569900104847,\n + \ \"totalWeight\" : 1620.0954439886666,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2659.569900104847,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 206.41652274510935,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 53.33450087082684,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.9446061105250001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 92.97285690135556,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 40.85723416981323,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 5.835653531145001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.20957352153,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.030597907264000003,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 184.083713734539,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1089.07528037,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3253.26610905324,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 100.64356556575332,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 208.27029060043336,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2331.2952839060204,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.162471644784867,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 14.398747546002335,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1752.2969095608,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 256.8901497077,\n + \ \"unit\" : \"µg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.8164133505958,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.619992555843,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 51.4523313756293,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.8701280195141,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 34.1517961067,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 34.1517961067,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 6.890068100300001,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 1.1113013065000001,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 5.493604125059333,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 44.21115602636067,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 132.97849500524237,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 317.5638811463221,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 266.67250435413416,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.9452178437150003,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.83829408612,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 368.167427469078,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 363.02509345666664,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 135.552754543885,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 10.064356556575332,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 52.06757265010834,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 66.60843668302915,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 45.347064693249266,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 95.99165030668223,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 250.32812993725716,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 28.54334996752222,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 54.42755670638667,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 95.29367975547058,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 257.2616568781465,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 193.506400975705,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 8.537949026675,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 114.83446833833335,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.27782532662500004,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 27.468020625296663,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 55.263945032950836,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 206.41652274510935,\n \"hasRDI\" : true,\n \"daily\" : 317.5638811463221,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 53.33450087082684,\n \"hasRDI\" : true,\n \"daily\" + : 266.67250435413416,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9446061105250001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 92.97285690135556,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.85723416981323,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 5.835653531145001,\n \"hasRDI\" : true,\n \"daily\" : 1.9452178437150003,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.626080009615,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 1.20957352153,\n \"hasRDI\" + : true,\n \"daily\" : 4.83829408612,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.030597907264000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 184.083713734539,\n \"hasRDI\" : true,\n \"daily\" : 368.167427469078,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1089.07528037,\n \"hasRDI\" : true,\n \"daily\" + : 363.02509345666664,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3253.26610905324,\n \"hasRDI\" : true,\n \"daily\" + : 135.552754543885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.64356556575332,\n \"hasRDI\" : true,\n \"daily\" + : 10.064356556575332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.27029060043336,\n \"hasRDI\" : true,\n \"daily\" + : 52.06757265010834,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2331.2952839060204,\n \"hasRDI\" : true,\n \"daily\" + : 66.60843668302915,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.162471644784867,\n \"hasRDI\" : true,\n \"daily\" + : 45.347064693249266,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.398747546002335,\n \"hasRDI\" : true,\n \"daily\" + : 95.99165030668223,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1752.2969095608,\n \"hasRDI\" : true,\n \"daily\" + : 250.32812993725716,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 256.8901497077,\n \"hasRDI\" : true,\n + \ \"daily\" : 28.54334996752222,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.8164133505958,\n \"hasRDI\" : true,\n \"daily\" : 54.42755670638667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.619992555843,\n \"hasRDI\" : true,\n \"daily\" : 95.29367975547058,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 51.4523313756293,\n \"hasRDI\" : true,\n \"daily\" : 257.2616568781465,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.8701280195141,\n \"hasRDI\" : true,\n \"daily\" : 193.506400975705,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.1517961067,\n \"hasRDI\" : true,\n \"daily\" + : 8.537949026675,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 34.1517961067,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.890068100300001,\n \"hasRDI\" : true,\n \"daily\" + : 114.83446833833335,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.1113013065000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.27782532662500004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.493604125059333,\n \"hasRDI\" : true,\n + \ \"daily\" : 27.468020625296663,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 44.21115602636067,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.263945032950836,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8d50e9e1099d5b52a3dd710706ed873e\",\n + \ \"label\" : \"Chicken Karaage | Japanese Fried Chicken\",\n \"image\" + : \"https://www.edamam.com/web-img/9ad/9adad376e81c021a6543925e0aa834ff.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/86227/recipes-chicken-karaage-japanese.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-karaage-japanese-fried-chicken-8d50e9e1099d5b52a3dd710706ed873e/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"3 tablespoons + grated garlic cloves (from about 8 cloves)\", \"4 teaspoons grated fresh ginger\", + \"1/2 cup soy sauce or tamari, preferably low-sodium\", \"1/4 cup sake\", + \"2 tablespoons granulated sugar\", \"2 teaspoons salt\", \"1 teaspoon freshly + ground black pepper\", \"3 pounds boneless, skinless chicken, preferably dark + meat, cut into 1 1/2-inch pieces\", \"3 large egg whites, lightly beaten\", + \"3/4 cup potato starch\", \"Vegetable oil for deep-frying\" ],\n \"ingredients\" + : [ {\n \"text\" : \"3 tablespoons grated garlic cloves (from about + 8 cloves)\",\n \"weight\" : 25.5\n }, {\n \"text\" : \"4 + teaspoons grated fresh ginger\",\n \"weight\" : 8.0\n }, {\n \"text\" + : \"1/2 cup soy sauce or tamari, preferably low-sodium\",\n \"weight\" + : 127.5\n }, {\n \"text\" : \"1/4 cup sake\",\n \"weight\" + : 58.2\n }, {\n \"text\" : \"2 tablespoons granulated sugar\",\n + \ \"weight\" : 25.2\n }, {\n \"text\" : \"2 teaspoons salt\",\n + \ \"weight\" : 12.0\n }, {\n \"text\" : \"1 teaspoon freshly + ground black pepper\",\n \"weight\" : 2.3\n }, {\n \"text\" + : \"3 pounds boneless, skinless chicken, preferably dark meat, cut into 1 + 1/2-inch pieces\",\n \"weight\" : 1360.77711\n }, {\n \"text\" + : \"3 large egg whites, lightly beaten\",\n \"weight\" : 99.0\n }, + {\n \"text\" : \"3/4 cup potato starch\",\n \"weight\" : 96.0\n + \ }, {\n \"text\" : \"Vegetable oil for deep-frying\",\n \"weight\" + : 24.676888696\n } ],\n \"calories\" : 4885.50189086,\n \"totalWeight\" + : 2074.6486765,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4885.5018908600005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 338.830475491,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 44.946005641615,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 5.489498690055001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 230.254219900015,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 51.21239748117,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 135.688292532,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 3.1614000000000004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 26.76822,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 25.1496,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 318.188636604,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 857.2895793,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 8258.8199169,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 288.61202430000003,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 411.1231931,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 5975.649620300001,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 31.595021599,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 75.17912165100002,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 3240.7273287000003,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 27.8365422,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 8.356,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 1.190140688,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 2.9980040870000004,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 69.6698163657,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 8.257281984799999,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 64.6693133,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 64.6693133,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 30.978740397,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3607771100000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 61.847920295,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 24.61825665,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 244.27509454300002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 521.2776546015385,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 224.730028208075,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.229430844,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 12.645600000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 636.377273208,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 285.7631931,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 344.1174965375,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 28.861202430000006,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 102.780798275,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 170.73284629428574,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 175.52789777222222,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 501.1941443400001,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 462.96104695714286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 3.092949133333333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 13.926666666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 79.34271253333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 176.35318158823532,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 348.3490818285,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 412.8640992399999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 16.167328325,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 516.31233995,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.34019427750000003,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 309.23960147500003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 30.772820812499997,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 338.830475491,\n \"hasRDI\" : true,\n \"daily\" : 521.2776546015385,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 44.946005641615,\n \"hasRDI\" : true,\n \"daily\" + : 224.730028208075,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 5.489498690055001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 230.254219900015,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.21239748117,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 135.688292532,\n \"hasRDI\" : true,\n \"daily\" : 45.229430844,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 132.52689253199998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.1614000000000004,\n \"hasRDI\" + : true,\n \"daily\" : 12.645600000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.76822,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 25.1496,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 318.188636604,\n \"hasRDI\" : true,\n \"daily\" : 636.377273208,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 857.2895793,\n \"hasRDI\" : true,\n \"daily\" + : 285.7631931,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 8258.8199169,\n \"hasRDI\" : true,\n \"daily\" + : 344.1174965375,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 288.61202430000003,\n \"hasRDI\" : true,\n \"daily\" + : 28.861202430000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 411.1231931,\n \"hasRDI\" : true,\n \"daily\" + : 102.780798275,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5975.649620300001,\n \"hasRDI\" : true,\n \"daily\" + : 170.73284629428574,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 31.595021599,\n \"hasRDI\" : true,\n \"daily\" + : 175.52789777222222,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 75.17912165100002,\n \"hasRDI\" : true,\n \"daily\" + : 501.1941443400001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3240.7273287000003,\n \"hasRDI\" : true,\n \"daily\" + : 462.96104695714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.8365422,\n \"hasRDI\" : true,\n \"daily\" + : 3.092949133333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 8.356,\n \"hasRDI\" : true,\n \"daily\" + : 13.926666666666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.190140688,\n \"hasRDI\" : true,\n \"daily\" + : 79.34271253333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.9980040870000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 176.35318158823532,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 69.6698163657,\n \"hasRDI\" : true,\n + \ \"daily\" : 348.3490818285,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.257281984799999,\n \"hasRDI\" : true,\n + \ \"daily\" : 412.8640992399999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 64.6693133,\n \"hasRDI\" + : true,\n \"daily\" : 16.167328325,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 64.6693133,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 30.978740397,\n \"hasRDI\" : true,\n \"daily\" + : 516.31233995,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3607771100000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34019427750000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 61.847920295,\n \"hasRDI\" : true,\n \"daily\" + : 309.23960147500003,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : + null,\n \"total\" : 24.61825665,\n \"hasRDI\" : true,\n \"daily\" + : 30.772820812499997,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8d2fbf7d699feb086b56ce0cfbd6ba33\",\n + \ \"label\" : \"Chicken Quinoa\",\n \"image\" : \"https://www.edamam.com/web-img/560/5606f4fb972e0789464fecdc9ca595aa.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/14954-chicken-quinoa\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-quinoa-8d2fbf7d699feb086b56ce0cfbd6ba33/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1.5 cups quinoa\", + \"3 cups broth or water\", \"4 chicken thighs\", \"1 onion or leek\", \"Olive + oil\" ],\n \"ingredients\" : [ {\n \"text\" : \"1.5 cups quinoa\",\n + \ \"weight\" : 255.0\n }, {\n \"text\" : \"3 cups broth + or water\",\n \"weight\" : 681.0\n }, {\n \"text\" : \"4 + chicken thighs\",\n \"weight\" : 596.0\n }, {\n \"text\" + : \"1 onion or leek\",\n \"weight\" : 89.0\n }, {\n \"text\" + : \"Olive oil\",\n \"weight\" : 22.0456\n } ],\n \"calories\" + : 2511.2933218049902,\n \"totalWeight\" : 1643.0456,\n \"totalTime\" + : 29.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2511.2933218049902,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 137.04322160375682,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.880414510136326,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.5066,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 61.73051847062965,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 31.560442012660573,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 178.71509187755157,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 19.739703322203766,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 3.835202471460257,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 136.0068308542417,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 584.08,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 621.5623271646633,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 240.8094899986044,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 643.4160019450799,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2845.340999981333,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 17.852585171004904,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 15.81037540517919,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2137.409469462063,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 237.13782136401016,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 12.566286087916877,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.412716343689388,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.7134411748868574,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 31.904265111457477,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.5343860060843273,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 547.8703622940221,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 547.8703622940221,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.695615756245959,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.5984945374757552,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 11.535768799224167,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 78.06457414846271,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 125.5646660902495,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 210.83572554424128,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 159.40207255068162,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 59.571697292517186,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 78.95881328881507,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 272.0136617084834,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 194.69333333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 25.898430298527636,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 24.08094899986044,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 160.85400048626997,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 81.2954571423238,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 99.18102872780501,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 105.4025027011946,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 305.3442099231519,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 26.34864681822335,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.943810146528126,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 94.18108957929253,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 100.79065734628574,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 159.52132555728738,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 176.71930030421638,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 136.96759057350553,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 61.593595937432646,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.1496236343689388,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 57.67884399612084,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 97.58071768557838,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 137.04322160375682,\n \"hasRDI\" : true,\n \"daily\" : 210.83572554424128,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 31.880414510136326,\n \"hasRDI\" : true,\n + \ \"daily\" : 159.40207255068162,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.5066,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 61.73051847062965,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.560442012660573,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 178.71509187755157,\n \"hasRDI\" : true,\n \"daily\" : 59.571697292517186,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 158.97538855534782,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 19.739703322203766,\n \"hasRDI\" + : true,\n \"daily\" : 78.95881328881507,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 3.835202471460257,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 136.0068308542417,\n \"hasRDI\" : true,\n \"daily\" : 272.0136617084834,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 584.08,\n \"hasRDI\" : true,\n \"daily\" + : 194.69333333333336,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 621.5623271646633,\n \"hasRDI\" : true,\n \"daily\" + : 25.898430298527636,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 240.8094899986044,\n \"hasRDI\" : true,\n \"daily\" + : 24.08094899986044,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 643.4160019450799,\n \"hasRDI\" : true,\n \"daily\" + : 160.85400048626997,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2845.340999981333,\n \"hasRDI\" : true,\n \"daily\" + : 81.2954571423238,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.852585171004904,\n \"hasRDI\" : true,\n \"daily\" + : 99.18102872780501,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.81037540517919,\n \"hasRDI\" : true,\n \"daily\" + : 105.4025027011946,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2137.409469462063,\n \"hasRDI\" : true,\n \"daily\" + : 305.3442099231519,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 237.13782136401016,\n \"hasRDI\" : true,\n + \ \"daily\" : 26.34864681822335,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.566286087916877,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.943810146528126,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.412716343689388,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.18108957929253,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.7134411748868574,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.79065734628574,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.904265111457477,\n + \ \"hasRDI\" : true,\n \"daily\" : 159.52132555728738,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.5343860060843273,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.71930030421638,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 547.8703622940221,\n \"hasRDI\" : true,\n \"daily\" : 136.96759057350553,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 547.8703622940221,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.695615756245959,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.593595937432646,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5984945374757552,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.1496236343689388,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.535768799224167,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.67884399612084,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.06457414846271,\n + \ \"hasRDI\" : true,\n \"daily\" : 97.58071768557838,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_95275db8dd842849bcb7c8088d089227\",\n + \ \"label\" : \"Tamborine Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ac7/ac71c5f4314554df5a4a6f685a1a1c9c.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/4467/tamborine-chicken-\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tamborine-chicken-95275db8dd842849bcb7c8088d089227/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 boneless + chicken breasts , skin on\", \"Zest 1 and juice 2 lime , plus lime wedges + to serve\", \"1.0 tsp black peppercorns\", \"3 cm chunk root ginger\", \"1.0 + tbsp soy sauce\" ],\n \"ingredients\" : [ {\n \"text\" : \"4 boneless + chicken breasts , skin on\",\n \"weight\" : 784.0\n }, {\n \"text\" + : \"Zest 1 and juice 2 lime , plus lime wedges to serve\",\n \"weight\" + : 8.375\n }, {\n \"text\" : \"1.0 tsp black peppercorns\",\n \"weight\" + : 2.9\n }, {\n \"text\" : \"3 cm chunk root ginger\",\n \"weight\" + : 45.0\n }, {\n \"text\" : \"1.0 tbsp soy sauce\",\n \"weight\" + : 16.0\n } ],\n \"calories\" : 1739.8715,\n \"totalWeight\" + : 856.275,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1739.8715,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 118.61039000000001,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 33.9356405,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.76048,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 49.02800224999999,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 25.468128249999996,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 11.522575,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.9962,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 0.9890975,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 148.305335,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 588.0,\n \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1434.2775000000001,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 114.33075,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 193.4515,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n + \ \"label\" : \"Potassium\",\n \"quantity\" : 1785.1934999999999,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.88984,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 10.606322500000001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1200.4295,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 322.39050000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 17.231125,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.49257449999999997,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.9893949999999999,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 54.058597,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 2.85172025,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.39300000000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.39300000000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4304,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.568,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 2.517585,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.60255,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 86.99357499999999,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 182.4775230769231,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 169.6782025,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.8408583333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 7.9848,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 296.61067,\n \"unit\" : + \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 196.0,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 59.7615625,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 11.433074999999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 48.362875,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 51.00552857142856,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 43.83244444444445,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 70.70881666666668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 171.48992857142858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 35.82116666666667,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 28.718541666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 32.8383,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 58.19970588235294,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 270.292985,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 142.5860125,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.848250000000002,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 40.50666666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.392,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.587925,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 20.753187500000003,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 118.61039000000001,\n \"hasRDI\" + : true,\n \"daily\" : 182.4775230769231,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 33.9356405,\n \"hasRDI\" : true,\n \"daily\" : 169.6782025,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.76048,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 49.02800224999999,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 25.468128249999996,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 11.522575,\n \"hasRDI\" : true,\n \"daily\" + : 3.8408583333333333,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.526375,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.9962,\n \"hasRDI\" : + true,\n \"daily\" : 7.9848,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.9890975,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 148.305335,\n + \ \"hasRDI\" : true,\n \"daily\" : 296.61067,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 588.0,\n \"hasRDI\" : true,\n \"daily\" : 196.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1434.2775000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7615625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 114.33075,\n + \ \"hasRDI\" : true,\n \"daily\" : 11.433074999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 193.4515,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.362875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1785.1934999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.00552857142856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 7.88984,\n \"hasRDI\" + : true,\n \"daily\" : 43.83244444444445,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.606322500000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.70881666666668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1200.4295,\n \"hasRDI\" : true,\n \"daily\" + : 171.48992857142858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 322.39050000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 35.82116666666667,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 17.231125,\n \"hasRDI\" : true,\n \"daily\" + : 28.718541666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.49257449999999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.8383,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9893949999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 58.19970588235294,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 54.058597,\n \"hasRDI\" : true,\n \"daily\" + : 270.292985,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.85172025,\n \"hasRDI\" : true,\n \"daily\" + : 142.5860125,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 55.39300000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 13.848250000000002,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 55.39300000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.4304,\n \"hasRDI\" : true,\n \"daily\" + : 40.50666666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.568,\n \"hasRDI\" : true,\n \"daily\" + : 0.392,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2.517585,\n \"hasRDI\" : true,\n \"daily\" : 12.587925,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 16.60255,\n \"hasRDI\" : true,\n \"daily\" : 20.753187500000003,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4caf01683bf99ddc7c08c35774aae54c\",\n + \ \"label\" : \"Persian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8f8/8f810dfe198fa3e520d291f3fcf62bbf.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/7343/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/persian-chicken-4caf01683bf99ddc7c08c35774aae54c/chicken\",\n + \ \"yield\" : 5.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"2 large onions\", \"750 g chicken\", \"500 g mushrooms\", \"1 cup water\", + \"1 cup red wine\", \"2 teaspoons chicken stock\", \"200 ml mayonnaise\", + \"200 ml cream\", \"small bunch of parsley\", \"1 teaspoon curry powder\" + ],\n \"ingredients\" : [ {\n \"text\" : \"2 large onions\",\n + \ \"weight\" : 300.0\n }, {\n \"text\" : \"750 g chicken\",\n + \ \"weight\" : 750.0\n }, {\n \"text\" : \"500 g mushrooms\",\n + \ \"weight\" : 500.0\n }, {\n \"text\" : \"1 cup water\",\n + \ \"weight\" : 237.0\n }, {\n \"text\" : \"1 cup red wine\",\n + \ \"weight\" : 147.0\n }, {\n \"text\" : \"2 teaspoons chicken + stock\",\n \"weight\" : 10.0\n }, {\n \"text\" : \"200 + ml mayonnaise\",\n \"weight\" : 195.2759811031433\n }, {\n \"text\" + : \"200 ml cream\",\n \"weight\" : 201.53157530298427\n }, {\n + \ \"text\" : \"small bunch of parsley\",\n \"weight\" : 45.0\n + \ }, {\n \"text\" : \"1 teaspoon curry powder\",\n \"weight\" + : 2.0\n } ],\n \"calories\" : 4040.3437240290473,\n \"totalWeight\" + : 2387.8075564061273,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4040.3437240290473,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 340.63488831152455,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 101.69895025064481,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.7275,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 106.42951848978356,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 118.20076711431523,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 58.09753095095326,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 12.649,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 29.749830950953264,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 164.3585972937112,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 915.0558907953143,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1821.224409580271,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 389.2655239469398,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 287.11721027120893,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 4066.5386814772387,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 13.809659472590896,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 14.217522623196864,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1814.39957668785,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 1325.3647744952652,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 105.79318945181791,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0904069465666566,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.314854732833283,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 70.61282731436818,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.689888209578776,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.887756835545372,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.91072102712089,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 5.3415346982116345,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 759.5030104096954,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 202.01718620145238,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 524.0536743254224,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 508.4947512532241,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.365843650317753,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 50.596,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 328.7171945874224,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 305.0186302651048,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 75.88435039917795,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.92655239469398,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 71.77930256780223,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 116.18681947077825,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 76.72033040328276,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 94.78348415464576,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 259.19993952683575,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 147.26275272169613,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 176.32198241969652,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.69379643777711,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.99145487254606,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 353.0641365718409,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 184.4944104789388,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 66.63781575302986,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 48.129280592422866,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.9776802567802225,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 26.70767349105817,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 949.3787630121193,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 340.63488831152455,\n \"hasRDI\" : true,\n \"daily\" : 524.0536743254224,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 101.69895025064481,\n \"hasRDI\" : true,\n + \ \"daily\" : 508.4947512532241,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.42951848978356,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 118.20076711431523,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 58.09753095095326,\n \"hasRDI\" : true,\n \"daily\" : 19.365843650317753,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.448530950953256,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.649,\n \"hasRDI\" : + true,\n \"daily\" : 50.596,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 29.749830950953264,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 164.3585972937112,\n + \ \"hasRDI\" : true,\n \"daily\" : 328.7171945874224,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 915.0558907953143,\n \"hasRDI\" : true,\n \"daily\" : 305.0186302651048,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1821.224409580271,\n \"hasRDI\" : true,\n \"daily\" : 75.88435039917795,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 389.2655239469398,\n \"hasRDI\" : true,\n \"daily\" : 38.92655239469398,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 287.11721027120893,\n \"hasRDI\" : true,\n \"daily\" : 71.77930256780223,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4066.5386814772387,\n \"hasRDI\" : true,\n \"daily\" : 116.18681947077825,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.809659472590896,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.72033040328276,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.217522623196864,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.78348415464576,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1814.39957668785,\n + \ \"hasRDI\" : true,\n \"daily\" : 259.19993952683575,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1325.3647744952652,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.26275272169613,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 105.79318945181791,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.32198241969652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0904069465666566,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.69379643777711,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.314854732833283,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.99145487254606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 70.61282731436818,\n + \ \"hasRDI\" : true,\n \"daily\" : 353.0641365718409,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.689888209578776,\n + \ \"hasRDI\" : true,\n \"daily\" : 184.4944104789388,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : true,\n \"daily\" : 66.63781575302986,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.887756835545372,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.129280592422866,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.91072102712089,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9776802567802225,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.3415346982116345,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.70767349105817,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 759.5030104096954,\n + \ \"hasRDI\" : true,\n \"daily\" : 949.3787630121193,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f9d8edbe2dbafcea624b41c281c835f3\",\n + \ \"label\" : \"Persian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/bd4/bd47ac0557ade02871750518d56ba928.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/7343/persian-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/persian-chicken-f9d8edbe2dbafcea624b41c281c835f3/chicken\",\n + \ \"yield\" : 5.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"2 large onions\", \"750 g chicken\", \"500 g mushrooms\", \"1 cup water\", + \"1 cup red wine\", \"2 tsps chicken stock\", \"200 ml mayonnaise\", \"200 + ml cream\", \"Small bunch of parsley\", \"1 tsp curry powder\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 large onions\",\n \"weight\" : 300.0\n + \ }, {\n \"text\" : \"750 g chicken\",\n \"weight\" : 750.0\n + \ }, {\n \"text\" : \"500 g mushrooms\",\n \"weight\" : + 500.0\n }, {\n \"text\" : \"1 cup water\",\n \"weight\" + : 237.0\n }, {\n \"text\" : \"1 cup red wine\",\n \"weight\" + : 147.0\n }, {\n \"text\" : \"2 tsps chicken stock\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"200 ml mayonnaise\",\n \"weight\" + : 195.2759811031433\n }, {\n \"text\" : \"200 ml cream\",\n \"weight\" + : 201.53157530298427\n }, {\n \"text\" : \"Small bunch of parsley\",\n + \ \"weight\" : 45.0\n }, {\n \"text\" : \"1 tsp curry powder\",\n + \ \"weight\" : 2.0\n } ],\n \"calories\" : 4040.3437240290473,\n + \ \"totalWeight\" : 2387.8075564061273,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 4040.3437240290473,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 340.63488831152455,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 101.69895025064481,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7275,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 106.42951848978356,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 118.20076711431523,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 58.09753095095326,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.649,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 29.749830950953264,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 164.3585972937112,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 915.0558907953143,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1821.224409580271,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 389.2655239469398,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 287.11721027120893,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4066.5386814772387,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 13.809659472590896,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 14.217522623196864,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1814.39957668785,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1325.3647744952652,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 105.79318945181791,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.0904069465666566,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.314854732833283,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 70.61282731436818,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.689888209578776,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 266.5512630121194,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.887756835545372,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 3.91072102712089,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 5.3415346982116345,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 759.5030104096954,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 202.01718620145238,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 524.0536743254224,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 508.4947512532241,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.365843650317753,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 50.596,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 328.7171945874224,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 305.0186302651048,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 75.88435039917795,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.92655239469398,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 71.77930256780223,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 116.18681947077825,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 76.72033040328276,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 94.78348415464576,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 259.19993952683575,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 147.26275272169613,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 176.32198241969652,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.69379643777711,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.99145487254606,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 353.0641365718409,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 184.4944104789388,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 66.63781575302986,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 48.129280592422866,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.9776802567802225,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 26.70767349105817,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 949.3787630121193,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 340.63488831152455,\n \"hasRDI\" : true,\n \"daily\" : 524.0536743254224,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 101.69895025064481,\n \"hasRDI\" : true,\n + \ \"daily\" : 508.4947512532241,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.42951848978356,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 118.20076711431523,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 58.09753095095326,\n \"hasRDI\" : true,\n \"daily\" : 19.365843650317753,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.448530950953256,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.649,\n \"hasRDI\" : + true,\n \"daily\" : 50.596,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 29.749830950953264,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 164.3585972937112,\n + \ \"hasRDI\" : true,\n \"daily\" : 328.7171945874224,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 915.0558907953143,\n \"hasRDI\" : true,\n \"daily\" : 305.0186302651048,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1821.224409580271,\n \"hasRDI\" : true,\n \"daily\" : 75.88435039917795,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 389.2655239469398,\n \"hasRDI\" : true,\n \"daily\" : 38.92655239469398,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 287.11721027120893,\n \"hasRDI\" : true,\n \"daily\" : 71.77930256780223,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4066.5386814772387,\n \"hasRDI\" : true,\n \"daily\" : 116.18681947077825,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.809659472590896,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.72033040328276,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.217522623196864,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.78348415464576,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1814.39957668785,\n + \ \"hasRDI\" : true,\n \"daily\" : 259.19993952683575,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1325.3647744952652,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.26275272169613,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 105.79318945181791,\n + \ \"hasRDI\" : true,\n \"daily\" : 176.32198241969652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0904069465666566,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.69379643777711,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.314854732833283,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.99145487254606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 70.61282731436818,\n + \ \"hasRDI\" : true,\n \"daily\" : 353.0641365718409,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.689888209578776,\n + \ \"hasRDI\" : true,\n \"daily\" : 184.4944104789388,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : true,\n \"daily\" : 66.63781575302986,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 266.5512630121194,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.887756835545372,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.129280592422866,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.91072102712089,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9776802567802225,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.3415346982116345,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.70767349105817,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 759.5030104096954,\n + \ \"hasRDI\" : true,\n \"daily\" : 949.3787630121193,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_625f1b85dff4e54668eb60bf20300db5\",\n + \ \"label\" : \"Devilled Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/583/5832a81f9773ad4749048b1b867685af.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3595/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/devilled-chicken-625f1b85dff4e54668eb60bf20300db5/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2.0 tsp white + wine vinegar\", \"4 boneless chicken thighs\", \"a pinch cayenne pepper\", + \"1.0 tsp mustard powder\", \"2.0 tsp tomato purée\", \"baked potato or baked + sweet potato, to serve\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2.0 tsp white wine vinegar\",\n \"weight\" : 10.0\n }, {\n + \ \"text\" : \"4 boneless chicken thighs\",\n \"weight\" : 596.0\n + \ }, {\n \"text\" : \"a pinch cayenne pepper\",\n \"weight\" + : 0.45\n }, {\n \"text\" : \"1.0 tsp mustard powder\",\n \"weight\" + : 5.0\n }, {\n \"text\" : \"2.0 tsp tomato purée\",\n \"weight\" + : 10.416666666666668\n }, {\n \"text\" : \"baked potato or baked + sweet potato, to serve\",\n \"weight\" : 198.73333333333335\n } + ],\n \"calories\" : 1520.1206666666667,\n \"totalWeight\" : 820.6,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1520.1206666666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 99.52054333333332,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 27.059000166666667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.50705,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 41.49306616666666,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 20.859933999999996,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 45.58417833333334,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 5.091183333333334,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 2.7459750000000005,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 104.09880666666666,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 584.08,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 569.0343333333333,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 83.783,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 172.47983333333335,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2371.4655000000002,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.483263333333334,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 8.465626666666667,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1088.1058333333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 151.3901666666667,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 17.957833333333337,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.5811615,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.9755608333333332,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 30.46403816666667,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.799286,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 71.52350000000001,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 71.52350000000001,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.6952,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.596,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.748156666666667,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 17.276183333333332,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 76.00603333333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 153.10852820512818,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 135.29500083333335,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.194726111111112,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 20.364733333333337,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 208.19761333333332,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 194.69333333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 23.709763888888887,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 8.3783,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 43.11995833333334,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 67.75615714285715,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 36.018129629629634,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 56.437511111111114,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 155.44369047619048,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 16.82112962962963,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 29.929722222222228,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 38.744099999999996,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 57.38593137254901,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 152.32019083333336,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 139.9643,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 17.880875000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 61.586666666666666,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.149,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 8.740783333333336,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 21.595229166666662,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 99.52054333333332,\n \"hasRDI\" : true,\n \"daily\" + : 153.10852820512818,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 27.059000166666667,\n \"hasRDI\" + : true,\n \"daily\" : 135.29500083333335,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.50705,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.49306616666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.859933999999996,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 45.58417833333334,\n \"hasRDI\" : true,\n \"daily\" : 15.194726111111112,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 40.49299500000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.091183333333334,\n \"hasRDI\" + : true,\n \"daily\" : 20.364733333333337,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 2.7459750000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 104.09880666666666,\n \"hasRDI\" : true,\n \"daily\" : 208.19761333333332,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 584.08,\n \"hasRDI\" : true,\n \"daily\" + : 194.69333333333336,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 569.0343333333333,\n \"hasRDI\" : true,\n \"daily\" + : 23.709763888888887,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 83.783,\n \"hasRDI\" : true,\n \"daily\" + : 8.3783,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 172.47983333333335,\n \"hasRDI\" : true,\n \"daily\" : 43.11995833333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2371.4655000000002,\n \"hasRDI\" : true,\n \"daily\" : 67.75615714285715,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.483263333333334,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.018129629629634,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.465626666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.437511111111114,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1088.1058333333333,\n + \ \"hasRDI\" : true,\n \"daily\" : 155.44369047619048,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 151.3901666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.82112962962963,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.957833333333337,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.929722222222228,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5811615,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.744099999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9755608333333332,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.38593137254901,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 30.46403816666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 152.32019083333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.799286,\n + \ \"hasRDI\" : true,\n \"daily\" : 139.9643,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.52350000000001,\n \"hasRDI\" : true,\n \"daily\" : 17.880875000000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.52350000000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.6952,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.586666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.596,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.149,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.748156666666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.740783333333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.276183333333332,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.595229166666662,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8092eb8bc92eb615593a0bf3f591a290\",\n + \ \"label\" : \"Sesame Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ffe/ffecc043f9cedcf1cea3a5affd67ddea.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/sesame-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/sesame-chicken-8092eb8bc92eb615593a0bf3f591a290/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ \"Gluten\", + \"Wheat\" ],\n \"ingredientLines\" : [ \"450 grams chicken breast - skinless + boneless (2 small breasts) cut into 1-inch chunks\", \"1 egg white\", \"1 + teaspoon ginger juice\", \"1/4 teaspoon salt\", \"1/8 teaspoon white pepper + - ground\", \"2 tablespoons soy sauce\", \"2 tablespoons sugar - granulated\", + \"2 tablespoons Shaoxing wine\", \"2 teaspoons rice vinegar\", \"1 teaspoon + toasted sesame oil\", \"2 tablespoons potato starch\", \"1 cup sesame seeds + - whole\", \"scallions for garnish\" ],\n \"ingredients\" : [ {\n \"text\" + : \"450 grams chicken breast - skinless boneless (2 small breasts) cut into + 1-inch chunks\",\n \"weight\" : 261.0\n }, {\n \"text\" + : \"1 egg white\",\n \"weight\" : 26.4\n }, {\n \"text\" + : \"1 teaspoon ginger juice\",\n \"weight\" : 2.0\n }, {\n \"text\" + : \"1/4 teaspoon salt\",\n \"weight\" : 1.5\n }, {\n \"text\" + : \"1/8 teaspoon white pepper - ground\",\n \"weight\" : 0.3\n }, + {\n \"text\" : \"2 tablespoons soy sauce\",\n \"weight\" : 32.0\n + \ }, {\n \"text\" : \"2 tablespoons sugar - granulated\",\n \"weight\" + : 25.2\n }, {\n \"text\" : \"2 tablespoons Shaoxing wine\",\n + \ \"weight\" : 29.5\n }, {\n \"text\" : \"2 teaspoons rice + vinegar\",\n \"weight\" : 10.0\n }, {\n \"text\" : \"1 + teaspoon toasted sesame oil\",\n \"weight\" : 4.5\n }, {\n \"text\" + : \"2 tablespoons potato starch\",\n \"weight\" : 16.0\n }, {\n + \ \"text\" : \"1 cup sesame seeds - whole\",\n \"weight\" : 144.0\n + \ } ],\n \"calories\" : 1531.7649999999999,\n \"totalWeight\" + : 550.9,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1531.7649999999999,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 100.42394,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 17.630418,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.27404999999999996,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 38.805827,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 38.43830799999999,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 76.70411,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 17.5106,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 26.16809,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 25.1496,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 85.56195,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 167.04,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1985.4959999999999,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1449.765,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 602.229,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1469.2600000000002,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 23.623400000000004,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 13.59598,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n + \ \"label\" : \"Phosphorus\",\n \"quantity\" : 1426.568,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 62.64,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.163,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.3171270000000002,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.758857,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 33.15652599999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.58901,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 156.20100000000002,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 156.20100000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.91116,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.044,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 1.1328999999999998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.614,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 76.58825,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 154.49836923076924,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 88.15209,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.568036666666668,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 70.0424,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 171.1239,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 55.68,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 82.72899999999998,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 144.9765,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 150.55725,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 41.97885714285715,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 131.2411111111111,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 90.63986666666668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 203.79542857142854,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 6.96,\n \"unit\" : \"%\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.27166666666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 87.80846666666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 44.63864705882353,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 165.78262999999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 129.4505,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 39.050250000000005,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 15.186,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.261,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 5.6644999999999985,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.7675,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 100.42394,\n \"hasRDI\" : true,\n \"daily\" : 154.49836923076924,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 17.630418,\n \"hasRDI\" : true,\n \"daily\" + : 88.15209,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.27404999999999996,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 38.805827,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 38.43830799999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 76.70411,\n \"hasRDI\" : true,\n \"daily\" : 25.568036666666668,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.19351,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 17.5106,\n \"hasRDI\" : + true,\n \"daily\" : 70.0424,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 26.16809,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.1496,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 85.56195,\n + \ \"hasRDI\" : true,\n \"daily\" : 171.1239,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 167.04,\n \"hasRDI\" : true,\n \"daily\" : 55.68,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1985.4959999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.72899999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1449.765,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.9765,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 602.229,\n + \ \"hasRDI\" : true,\n \"daily\" : 150.55725,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1469.2600000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.97885714285715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 23.623400000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 131.2411111111111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.59598,\n \"hasRDI\" + : true,\n \"daily\" : 90.63986666666668,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1426.568,\n \"hasRDI\" + : true,\n \"daily\" : 203.79542857142854,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 62.64,\n \"hasRDI\" + : true,\n \"daily\" : 6.96,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.163,\n \"hasRDI\" : true,\n \"daily\" + : 0.27166666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.3171270000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 87.80846666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.758857,\n \"hasRDI\" + : true,\n \"daily\" : 44.63864705882353,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 33.15652599999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 165.78262999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.58901,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.4505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 156.20100000000002,\n \"hasRDI\" : true,\n \"daily\" : 39.050250000000005,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 156.20100000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.91116,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.186,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.044,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.261,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1328999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.6644999999999985,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.614,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7675,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_bda48324db73e0b05e15816a361e3c25\",\n + \ \"label\" : \"Chicken Cacciatore\",\n \"image\" : \"https://www.edamam.com/web-img/844/844767d0693e8c662cf034909e97d799.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/4251/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-cacciatore-bda48324db73e0b05e15816a361e3c25/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"olive oil\", \"1 onion , finely chopped\", + \"a handful basil\", \"4.0 tbsp mascarpone\", \"2 x 400g tins cherry tomatoes\", + \"6 chicken breasts , skin on\", \"2 garlic cloves , crushed\" ],\n \"ingredients\" + : [ {\n \"text\" : \"olive oil\",\n \"weight\" : 29.5936\n }, + {\n \"text\" : \"1 onion , finely chopped\",\n \"weight\" : + 125.0\n }, {\n \"text\" : \"a handful basil\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"4.0 tbsp mascarpone\",\n \"weight\" + : 57.0\n }, {\n \"text\" : \"2 x 400g tins cherry tomatoes\",\n + \ \"weight\" : 800.0\n }, {\n \"text\" : \"6 chicken breasts + , skin on\",\n \"weight\" : 1176.0\n }, {\n \"text\" : + \"2 garlic cloves , crushed\",\n \"weight\" : 6.0\n } ],\n \"calories\" + : 3190.6474240000002,\n \"totalWeight\" : 2205.5936,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3190.6474240000002,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 228.04780000000002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 66.055084288,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.14072,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 100.163056496,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 42.664894528000005,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 47.416500000000006,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.043,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 28.2657,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 231.29070000000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 944.7,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1078.341872,\n \"unit\" : \"mg\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 326.36593600000003,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 350.01,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 4439.555936,\n \"unit\" : \"mg\"\n },\n \"FE\" : + {\n \"label\" : \"Iron\",\n \"quantity\" : 13.87122416,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 17.4356,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2033.2900000000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1058.46,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 141.69799999999998,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.08658,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6839199999999999,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 85.10965,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 5.018649999999999,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 228.92000000000002,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 228.92000000000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 3.7881,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.694,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 12.3857816,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 150.68634720000003,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 159.53237120000003,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 350.84276923076925,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 330.27542144000006,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 15.805500000000002,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 48.172,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 462.5814,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 314.9,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 44.930911333333334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 32.636593600000005,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.5025,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 126.84445531428571,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 77.06235644444445,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 116.23733333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 290.47,\n \"unit\" : + \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 117.60666666666667,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 236.1633333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 72.43866666666668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 99.05411764705882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 425.54825,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 250.93249999999995,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 57.23,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 63.135,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6735,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 61.928908,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 188.35793400000006,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 228.04780000000002,\n \"hasRDI\" + : true,\n \"daily\" : 350.84276923076925,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 66.055084288,\n \"hasRDI\" : true,\n \"daily\" : 330.27542144000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.14072,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 100.163056496,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 42.664894528000005,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 47.416500000000006,\n \"hasRDI\" : true,\n \"daily\" + : 15.805500000000002,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 35.37350000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 12.043,\n \"hasRDI\" : true,\n \"daily\" : 48.172,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars\",\n \"tag\" + : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n \"total\" + : 28.2657,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 231.29070000000002,\n \"hasRDI\" : true,\n \"daily\" : 462.5814,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 944.7,\n \"hasRDI\" : true,\n \"daily\" + : 314.9,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1078.341872,\n \"hasRDI\" : true,\n \"daily\" + : 44.930911333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 326.36593600000003,\n \"hasRDI\" : true,\n \"daily\" + : 32.636593600000005,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 350.01,\n \"hasRDI\" : true,\n \"daily\" + : 87.5025,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4439.555936,\n \"hasRDI\" : true,\n \"daily\" : 126.84445531428571,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.87122416,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.06235644444445,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 17.4356,\n \"hasRDI\" + : true,\n \"daily\" : 116.23733333333334,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2033.2900000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 290.47,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1058.46,\n + \ \"hasRDI\" : true,\n \"daily\" : 117.60666666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 141.69799999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 236.1633333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.08658,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.43866666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.6839199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 99.05411764705882,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.10965,\n + \ \"hasRDI\" : true,\n \"daily\" : 425.54825,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.018649999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 250.93249999999995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 228.92000000000002,\n \"hasRDI\" : true,\n \"daily\" : 57.23,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 228.92000000000002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.7881,\n + \ \"hasRDI\" : true,\n \"daily\" : 63.135,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.694,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6735,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.3857816,\n + \ \"hasRDI\" : true,\n \"daily\" : 61.928908,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 150.68634720000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.35793400000006,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8bb8d39c26e754d54b024d7863da18dc\",\n + \ \"label\" : \"Chicken and Dumplings\",\n \"image\" : \"https://www.edamam.com/web-img/51e/51ec6da33b8078114bf995d4b5d2a682.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/11995-chicken-and-dumplings\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-and-dumplings-8bb8d39c26e754d54b024d7863da18dc/chicken\",\n + \ \"yield\" : 16.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Soy\" ],\n \"ingredientLines\" : [ \"1 whole + chicken\", \"6 cups flour\", \"1 1/2 cup self-rising flour\", \"3/4 cups shortening\", + \"3 cups whole milk\" ],\n \"ingredients\" : [ {\n \"text\" : + \"1 whole chicken\",\n \"weight\" : 920.0\n }, {\n \"text\" + : \"6 cups flour\",\n \"weight\" : 750.0\n }, {\n \"text\" + : \"1 1/2 cup self-rising flour\",\n \"weight\" : 187.5\n }, {\n + \ \"text\" : \"3/4 cups shortening\",\n \"weight\" : 153.75\n + \ }, {\n \"text\" : \"3 cups whole milk\",\n \"weight\" + : 732.0\n } ],\n \"calories\" : 7177.42,\n \"totalWeight\" + : 2743.25,\n \"totalTime\" : 92.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 7177.42,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 325.214625,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 93.1618,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 21.13205,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 127.48906500000001,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 78.20878750000001,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 746.6235,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 25.3125,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 39.4035,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 290.19675,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 763.2000000000002,\n \"unit\" : \"mg\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 3216.785,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 1676.1475,\n \"unit\" : + \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 457.825,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 3740.04,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n + \ \"label\" : \"Iron\",\n \"quantity\" : 26.138475,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 21.172900000000002,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3892.905,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 713.9200000000001,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 14.720000000000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 3.08322,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.41733,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 83.53068000000002,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.9088075,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 862.4250000000001,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 358.05,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 296.25,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 6.146000000000001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 11.356,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 13.241025,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 100.60350000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 358.871,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 500.33019230769236,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 465.809,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 248.8745,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 101.25,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 580.3935,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 254.40000000000006,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 134.03270833333335,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 167.61475,\n \"unit\" : + \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 114.45625,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 106.85828571428571,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 145.21375,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 141.1526666666667,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 556.1292857142857,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 79.32444444444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 24.53333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 205.548,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 201.0194117647059,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 417.65340000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 195.440375,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 215.60625,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 102.43333333333335,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.839,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 66.205125,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 125.75437500000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 325.214625,\n \"hasRDI\" : true,\n \"daily\" : 500.33019230769236,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 93.1618,\n \"hasRDI\" : true,\n \"daily\" + : 465.809,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 21.13205,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 127.48906500000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.20878750000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 746.6235,\n \"hasRDI\" : true,\n \"daily\" : 248.8745,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 721.311,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 25.3125,\n \"hasRDI\" : true,\n \"daily\" + : 101.25,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 39.4035,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 290.19675,\n + \ \"hasRDI\" : true,\n \"daily\" : 580.3935,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 763.2000000000002,\n \"hasRDI\" : true,\n \"daily\" : 254.40000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3216.785,\n \"hasRDI\" : true,\n \"daily\" : 134.03270833333335,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1676.1475,\n \"hasRDI\" : true,\n \"daily\" : 167.61475,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 457.825,\n \"hasRDI\" : true,\n \"daily\" : 114.45625,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3740.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 106.85828571428571,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 26.138475,\n \"hasRDI\" + : true,\n \"daily\" : 145.21375,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.172900000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 141.1526666666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3892.905,\n \"hasRDI\" : true,\n \"daily\" + : 556.1292857142857,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 713.9200000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 79.32444444444444,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.720000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.53333333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.08322,\n \"hasRDI\" : true,\n \"daily\" + : 205.548,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin + (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.41733,\n \"hasRDI\" : true,\n \"daily\" : 201.0194117647059,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 83.53068000000002,\n \"hasRDI\" : true,\n \"daily\" : 417.65340000000003,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.9088075,\n \"hasRDI\" : true,\n \"daily\" : 195.440375,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 862.4250000000001,\n \"hasRDI\" : true,\n \"daily\" + : 215.60625,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 358.05,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 296.25,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.146000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 102.43333333333335,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 11.356,\n \"hasRDI\" : true,\n \"daily\" + : 2.839,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 13.241025,\n \"hasRDI\" : true,\n \"daily\" : 66.205125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 100.60350000000001,\n \"hasRDI\" : true,\n \"daily\" : 125.75437500000001,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f65924d9921fbd3a11a45b82d3765b79\",\n + \ \"label\" : \"Poppy-seed crusted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/369/369b1ba45563c30b2029ddc4eb4de3a5.png\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/6274-poppy-seed-crusted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/poppy-seed-crusted-chicken-f65924d9921fbd3a11a45b82d3765b79/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 filleted + chicken breasts\", \"2-3 tablespoons vegetable oil, to shallow fry\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"4 filleted chicken breasts\",\n + \ \"weight\" : 696.0\n }, {\n \"text\" : \"2-3 tablespoons + vegetable oil, to shallow fry\",\n \"weight\" : 35.0\n } ],\n + \ \"calories\" : 1506.52,\n \"totalWeight\" : 731.0,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1506.52,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 99.38,\n \"unit\" : \"g\"\n },\n \"FASAT\" : {\n + \ \"label\" : \"Saturated\",\n \"quantity\" : 20.792450000000002,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.99925,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 51.78405,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 19.6259,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 145.116,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 445.44,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 438.48,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 76.56,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 174.0,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1531.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 5.1504,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.5680000000000005,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 1211.04,\n \"unit\" : \"mg\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 167.04,\n \"unit\" : \"µg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.43848,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.5916,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 68.95967999999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.6888,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 27.84,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 27.84,\n \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 2.3664,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 2.7840000000000003,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 9.509200000000002,\n \"unit\" : \"mg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 75.326,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 152.8923076923077,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 103.96225000000001,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 290.232,\n \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 148.48,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 18.27,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 7.656,\n \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 43.5,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 43.74857142857143,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 28.613333333333337,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 37.120000000000005,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 173.00571428571428,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 18.56,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 29.232,\n \"unit\" : \"%\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 34.800000000000004,\n + \ \"unit\" : \"%\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 344.79839999999996,\n \"unit\" + : \"%\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 184.44,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 6.96,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 39.440000000000005,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6960000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 47.54600000000001,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 99.38,\n \"hasRDI\" : true,\n \"daily\" : 152.8923076923077,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 20.792450000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 103.96225000000001,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.99925,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 51.78405,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 19.6259,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n \"tag\" + : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Fiber\",\n \"tag\" + : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars\",\n \"tag\" + : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 145.116,\n \"hasRDI\" : true,\n \"daily\" : 290.232,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 445.44,\n \"hasRDI\" : true,\n \"daily\" : 148.48,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 438.48,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.27,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.56,\n \"hasRDI\" + : true,\n \"daily\" : 7.656,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 174.0,\n \"hasRDI\" : true,\n \"daily\" + : 43.5,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1531.2,\n \"hasRDI\" : true,\n \"daily\" : 43.74857142857143,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.1504,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.613333333333337,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.5680000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.120000000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1211.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 173.00571428571428,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 167.04,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.56,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" : + \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.43848,\n \"hasRDI\" : true,\n \"daily\" + : 29.232,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin + (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.5916,\n \"hasRDI\" : true,\n \"daily\" : 34.800000000000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 68.95967999999999,\n \"hasRDI\" : true,\n \"daily\" : 344.79839999999996,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.6888,\n \"hasRDI\" : true,\n \"daily\" : 184.44,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 27.84,\n \"hasRDI\" : true,\n \"daily\" : 6.96,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.84,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.3664,\n \"hasRDI\" : true,\n \"daily\" + : 39.440000000000005,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.7840000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.6960000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 9.509200000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.54600000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : + false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_76273bfe3782862d768d91c888893310\",\n + \ \"label\" : \"Spanish Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/405/405dae6b8f22f7e5fdf79a73b2b39315.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/12696/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/spanish-chicken-76273bfe3782862d768d91c888893310/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"zest and juice 1 lemon\", \"3 onions + , thinly sliced\", \"150.0ml stock\", \"2.0 tsp paprika\", \"8 chicken thighs + , skin on and bone in\", \"1.0 tbsp olive oil\", \"good handful parsley , + roughly chopped\" ],\n \"ingredients\" : [ {\n \"text\" : \"zest + and juice 1 lemon\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"3 onions , thinly sliced\",\n \"weight\" : 375.0\n }, {\n + \ \"text\" : \"150.0ml stock\",\n \"weight\" : 152.1631021582935\n + \ }, {\n \"text\" : \"2.0 tsp paprika\",\n \"weight\" : + 4.6\n }, {\n \"text\" : \"8 chicken thighs , skin on and bone + in\",\n \"weight\" : 1192.0\n }, {\n \"text\" : \"1.0 tbsp + olive oil\",\n \"weight\" : 13.5\n }, {\n \"text\" : \"good + handful parsley , roughly chopped\",\n \"weight\" : 15.0\n } ],\n + \ \"calories\" : 2993.630716776986,\n \"totalWeight\" : 1810.2631021582933,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2993.630716776986,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.57759722589952,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 56.57696355792812,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.0132,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 93.63747425456127,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 43.562558407597166,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 52.21499750618776,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 10.0994,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 20.35731701410104,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 206.611850174389,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1172.7248930647488,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1211.0712360863597,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 220.7038930647488,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 278.47452408633177,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3407.106257266208,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 11.538682514532416,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 16.621808343021613,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2053.6980375827393,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 452.70963102158294,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 78.78572620431659,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.1471970857554026,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.0418686368345496,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 58.692973538187374,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.837445492316559,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 146.05215510791467,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 146.05215510791467,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.3904,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.192,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 6.099198930647488,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 284.65712620431657,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 149.6815358388493,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 330.11938034753774,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 282.8848177896406,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 17.40499916872925,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 40.3976,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 413.223700348778,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 390.9082976882496,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.46130150359832,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.07038930647488,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.61863102158294,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 97.3458930647488,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.10379174740231,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 110.81205562014408,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 293.3854339403913,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 50.30107011350921,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 131.309543673861,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 76.47980571702684,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 120.10991981379703,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 293.46486769093684,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 241.87227461582793,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 36.51303877697867,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 123.17333333333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.298,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 30.495994653237442,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 355.8214077553957,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 214.57759722589952,\n \"hasRDI\" + : true,\n \"daily\" : 330.11938034753774,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 56.57696355792812,\n \"hasRDI\" : true,\n \"daily\" : + 282.8848177896406,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.0132,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 93.63747425456127,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.562558407597166,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 52.21499750618776,\n \"hasRDI\" : true,\n \"daily\" : 17.40499916872925,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 42.115597506187754,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.0994,\n \"hasRDI\" + : true,\n \"daily\" : 40.3976,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 20.35731701410104,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 206.611850174389,\n + \ \"hasRDI\" : true,\n \"daily\" : 413.223700348778,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1172.7248930647488,\n \"hasRDI\" : true,\n \"daily\" : 390.9082976882496,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1211.0712360863597,\n \"hasRDI\" : true,\n \"daily\" : 50.46130150359832,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 220.7038930647488,\n \"hasRDI\" : true,\n \"daily\" : 22.07038930647488,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 278.47452408633177,\n \"hasRDI\" : true,\n \"daily\" : 69.61863102158294,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3407.106257266208,\n \"hasRDI\" : true,\n \"daily\" : 97.3458930647488,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.538682514532416,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.10379174740231,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.621808343021613,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.81205562014408,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2053.6980375827393,\n + \ \"hasRDI\" : true,\n \"daily\" : 293.3854339403913,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 452.70963102158294,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.30107011350921,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 78.78572620431659,\n + \ \"hasRDI\" : true,\n \"daily\" : 131.309543673861,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1471970857554026,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.47980571702684,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0418686368345496,\n + \ \"hasRDI\" : true,\n \"daily\" : 120.10991981379703,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.692973538187374,\n + \ \"hasRDI\" : true,\n \"daily\" : 293.46486769093684,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.837445492316559,\n + \ \"hasRDI\" : true,\n \"daily\" : 241.87227461582793,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 146.05215510791467,\n \"hasRDI\" : true,\n \"daily\" : 36.51303877697867,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 146.05215510791467,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.3904,\n + \ \"hasRDI\" : true,\n \"daily\" : 123.17333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.192,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.298,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.099198930647488,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.495994653237442,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 284.65712620431657,\n + \ \"hasRDI\" : true,\n \"daily\" : 355.8214077553957,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e33f20984ebf3b5512a0554bfb7f7daf\",\n + \ \"label\" : \"Chicken Heart Yakitori Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/ab1/ab17ff28aa19992832333bb9f931db35.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/05/chicken-heart-yakitori-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-heart-yakitori-recipe-e33f20984ebf3b5512a0554bfb7f7daf/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 pound chicken hearts\", \"For the + sauce:\", \"2 chicken carcasses cut into 6 to 8 pieces\", \"1 cup sake\", + \"1 cup mirin\", \"1 to 1/2 cups soy sauce, depending on darkness\", \"3 tablespoons + sugar\", \"Freshly ground black pepper\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"1 pound chicken hearts\",\n \"weight\" : 453.59237\n + \ }, {\n \"text\" : \"2 chicken carcasses cut into 6 to 8 pieces\",\n + \ \"weight\" : 1000.0\n }, {\n \"text\" : \"1 cup sake\",\n + \ \"weight\" : 232.8\n }, {\n \"text\" : \"1 cup mirin\",\n + \ \"weight\" : 232.8\n }, {\n \"text\" : \"1 to 1/2 cups + soy sauce, depending on darkness\",\n \"weight\" : 255.0\n }, + {\n \"text\" : \"3 tablespoons sugar\",\n \"weight\" : 37.8\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 6.63597711\n } ],\n \"calories\" : 4805.9926286461005,\n \"totalWeight\" + : 2218.62834711,\n \"totalTime\" : 30.0,\n \"totalNutrients\" : + {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4805.9926286461005,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 331.390000974786,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 95.7440798433712,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 133.5235790398429,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 74.4292302785578,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 81.108153188845,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.7189022088300003,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 38.786870253504,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 37.724399999999996,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 234.808091556729,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 1406.8856232,\n \"unit\" : \"mg\"\n },\n \"NA\" : + {\n \"label\" : \"Sodium\",\n \"quantity\" : 14993.825549222001,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 321.6364629973,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 446.0223763581,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 3552.9207069919,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 41.260458629381,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 44.886105310609004,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 2394.5793387338003,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 792.6150271197,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.514955840000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2907772576788001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 4.902029212398,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 76.1745646454673,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.9296432253901004,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 423.4146225087,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 423.4146225087,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 35.566883773,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 3.7690141619440003,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 34.86309452907,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 240.29963143230503,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 509.83077073044,\n \"unit\" : \"%\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 478.720399216856,\n \"unit\" : \"%\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 27.03605106294833,\n + \ \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 14.875608835320001,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 469.616183113458,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 468.9618744,\n \"unit\" : \"%\"\n },\n \"NA\" : {\n + \ \"label\" : \"Sodium\",\n \"quantity\" : 624.7427312175834,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 32.16364629973,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 111.505594089525,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 101.51202019976856,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 229.2247701632278,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 299.2407020707267,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 342.0827626762572,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 88.06833634663333,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 50.858259733333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 86.05181717858669,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 288.3546595528236,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 380.8728232273365,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.482161269505,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 105.85365562717499,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 592.7813962166666,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 18.845070809720003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 43.578868161337496,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 331.390000974786,\n \"hasRDI\" : true,\n \"daily\" : 509.83077073044,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 95.7440798433712,\n \"hasRDI\" : true,\n \"daily\" + : 478.720399216856,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.0,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 133.5235790398429,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 74.4292302785578,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 81.108153188845,\n \"hasRDI\" : true,\n \"daily\" : 27.03605106294833,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 77.38925098001499,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.7189022088300003,\n \"hasRDI\" + : true,\n \"daily\" : 14.875608835320001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 38.786870253504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 37.724399999999996,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 234.808091556729,\n \"hasRDI\" + : true,\n \"daily\" : 469.616183113458,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1406.8856232,\n + \ \"hasRDI\" : true,\n \"daily\" : 468.9618744,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 14993.825549222001,\n + \ \"hasRDI\" : true,\n \"daily\" : 624.7427312175834,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 321.6364629973,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.16364629973,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 446.0223763581,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.505594089525,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3552.9207069919,\n + \ \"hasRDI\" : true,\n \"daily\" : 101.51202019976856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 41.260458629381,\n \"hasRDI\" + : true,\n \"daily\" : 229.2247701632278,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 44.886105310609004,\n \"hasRDI\" : true,\n + \ \"daily\" : 299.2407020707267,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2394.5793387338003,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.0827626762572,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 792.6150271197,\n \"hasRDI\" : true,\n + \ \"daily\" : 88.06833634663333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 30.514955840000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 50.858259733333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2907772576788001,\n \"hasRDI\" : true,\n + \ \"daily\" : 86.05181717858669,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.902029212398,\n \"hasRDI\" + : true,\n \"daily\" : 288.3546595528236,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 76.1745646454673,\n + \ \"hasRDI\" : true,\n \"daily\" : 380.8728232273365,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9296432253901004,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.482161269505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 423.4146225087,\n \"hasRDI\" : true,\n \"daily\" : 105.85365562717499,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 423.4146225087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.566883773,\n + \ \"hasRDI\" : true,\n \"daily\" : 592.7813962166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.7690141619440003,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.845070809720003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.86309452907,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.578868161337496,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1ddfbba4f8e369fce49b4cd7a823fef1\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a59/a598a747f41caf304543534e5d6a560a.jpeg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Roast-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-1ddfbba4f8e369fce49b4cd7a823fef1/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 oz. good + butter at room temperature\", \"1 4-lb. free-range chicken\", \"Salt and pepper\", + \"1 lemon\", \"Several sprigs of thyme or tarragon, or a mixture of the two\", + \"1 garlic clove, peeled and crushed\" ],\n \"ingredients\" : [ {\n \"text\" + : \"4 oz. good butter at room temperature\",\n \"weight\" : 113.3980925\n + \ }, {\n \"text\" : \"1 4-lb. free-range chicken\",\n \"weight\" + : 1814.36948\n }, {\n \"text\" : \"Salt and pepper\",\n \"weight\" + : 12.022605435000001\n }, {\n \"text\" : \"Salt and pepper\",\n + \ \"weight\" : 6.0113027175000004\n }, {\n \"text\" : \"1 + lemon\",\n \"weight\" : 58.0\n }, {\n \"text\" : \"Several + sprigs of thyme or tarragon, or a mixture of the two\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"1 garlic clove, peeled and crushed\",\n + \ \"weight\" : 3.0\n } ],\n \"calories\" : 3517.200872805925,\n + \ \"totalWeight\" : 2019.566182755408,\n \"totalTime\" : 120.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3517.200872805925,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 278.42011100318047,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 111.60489020906759,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 4.913947581158,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 100.88802232686733,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 43.50039801461565,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 13.97716694334125,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.3078595875275,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.586511192892,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 232.73270996899825,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1169.134333675,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4673.700578740793,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 273.16940415162287,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 288.78941185230406,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2623.136395614608,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 14.759116444844345,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 16.686883420966158,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1880.12713270165,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1319.3922154577251,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 75.4313399424,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7888248593999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6154511920215,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 84.37771885657503,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 4.474744196082924,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 91.67013902097499,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 91.67013902097499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.01746762109,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.1685138803,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 6.484067033462,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 36.3359377195475,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 175.86004364029623,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 428.33863231258533,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 558.024451045338,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.659055647780417,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.23143835011,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 465.4654199379965,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 389.71144455833337,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 194.73752411419972,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 27.31694041516229,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 72.19735296307601,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.94675416041736,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.99509136024636,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 111.24588947310772,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 268.58959038595,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 146.59913505085834,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 125.718899904,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 52.58832395999334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 95.02654070714706,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 421.88859428287515,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 223.73720980414623,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.917534755243747,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 66.95779368483333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.042128470075,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 32.42033516731,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 45.41992214943438,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 278.42011100318047,\n \"hasRDI\" + : true,\n \"daily\" : 428.33863231258533,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 111.60489020906759,\n \"hasRDI\" : true,\n \"daily\" : + 558.024451045338,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 4.913947581158,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 100.88802232686733,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.50039801461565,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.97716694334125,\n \"hasRDI\" : true,\n \"daily\" : 4.659055647780417,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.66930735581375,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 5.3078595875275,\n \"hasRDI\" + : true,\n \"daily\" : 21.23143835011,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.586511192892,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 232.73270996899825,\n \"hasRDI\" : true,\n \"daily\" : 465.4654199379965,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1169.134333675,\n \"hasRDI\" : true,\n \"daily\" + : 389.71144455833337,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4673.700578740793,\n \"hasRDI\" : true,\n \"daily\" + : 194.73752411419972,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 273.16940415162287,\n \"hasRDI\" : true,\n \"daily\" + : 27.31694041516229,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 288.78941185230406,\n \"hasRDI\" : true,\n \"daily\" + : 72.19735296307601,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2623.136395614608,\n \"hasRDI\" : true,\n \"daily\" + : 74.94675416041736,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.759116444844345,\n \"hasRDI\" : true,\n \"daily\" + : 81.99509136024636,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.686883420966158,\n \"hasRDI\" : true,\n \"daily\" + : 111.24588947310772,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1880.12713270165,\n \"hasRDI\" : true,\n \"daily\" + : 268.58959038595,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1319.3922154577251,\n \"hasRDI\" : true,\n + \ \"daily\" : 146.59913505085834,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 75.4313399424,\n \"hasRDI\" : true,\n + \ \"daily\" : 125.718899904,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7888248593999,\n \"hasRDI\" : true,\n + \ \"daily\" : 52.58832395999334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.6154511920215,\n \"hasRDI\" + : true,\n \"daily\" : 95.02654070714706,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 84.37771885657503,\n + \ \"hasRDI\" : true,\n \"daily\" : 421.88859428287515,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.474744196082924,\n + \ \"hasRDI\" : true,\n \"daily\" : 223.73720980414623,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.67013902097499,\n \"hasRDI\" : true,\n \"daily\" : 22.917534755243747,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.67013902097499,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.01746762109,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.95779368483333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1685138803,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.042128470075,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.484067033462,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.42033516731,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 36.3359377195475,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.41992214943438,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c092e92ee9dc18c7ee8131c368dffebf\",\n + \ \"label\" : \"Cashew Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ab9/ab990d203b2ca1d0b200afda79187ba2.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/43864/recipes-cashew-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cashew-chicken-c092e92ee9dc18c7ee8131c368dffebf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"1 pound skinless, boneless chicken thighs, cut into 1/2-inch cubes\", + \"1 tablespoon minced garlic\", \"2 teaspoons soy sauce (regular or dark)\", + \"1 1/2 teaspoons cornstarch\", \"1 teaspoon plus 2 tablespoons Shao Hsing + rice wine or dry sherry\", \"3/4 teaspoon salt\", \"1/8 teaspoon sugar\", + \"1/4 cup chicken broth\", \"2 tablespoons peanut or vegetable oil (use only + oils with a high smoke point, such as grapeseed)\", \"2 tablespoons minced + ginger\", \"1/2 cup sugar snap peas, strings removed, pods left whole\", \"1/2 + cup carrots, sliced 1/4 inch thick\", \"1/2 cup celery, sliced 1/4 inch thick\", + \"1/2 cup unsalted cashews (if using raw cashews, toast them in a dry skillet + for a minute or two prior to tossing them into the stir-fry)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 pound skinless, boneless chicken thighs, cut + into 1/2-inch cubes\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1 tablespoon minced garlic\",\n \"weight\" : 8.5\n }, {\n + \ \"text\" : \"2 teaspoons soy sauce (regular or dark)\",\n \"weight\" + : 10.6\n }, {\n \"text\" : \"1 1/2 teaspoons cornstarch\",\n \"weight\" + : 3.9000000000000004\n }, {\n \"text\" : \"1 teaspoon plus 2 tablespoons + Shao Hsing rice wine or dry sherry\",\n \"weight\" : 4.8500000000000005\n + \ }, {\n \"text\" : \"1 teaspoon plus 2 tablespoons Shao Hsing + rice wine or dry sherry\",\n \"weight\" : 29.8\n }, {\n \"text\" + : \"3/4 teaspoon salt\",\n \"weight\" : 4.5\n }, {\n \"text\" + : \"1/8 teaspoon sugar\",\n \"weight\" : 0.525\n }, {\n \"text\" + : \"1/4 cup chicken broth\",\n \"weight\" : 60.0\n }, {\n \"text\" + : \"2 tablespoons peanut or vegetable oil (use only oils with a high smoke + point, such as grapeseed)\",\n \"weight\" : 28.0\n }, {\n \"text\" + : \"2 tablespoons minced ginger\",\n \"weight\" : 12.0\n }, {\n + \ \"text\" : \"1/2 cup sugar snap peas, strings removed, pods left whole\",\n + \ \"weight\" : 49.0\n }, {\n \"text\" : \"1/2 cup carrots, + sliced 1/4 inch thick\",\n \"weight\" : 61.0\n }, {\n \"text\" + : \"1/2 cup celery, sliced 1/4 inch thick\",\n \"weight\" : 50.5\n + \ }, {\n \"text\" : \"1/2 cup unsalted cashews (if using raw cashews, + toast them in a dry skillet for a minute or two prior to tossing them into + the stir-fry)\",\n \"weight\" : 113.4\n } ],\n \"calories\" + : 2043.5358877,\n \"totalWeight\" : 888.0462896704877,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2043.5358877,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 154.31271265700002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.465024818800007,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6003135145000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 79.03614547800001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 29.760890467900005,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 59.81259592500001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 8.0706,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 14.03339,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 0.52395,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 101.19991952400002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 446.32052260000006,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2059.6017555876,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 160.09915662091706,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 457.15841579670496,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2300.2437483736394,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.52004105091261,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 13.077532992670488,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1497.5090209000005,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 651.8462450999999,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 38.503499999999995,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9796674301000001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.9088656865,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 24.570861112500005,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.4232565239,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 98.3667711,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 98.3667711,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 2.8122726940000002,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.4535923700000001,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 8.863193977000002,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 83.56983977000002,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 102.17679438500001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 237.40417331846155,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 157.32512409400005,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.937531975000006,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 32.2824,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 202.39983904800002,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 148.77350753333334,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 85.81673981615,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 16.009915662091707,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 114.28960394917624,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.72124995353256,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 69.55578361618116,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 87.18355328446992,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 213.9298601285715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.42736056666666,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 64.17249999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 65.31116200666668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 53.46268744117647,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 122.85430556250003,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 121.16282619500001,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 24.591692775,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 46.871211566666666,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.11339809250000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.31596988500001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 104.46229971250003,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 154.31271265700002,\n \"hasRDI\" : true,\n \"daily\" + : 237.40417331846155,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 31.465024818800007,\n \"hasRDI\" + : true,\n \"daily\" : 157.32512409400005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6003135145000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.03614547800001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.760890467900005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 59.81259592500001,\n \"hasRDI\" : true,\n \"daily\" : 19.937531975000006,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 51.74199592500001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 8.0706,\n \"hasRDI\" : + true,\n \"daily\" : 32.2824,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 14.03339,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.52395,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 101.19991952400002,\n + \ \"hasRDI\" : true,\n \"daily\" : 202.39983904800002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 446.32052260000006,\n \"hasRDI\" : true,\n \"daily\" : 148.77350753333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2059.6017555876,\n \"hasRDI\" : true,\n \"daily\" : 85.81673981615,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.09915662091706,\n \"hasRDI\" : true,\n \"daily\" : 16.009915662091707,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 457.15841579670496,\n \"hasRDI\" : true,\n \"daily\" : 114.28960394917624,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2300.2437483736394,\n \"hasRDI\" : true,\n \"daily\" : 65.72124995353256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.52004105091261,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.55578361618116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.077532992670488,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.18355328446992,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1497.5090209000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 213.9298601285715,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 651.8462450999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.42736056666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.503499999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.17249999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9796674301000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.31116200666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9088656865,\n + \ \"hasRDI\" : true,\n \"daily\" : 53.46268744117647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 24.570861112500005,\n + \ \"hasRDI\" : true,\n \"daily\" : 122.85430556250003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4232565239,\n + \ \"hasRDI\" : true,\n \"daily\" : 121.16282619500001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.3667711,\n \"hasRDI\" : true,\n \"daily\" : 24.591692775,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.3667711,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8122726940000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.871211566666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.4535923700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.11339809250000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.863193977000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.31596988500001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.56983977000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.46229971250003,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_5ae389774e0e71e2a62a7d46907051a8\",\n + \ \"label\" : \"Grilled Roasted Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/cce/cce4003fbcb69816e2fcf210ef0f9b53.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/5449/recipes-grilled-roasted-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/grilled-roasted-chicken-recipe-5ae389774e0e71e2a62a7d46907051a8/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 tablespoon + smoked paprika, or regular paprika\", \"1 tablespoon chili powder\", \"2 teaspoons + coarse salt (kosher or sea salt)\", \"2 teaspoons freshly milled pepper\", + \"One 3 1/4 to 3 1/2 pounds plump chicken\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1 tablespoon smoked paprika, or regular paprika\",\n + \ \"weight\" : 6.8\n }, {\n \"text\" : \"1 tablespoon chili + powder\",\n \"weight\" : 8.0\n }, {\n \"text\" : \"2 teaspoons + coarse salt (kosher or sea salt)\",\n \"weight\" : 9.708333333333334\n + \ }, {\n \"text\" : \"2 teaspoons freshly milled pepper\",\n \"weight\" + : 6.208333333333334\n }, {\n \"text\" : \"One 3 1/4 to 3 1/2 pounds + plump chicken\",\n \"weight\" : 453.59237\n } ],\n \"calories\" + : 1018.2012621666668,\n \"totalWeight\" : 476.0248984274755,\n \"totalTime\" + : 165.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1018.2012621666668,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 70.34048508866667,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 19.89591198033333,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.4399845989000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 28.67680055466667,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 15.823450717666669,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 7.935386666666667,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.262741666666666,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.4273200000000001,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 86.45989248666669,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 340.19427750000006,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1103.6744435876,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 92.82980085592745,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 115.37754928427478,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1179.3080982408649,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 6.929659507144003,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 6.589995075427477,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 713.3744505666667,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 473.2143717,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.366177920000002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.31813417200000005,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.7048891773333334,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 32.490697083700006,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.9145879616666668,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 33.408375533333334,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 33.408375533333334,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.4061363470000001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.413747943333333,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 21.179702216666666,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 50.91006310833333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 108.21613090564102,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 99.47955990166665,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 2.645128888888889,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.050966666666664,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 172.91978497333338,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 113.3980925,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 45.986435149483334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 9.282980085592744,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 28.844387321068695,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 33.69451709259614,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 38.49810837302224,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 43.933300502849846,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 101.91063579523811,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 52.57937463333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.610296533333337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 21.2089448,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 41.46406925490197,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 162.45348541850004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 95.72939808333334,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 8.352093883333334,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 23.435605783333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.22679618500000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 32.06873971666666,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 26.47462777083333,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 70.34048508866667,\n \"hasRDI\" : true,\n \"daily\" : 108.21613090564102,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 19.89591198033333,\n \"hasRDI\" : true,\n \"daily\" + : 99.47955990166665,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.4399845989000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 28.67680055466667,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.823450717666669,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.935386666666667,\n \"hasRDI\" : true,\n \"daily\" : 2.645128888888889,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.672645000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.262741666666666,\n \"hasRDI\" + : true,\n \"daily\" : 21.050966666666664,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.4273200000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 86.45989248666669,\n \"hasRDI\" : true,\n \"daily\" : 172.91978497333338,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 340.19427750000006,\n \"hasRDI\" : true,\n \"daily\" + : 113.3980925,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1103.6744435876,\n \"hasRDI\" : true,\n \"daily\" + : 45.986435149483334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 92.82980085592745,\n \"hasRDI\" : true,\n \"daily\" + : 9.282980085592744,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 115.37754928427478,\n \"hasRDI\" : true,\n \"daily\" + : 28.844387321068695,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1179.3080982408649,\n \"hasRDI\" : true,\n \"daily\" + : 33.69451709259614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.929659507144003,\n \"hasRDI\" : true,\n \"daily\" + : 38.49810837302224,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.589995075427477,\n \"hasRDI\" : true,\n \"daily\" + : 43.933300502849846,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 713.3744505666667,\n \"hasRDI\" : true,\n \"daily\" + : 101.91063579523811,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 473.2143717,\n \"hasRDI\" : true,\n \"daily\" + : 52.57937463333334,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 12.366177920000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.610296533333337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.31813417200000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 21.2089448,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7048891773333334,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.46406925490197,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 32.490697083700006,\n \"hasRDI\" : true,\n + \ \"daily\" : 162.45348541850004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9145879616666668,\n \"hasRDI\" : true,\n + \ \"daily\" : 95.72939808333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 33.408375533333334,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.352093883333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.408375533333334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.4061363470000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.435605783333333,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9071847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.22679618500000004,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.413747943333333,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.06873971666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.179702216666666,\n \"hasRDI\" : true,\n + \ \"daily\" : 26.47462777083333,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b551816b0ccc9c6fc803394fc2944057\",\n + \ \"label\" : \"Tandoori Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/639/639fbe714927318ef9f2e228e0a4935c.jpg\",\n + \ \"source\" : \"David Lebovitz\",\n \"url\" : \"http://www.davidlebovitz.com/2009/03/tandoori-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tandoori-chicken-b551816b0ccc9c6fc803394fc2944057/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1/8 teaspoon + saffron powder, or 1/4 teaspoon saffron threads\", \"1 tablespoon boiling + water\", \"4 skinless chicken thighs\", \"4 skinless chicken legs\", \"3/4 + teaspoon coarse salt\", \"1 teaspoon ground cumin\", \"1 teaspoon ground coriander\", + \"1 teaspoon ground cinnamon\", \"1/2 teaspoon paprika (I used pimente d’Espelette)\", + \"1/2 teaspoon turmeric\", \"1 to 1 1/2 teaspoons chili powder, depending + on how hot you want it\", \"10 turns fresh ground black pepper\", \"1 cup + whole milk plain yogurt\", \"juice of one fresh lime\", \"1 tablespoon finely-minced + fresh ginger\", \"2 cloves garlic, peeled and finely minced\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1/8 teaspoon saffron powder, or 1/4 teaspoon saffron + threads\",\n \"weight\" : 0.0875\n }, {\n \"text\" : \"1 + tablespoon boiling water\",\n \"weight\" : 14.78676478125\n }, + {\n \"text\" : \"4 skinless chicken thighs\",\n \"weight\" : + 772.0\n }, {\n \"text\" : \"4 skinless chicken legs\",\n \"weight\" + : 1376.0\n }, {\n \"text\" : \"3/4 teaspoon coarse salt\",\n \"weight\" + : 3.640625\n }, {\n \"text\" : \"1 teaspoon ground cumin\",\n + \ \"weight\" : 2.1\n }, {\n \"text\" : \"1 teaspoon ground + coriander\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"1 + teaspoon ground cinnamon\",\n \"weight\" : 2.6\n }, {\n \"text\" + : \"1/2 teaspoon paprika (I used pimente d’Espelette)\",\n \"weight\" + : 1.15\n }, {\n \"text\" : \"1/2 teaspoon turmeric\",\n \"weight\" + : 1.5\n }, {\n \"text\" : \"1 to 1 1/2 teaspoons chili powder, + depending on how hot you want it\",\n \"weight\" : 3.375\n }, + {\n \"text\" : \"10 turns fresh ground black pepper\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1 cup whole milk plain yogurt\",\n + \ \"weight\" : 245.0\n }, {\n \"text\" : \"juice of one + fresh lime\",\n \"weight\" : 67.0\n }, {\n \"text\" : \"1 + tablespoon finely-minced fresh ginger\",\n \"weight\" : 6.0\n }, + {\n \"text\" : \"2 cloves garlic, peeled and finely minced\",\n \"weight\" + : 6.0\n } ],\n \"calories\" : 4106.9527499999995,\n \"totalWeight\" + : 2506.03988978125,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 4106.9527499999995,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 261.05152375,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 73.94990525,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.9808399999999999,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 105.547580125,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 54.17147712500001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 33.16305875,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 7.156062500000001,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 13.243892500000003,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 388.27189624999994,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 2037.21,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3519.8006580912506,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 597.6204779434377,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 507.4270238978125,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5395.032249999999,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 20.2787515625,\n \"unit\" : + \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 34.57117305147815,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3859.7165,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 587.7533749999999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 26.399675000000006,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.8229951249999998,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.890126625,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 109.1630085,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 8.168065749999998,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 112.035875,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 112.035875,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 13.321299999999999,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.6210000000000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.581375000000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 65.563425,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 205.3476375,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 401.61772884615385,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 369.74952625000003,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 11.054352916666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 28.624250000000004,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 776.5437924999999,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 679.07,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 146.65836075380213,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 59.762047794343765,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 126.85675597445312,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 154.14377857142856,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 112.65973090277777,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 230.47448700985433,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 551.3880714285715,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 65.30593055555553,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 43.999458333333344,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 121.53300833333333,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 228.83097794117649,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 545.8150425,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 408.4032874999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 28.008968749999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 222.02166666666665,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.40525000000000005,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 32.90687500000001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 81.95428125,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 261.05152375,\n \"hasRDI\" : true,\n \"daily\" : 401.61772884615385,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 73.94990525,\n \"hasRDI\" : true,\n \"daily\" + : 369.74952625000003,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9808399999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 105.547580125,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.17147712500001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 33.16305875,\n \"hasRDI\" : true,\n \"daily\" : 11.054352916666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.006996249999997,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 7.156062500000001,\n \"hasRDI\" + : true,\n \"daily\" : 28.624250000000004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 13.243892500000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 388.27189624999994,\n \"hasRDI\" : true,\n \"daily\" : 776.5437924999999,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 2037.21,\n \"hasRDI\" : true,\n \"daily\" + : 679.07,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3519.8006580912506,\n \"hasRDI\" : true,\n \"daily\" + : 146.65836075380213,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 597.6204779434377,\n \"hasRDI\" : true,\n \"daily\" + : 59.762047794343765,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 507.4270238978125,\n \"hasRDI\" : true,\n \"daily\" + : 126.85675597445312,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5395.032249999999,\n \"hasRDI\" : true,\n \"daily\" + : 154.14377857142856,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.2787515625,\n \"hasRDI\" : true,\n \"daily\" + : 112.65973090277777,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.57117305147815,\n \"hasRDI\" : true,\n \"daily\" + : 230.47448700985433,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3859.7165,\n \"hasRDI\" : true,\n \"daily\" + : 551.3880714285715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 587.7533749999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 65.30593055555553,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 26.399675000000006,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.999458333333344,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8229951249999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 121.53300833333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.890126625,\n \"hasRDI\" + : true,\n \"daily\" : 228.83097794117649,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 109.1630085,\n \"hasRDI\" + : true,\n \"daily\" : 545.8150425,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.168065749999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 408.4032874999999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.035875,\n \"hasRDI\" + : true,\n \"daily\" : 28.008968749999998,\n \"unit\" : \"µg\"\n + \ }, {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.035875,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.321299999999999,\n \"hasRDI\" : true,\n \"daily\" + : 222.02166666666665,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.6210000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.40525000000000005,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.581375000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.90687500000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.563425,\n \"hasRDI\" : true,\n \"daily\" + : 81.95428125,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b43f2afae4a7486a48fd5af9a679b1c9\",\n + \ \"label\" : \"Lemon Pepper Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/e47/e47606d52c853e0b24c3acf9191f3ebc.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/lemon-pepper-chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/lemon-pepper-chicken-b43f2afae4a7486a48fd5af9a679b1c9/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"600 grams chicken + leg – bone-in skin-on (2 large legs)\", \"1/2 teaspoon salt\", \"1 tablespoon + extra virgin olive oil\", \"2 lemons\", \"6 sprigs thyme\", \"black pepper\" + ],\n \"ingredients\" : [ {\n \"text\" : \"600 grams chicken leg + – bone-in skin-on (2 large legs)\",\n \"weight\" : 860.0\n }, + {\n \"text\" : \"1/2 teaspoon salt\",\n \"weight\" : 3.0\n }, + {\n \"text\" : \"1 tablespoon extra virgin olive oil\",\n \"weight\" + : 13.5\n }, {\n \"text\" : \"2 lemons\",\n \"weight\" : + 116.0\n }, {\n \"text\" : \"6 sprigs thyme\",\n \"weight\" + : 18.0\n }, {\n \"text\" : \"black pepper\",\n \"weight\" + : 3.0315\n } ],\n \"calories\" : 2019.169065,\n \"totalWeight\" + : 1013.5315,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2019.169065,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 151.4192269,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 39.58317848,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.516,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 66.82287778499999,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 30.47705937,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.61284425,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.5349695,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 2.9194016,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 143.37377285000002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 799.8,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1889.9562999999996,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 194.744545,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 206.693865,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n + \ \"label\" : \"Potassium\",\n \"quantity\" : 2056.163635,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 10.150858649999998,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 13.076474849999999,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1375.42977,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 285.61850499999997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 92.018,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.6861140199999999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.3260367,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 41.18277004499999,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 2.899061665,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 55.775355,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.775355,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.816,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.86,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.034777600000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.86956549999999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 100.95845325,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 232.9526567692308,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 197.91589240000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.204281416666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.139878,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 286.74754570000005,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 266.6,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 78.74817916666665,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.4744545,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.673466250000004,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 58.747532428571425,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 56.39365916666665,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 87.17649899999999,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 196.48996714285713,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 31.73538944444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 153.36333333333332,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 45.740934666666654,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 78.00215882352941,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 205.91385022499995,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 144.95308325,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 13.94383875,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 80.26666666666667,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.215,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 20.173888000000005,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 41.08695687499999,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 151.4192269,\n \"hasRDI\" : true,\n \"daily\" : 232.9526567692308,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.58317848,\n \"hasRDI\" : true,\n \"daily\" + : 197.91589240000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.516,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.82287778499999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 30.47705937,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 18.61284425,\n \"hasRDI\" : true,\n \"daily\" : 6.204281416666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.07787475,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.5349695,\n \"hasRDI\" + : true,\n \"daily\" : 26.139878,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 2.9194016,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 143.37377285000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 286.74754570000005,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 799.8,\n \"hasRDI\" : true,\n \"daily\" : 266.6,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1889.9562999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 78.74817916666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 194.744545,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.4744545,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 206.693865,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.673466250000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2056.163635,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.747532428571425,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 10.150858649999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.39365916666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.076474849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 87.17649899999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1375.42977,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.48996714285713,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 285.61850499999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.73538944444444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 92.018,\n + \ \"hasRDI\" : true,\n \"daily\" : 153.36333333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6861140199999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.740934666666654,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3260367,\n + \ \"hasRDI\" : true,\n \"daily\" : 78.00215882352941,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.18277004499999,\n + \ \"hasRDI\" : true,\n \"daily\" : 205.91385022499995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.899061665,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.95308325,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.775355,\n \"hasRDI\" : true,\n \"daily\" : 13.94383875,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.775355,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.816,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.26666666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.86,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.215,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.034777600000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.173888000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 32.86956549999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.08695687499999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_836f27b2a8d87374d70861102692b1e7\",\n + \ \"label\" : \"Chicken Curry\",\n \"image\" : \"https://www.edamam.com/web-img/c21/c21850708a29bc34a483039ddb0ddc94.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/2010/04/10/chicken-curry-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-curry-836f27b2a8d87374d70861102692b1e7/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Tree-Nuts\", \"Shellfish\" ],\n \"ingredientLines\" + : [ \"6 whole chicken thighs\", \"5 cloves garlic grated into paste\", \"1″ + knob of ginger grated into paste\", \"2 Tbs garam masala\", \"3 medium onions + sliced thin across the rings\", \"1/2 stalk lemongrass cut into 3 pieces\", + \"1/2 can of coconut milk\", \"1 C water\", \"2 tsp fish sauce\", \"2 tsp + brown sugar\", \"1 tsp kosher salt\", \"1 tsp black pepper\", \"2″ piece of + cassia bark (aka saigon cinnamon)\", \"1/2 star anise pod\", \"cayenne pepper + to taste\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 whole chicken + thighs\",\n \"weight\" : 894.0\n }, {\n \"text\" : \"5 + cloves garlic grated into paste\",\n \"weight\" : 15.0\n }, {\n + \ \"text\" : \"1″ knob of ginger grated into paste\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"2 Tbs garam masala\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"3 medium onions sliced thin across + the rings\",\n \"weight\" : 165.0\n }, {\n \"text\" : \"1/2 + stalk lemongrass cut into 3 pieces\",\n \"weight\" : 10.0\n }, + {\n \"text\" : \"1/2 can of coconut milk\",\n \"weight\" : 211.87500000000003\n + \ }, {\n \"text\" : \"1 C water\",\n \"weight\" : 237.0\n + \ }, {\n \"text\" : \"2 tsp fish sauce\",\n \"weight\" : + 12.0\n }, {\n \"text\" : \"2 tsp brown sugar\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"1 tsp kosher salt\",\n \"weight\" + : 4.854166666666667\n }, {\n \"text\" : \"1 tsp black pepper\",\n + \ \"weight\" : 2.9\n }, {\n \"text\" : \"2″ piece of cassia + bark (aka saigon cinnamon)\",\n \"weight\" : 5.2\n }, {\n \"text\" + : \"1/2 star anise pod\",\n \"weight\" : 1.0\n }, {\n \"text\" + : \"cayenne pepper to taste\",\n \"weight\" : 0.0\n } ],\n \"calories\" + : 2585.43675,\n \"totalWeight\" : 1591.8291666666669,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2585.43675,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 195.44985749999998,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 81.01624425,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7599,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 64.22836925000003,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 31.941686750000002,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 55.2772175,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 9.6529,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 13.790400000000002,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 5.821199999999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 157.22266499999998,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 876.12,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3608.5416666666665,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 343.8635,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 341.02004166666666,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2969.0563333333334,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.662823749999998,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 13.805824166666666,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1719.9299999999998,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 211.06299999999996,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.190350000000006,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8366185,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.400602,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 43.97651474999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.6750899999999995,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 108.8375,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 108.8375,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 5.6004,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.894,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 2.1121999999999996,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 26.0737,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 129.2718375,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 300.6920884615384,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 405.08122125,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.425739166666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 38.6116,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 314.44532999999996,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 292.04,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.35590277777777,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 34.38635,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 85.25501041666666,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 84.83018095238096,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 92.57124305555554,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 92.03882777777777,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 245.70428571428567,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 23.45144444444444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 41.98391666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.774566666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.38835294117646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 219.88257374999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 183.75449999999998,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 27.209375,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 93.33999999999999,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.2235,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 10.560999999999998,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.592124999999996,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 195.44985749999998,\n \"hasRDI\" : true,\n \"daily\" + : 300.6920884615384,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 81.01624425,\n \"hasRDI\" + : true,\n \"daily\" : 405.08122125,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.7599,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.22836925000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.941686750000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 55.2772175,\n \"hasRDI\" : true,\n \"daily\" : 18.425739166666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.6243175,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.6529,\n \"hasRDI\" : true,\n + \ \"daily\" : 38.6116,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 13.790400000000002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.821199999999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 157.22266499999998,\n \"hasRDI\" : true,\n \"daily\" : 314.44532999999996,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 876.12,\n \"hasRDI\" : true,\n \"daily\" + : 292.04,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3608.5416666666665,\n \"hasRDI\" : true,\n \"daily\" + : 150.35590277777777,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 343.8635,\n \"hasRDI\" : true,\n \"daily\" + : 34.38635,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 341.02004166666666,\n \"hasRDI\" : true,\n \"daily\" : 85.25501041666666,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2969.0563333333334,\n \"hasRDI\" : true,\n \"daily\" : 84.83018095238096,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.662823749999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.57124305555554,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 13.805824166666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.03882777777777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1719.9299999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 245.70428571428567,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 211.06299999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.45144444444444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.190350000000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.98391666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8366185,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.774566666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.400602,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.38835294117646,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.97651474999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 219.88257374999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.6750899999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 183.75449999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.8375,\n \"hasRDI\" : true,\n \"daily\" : 27.209375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.8375,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.6004,\n + \ \"hasRDI\" : true,\n \"daily\" : 93.33999999999999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.894,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.2235,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1121999999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.560999999999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.0737,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.592124999999996,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_50239f3cecf2e7f7347f641e3f3acdbf\",\n + \ \"label\" : \"Engagement Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f6b/f6b81ce045785f95934d565afe199cda.jpg\",\n + \ \"source\" : \"Epicurious\",\n \"url\" : \"http://www.epicurious.com/recipes/food/views/Engagement-Chicken-364889\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/engagement-chicken-50239f3cecf2e7f7347f641e3f3acdbf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken + (approx. 4 pounds)\", \"1/2 cup fresh lemon juice, plus 3 whole lemons ­including + 1 sliced for garnish\", \"1 tablespoon kosher or coarse sea salt\", \"1/2 + teaspoon freshly ground pepper\", \"Fresh herbs for garnish (4 rosemary sprigs, + 4 sage sprigs, 8 thyme sprigs, and 1 bunch flat-leaf parsley)\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole chicken (approx. 4 pounds)\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 tablespoon kosher or coarse sea + salt\",\n \"weight\" : 14.5625\n }, {\n \"text\" : \"1/2 + teaspoon freshly ground pepper\",\n \"weight\" : 1.45\n } ],\n + \ \"calories\" : 1981.6394999999998,\n \"totalWeight\" : 925.3163593219465,\n + \ \"totalTime\" : 302.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1981.6395000000002,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 138.59927000000002,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 39.672184,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.8924000000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 57.41871550000001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 29.730471000000005,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.927275,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.36685,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.00928,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 171.27065500000003,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2142.8135460000003,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 108.55142623726717,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 186.5181635932195,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1758.379808745756,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 8.433553985762424,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.073121359321949,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1354.691,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 377.59150000000005,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 14.720000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.553566,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.10661,\n \"unit\" : \"mg\"\n },\n \"NIA\" : {\n + \ \"label\" : \"Niacin (B3)\",\n \"quantity\" : 62.58577350000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.2242195000000002,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.4465,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.4465,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8520000000000003,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.7750800000000004,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.173650000000002,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 99.081975,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 213.22964615384618,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 198.36092000000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.30909166666666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.4674,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 342.54131000000007,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 89.28389775000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 10.855142623726717,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.629540898304874,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 50.239423107021594,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.85307769868014,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 80.487475728813,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 193.5272857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 41.95461111111112,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 24.53333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 36.9044,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 65.09470588235295,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 312.9288675,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 161.21097500000002,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 13.861624999999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 47.53333333333334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.4600000000000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 13.875400000000003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 20.217062500000004,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 138.59927000000002,\n \"hasRDI\" : true,\n \"daily\" : 213.22964615384618,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.672184,\n \"hasRDI\" : true,\n \"daily\" + : 198.36092000000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.8924000000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 57.41871550000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.730471000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.927275,\n \"hasRDI\" : true,\n \"daily\" : 0.30909166666666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.560425,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.36685,\n \"hasRDI\" : + true,\n \"daily\" : 1.4674,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.00928,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 171.27065500000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 342.54131000000007,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" : 230.00000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2142.8135460000003,\n \"hasRDI\" : true,\n \"daily\" : 89.28389775000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 108.55142623726717,\n \"hasRDI\" : true,\n \"daily\" : 10.855142623726717,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 186.5181635932195,\n \"hasRDI\" : true,\n \"daily\" : 46.629540898304874,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1758.379808745756,\n \"hasRDI\" : true,\n \"daily\" : 50.239423107021594,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.433553985762424,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.85307769868014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.073121359321949,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.487475728813,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1354.691,\n + \ \"hasRDI\" : true,\n \"daily\" : 193.5272857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 377.59150000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.95461111111112,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.720000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 24.53333333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.553566,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.9044,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.10661,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.09470588235295,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.58577350000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 312.9288675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2242195000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 161.21097500000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.4465,\n \"hasRDI\" : true,\n \"daily\" : 13.861624999999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 55.4465,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8520000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.53333333333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8400000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4600000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7750800000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.875400000000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.173650000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.217062500000004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_917f496001b8872eda9575e1e44289ad\",\n + \ \"label\" : \"Chaat Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/309/309578bfa0933315565e73d2938469aa.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/2256-chaat-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chaat-chicken-917f496001b8872eda9575e1e44289ad/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 pound boneless, + skinless, chicken breast\", \"2 tablespoons of freshly grated garlic\", \"1/2 + cup white vinegar\", \"3 tablespoons chaat masala\", \"1 tablespoon cumin + powder\", \"2 teaspoons chili powder\", \"1 teaspoon turmeric\", \"1 teaspoon + smoked paprika\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound + boneless, skinless, chicken breast\",\n \"weight\" : 453.59237\n }, + {\n \"text\" : \"2 tablespoons of freshly grated garlic\",\n \"weight\" + : 17.0\n }, {\n \"text\" : \"1/2 cup white vinegar\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"3 tablespoons chaat masala\",\n + \ \"weight\" : 18.0\n }, {\n \"text\" : \"1 tablespoon cumin + powder\",\n \"weight\" : 6.0\n }, {\n \"text\" : \"2 teaspoons + chili powder\",\n \"weight\" : 5.4\n }, {\n \"text\" : + \"1 teaspoon turmeric\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"1 teaspoon smoked paprika\",\n \"weight\" : 2.3\n } ],\n \"calories\" + : 927.8428764000001,\n \"totalWeight\" : 624.29237,\n \"totalTime\" + : 154.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 927.8428764000001,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 46.107784225,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 12.869095042000001,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.47795198850000004,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 18.516147534000005,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 10.187902452,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 27.24357,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 8.2379,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.07498,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 99.16246914500002,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 290.29911680000004,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 472.1651931,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 290.77216070000003,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 183.47809250000003,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1583.7932140000005,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 12.004103538,\n \"unit\" : + \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.774428960000001,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 902.6927238000001,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 254.29316880000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.9015,\n \"unit\" : + \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.3984531931,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 0.5187635145000001,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 46.748752019600005,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.8434185610000005,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 28.972694800000006,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 28.972694800000006,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.5422140580000003,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.8143694800000003,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 4.299859399000001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 8.569700000000001,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 46.39214382000001,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 70.93505265384616,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 64.34547521,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 9.08119,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 32.9516,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 198.32493829000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 96.76637226666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 19.6735497125,\n \"unit\" : \"%\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 29.077216070000002,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 45.86952312500001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 45.2512346857143,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 66.68946410000001,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 31.829526400000006,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 128.95610340000002,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 28.254796533333337,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 21.5025,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 26.56354620666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 30.515500852941187,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 233.74376009800002,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 142.17092805000001,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 7.2431737000000025,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 25.70356763333334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.4535923700000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 21.499296995,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 10.712125000000002,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 46.107784225,\n \"hasRDI\" : + true,\n \"daily\" : 70.93505265384616,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 12.869095042000001,\n \"hasRDI\" : true,\n \"daily\" : + 64.34547521,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.47795198850000004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 18.516147534000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.187902452,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 27.24357,\n \"hasRDI\" : true,\n \"daily\" : 9.08119,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.00567,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 8.2379,\n \"hasRDI\" : true,\n \"daily\" + : 32.9516,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.07498,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 99.16246914500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.32493829000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 290.29911680000004,\n \"hasRDI\" : true,\n \"daily\" : 96.76637226666668,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 472.1651931,\n \"hasRDI\" : true,\n \"daily\" : 19.6735497125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 290.77216070000003,\n \"hasRDI\" : true,\n \"daily\" : 29.077216070000002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 183.47809250000003,\n \"hasRDI\" : true,\n \"daily\" : 45.86952312500001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1583.7932140000005,\n \"hasRDI\" : true,\n \"daily\" : 45.2512346857143,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.004103538,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.68946410000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.774428960000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.829526400000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 902.6927238000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.95610340000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 254.29316880000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 28.254796533333337,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.9015,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.5025,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.3984531931,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.56354620666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5187635145000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.515500852941187,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.748752019600005,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.74376009800002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8434185610000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 142.17092805000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.972694800000006,\n \"hasRDI\" : true,\n \"daily\" : 7.2431737000000025,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.972694800000006,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5422140580000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.70356763333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8143694800000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4535923700000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.299859399000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.499296995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.569700000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.712125000000002,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_9a22c584308bbd7d363d99c8b8d8e451\",\n + \ \"label\" : \"Brined Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a4e/a4e2ef199b67e46abe0b3ce32ad65c46.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/98809/recipes-brined-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/brined-chicken-9a22c584308bbd7d363d99c8b8d8e451/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 cup kosher salt\", \"1 stick cinnamon\", + \"1 bunch fresh rosemary\", \"1/2 cup apple cider\", \"2 quarts boiling water\", + \"2 quarts ice\", \"1 3-pound chicken\", \"1 lemon, thinly sliced, preferably + organic\", \"3 tablespoons extra-virgin olive oil\", \"1 tablespoon kosher + salt\", \"2 tablespoons freshly ground black pepper\", \"1 bunch fresh thyme\", + \"8 cloves garlic, peeled\", \"6 sprigs fresh marjoram\", \"1 small red onion, + thinly sliced\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 cup + kosher salt\",\n \"weight\" : 233.0\n }, {\n \"text\" : + \"1 stick cinnamon\",\n \"weight\" : 2.6\n }, {\n \"text\" + : \"1 bunch fresh rosemary\",\n \"weight\" : 15.0\n }, {\n \"text\" + : \"1/2 cup apple cider\",\n \"weight\" : 124.0\n }, {\n \"text\" + : \"2 quarts boiling water\",\n \"weight\" : 1892.705892\n }, + {\n \"text\" : \"2 quarts ice\",\n \"weight\" : 1892.705892\n + \ }, {\n \"text\" : \"1 3-pound chicken\",\n \"weight\" + : 1360.77711\n }, {\n \"text\" : \"1 lemon, thinly sliced, preferably + organic\",\n \"weight\" : 58.0\n }, {\n \"text\" : \"3 + tablespoons extra-virgin olive oil\",\n \"weight\" : 40.5\n }, + {\n \"text\" : \"1 tablespoon kosher salt\",\n \"weight\" : + 14.5625\n }, {\n \"text\" : \"2 tablespoons freshly ground black + pepper\",\n \"weight\" : 13.8\n }, {\n \"text\" : \"1 bunch + fresh thyme\",\n \"weight\" : 15.0\n }, {\n \"text\" : + \"8 cloves garlic, peeled\",\n \"weight\" : 24.0\n }, {\n \"text\" + : \"6 sprigs fresh marjoram\",\n \"weight\" : 4.08\n }, {\n \"text\" + : \"1 small red onion, thinly sliced\",\n \"weight\" : 70.0\n } + ],\n \"calories\" : 2572.01293482,\n \"totalWeight\" : 5544.120945251095,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2572.01293482,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 182.28001428088,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.29295473988,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.897568581756,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 87.64813933152001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 34.85572944403999,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 54.053788,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 14.297239999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 16.898411999999997,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 178.5540768728,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 693.9963260999999,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 12820.763999619121,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 584.3999736482626,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 323.99412531251096,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2603.7275058720875,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 18.25456568232861,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 13.757975725531093,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1496.9655991559998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 458.12305826799997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 88.81017495680001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7245042608800001,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.3206229217599998,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 64.10016885074799,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.8831875217999996,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 112.700906088,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 112.700906088,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8685181478799997,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8506568695999999,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.993127304399998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 87.71608652200001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 128.600646741,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 280.4307912013539,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 231.46477369940004,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 18.01792933333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 57.188959999999994,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 357.1081537456,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 231.33210869999996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 534.1984999841301,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 58.43999736482626,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.99853132812774,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 74.39221445348821,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 101.41425379071451,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 91.7198381702073,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 213.85222845085713,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 50.90256202977777,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 148.01695826133337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 48.300284058666676,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 77.68370127999998,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 320.50084425373996,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 194.15937608999997,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 28.175226522,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 47.80863579799999,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.46266421739999997,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.96563652199999,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 109.6451081525,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 182.28001428088,\n \"hasRDI\" : true,\n \"daily\" + : 280.4307912013539,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 46.29295473988,\n \"hasRDI\" + : true,\n \"daily\" : 231.46477369940004,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.897568581756,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 87.64813933152001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.85572944403999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 54.053788,\n \"hasRDI\" : true,\n \"daily\" : 18.01792933333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 39.756547999999995,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.297239999999999,\n \"hasRDI\" + : true,\n \"daily\" : 57.188959999999994,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 16.898411999999997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 178.5540768728,\n \"hasRDI\" : true,\n \"daily\" : 357.1081537456,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 693.9963260999999,\n \"hasRDI\" : true,\n \"daily\" + : 231.33210869999996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 12820.763999619121,\n \"hasRDI\" : true,\n \"daily\" + : 534.1984999841301,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 584.3999736482626,\n \"hasRDI\" : true,\n \"daily\" + : 58.43999736482626,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 323.99412531251096,\n \"hasRDI\" : true,\n \"daily\" + : 80.99853132812774,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2603.7275058720875,\n \"hasRDI\" : true,\n \"daily\" + : 74.39221445348821,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.25456568232861,\n \"hasRDI\" : true,\n \"daily\" + : 101.41425379071451,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.757975725531093,\n \"hasRDI\" : true,\n \"daily\" + : 91.7198381702073,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1496.9655991559998,\n \"hasRDI\" : true,\n \"daily\" + : 213.85222845085713,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 458.12305826799997,\n \"hasRDI\" : true,\n + \ \"daily\" : 50.90256202977777,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 88.81017495680001,\n \"hasRDI\" : true,\n + \ \"daily\" : 148.01695826133337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.7245042608800001,\n \"hasRDI\" : true,\n + \ \"daily\" : 48.300284058666676,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3206229217599998,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.68370127999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.10016885074799,\n + \ \"hasRDI\" : true,\n \"daily\" : 320.50084425373996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8831875217999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.15937608999997,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 112.700906088,\n \"hasRDI\" : true,\n \"daily\" : 28.175226522,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 112.700906088,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.8685181478799997,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.80863579799999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8506568695999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.46266421739999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.993127304399998,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.96563652199999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 87.71608652200001,\n + \ \"hasRDI\" : true,\n \"daily\" : 109.6451081525,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_53caac44acba8a28ed37d69883482c1f\",\n + \ \"label\" : \"Chicken Saltimbocca\",\n \"image\" : \"https://www.edamam.com/web-img/7ec/7ec56a5cffd1ea52251b45b0ee662e43.jpg\",\n + \ \"source\" : \"Fine Cooking\",\n \"url\" : \"http://www.finecooking.com/recipes/chicken-saltimbocca.aspx\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-saltimbocca-53caac44acba8a28ed37d69883482c1f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"1/3 cup dry + white wine (like Pinot Grigio)\", \"24 fresh sage leaves\", \"4 very thin + slices prosciutto, cut crosswise into thin strips\", \"Kosher salt and freshly + ground black pepper\", \"1 cup homemade or low-salt chicken broth\", \"4 boneless + skinless chicken breast halves (about 1-1/2 lb. total)\", \"2 Tbs. unsalted + butter\", \"3 Tbs. extra-virgin olive oil\" ],\n \"ingredients\" : [ + {\n \"text\" : \"1/3 cup dry white wine (like Pinot Grigio)\",\n \"weight\" + : 49.0\n }, {\n \"text\" : \"24 fresh sage leaves\",\n \"weight\" + : 24.0\n }, {\n \"text\" : \"4 very thin slices prosciutto, cut + crosswise into thin strips\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper\",\n \"weight\" : 4.5594\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 2.2797\n }, {\n \"text\" : \"1 cup homemade + or low-salt chicken broth\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"4 boneless skinless chicken breast halves (about 1-1/2 lb. total)\",\n + \ \"weight\" : 348.0\n }, {\n \"text\" : \"2 Tbs. unsalted + butter\",\n \"weight\" : 28.4\n }, {\n \"text\" : \"3 Tbs. + extra-virgin olive oil\",\n \"weight\" : 40.5\n } ],\n \"calories\" + : 1197.650047,\n \"totalWeight\" : 764.0524842219826,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1197.650047,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 79.72315822,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 25.122525424,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.9553119999999999,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 40.186435982999996,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 7.640098406000001,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 20.29410815,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.248764099999999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.2244300799999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 94.50376082999999,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 336.09999999999997,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1772.433648756,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 448.6595392132757,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 219.44501484221985,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1850.9780357377585,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 9.465719057932542,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.690761214221982,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 949.717926,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 290.031519,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.776,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.684512076,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.86230946,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 39.324004971,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.649865927,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 100.309549,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 100.309549,\n \"unit\" : \"µg\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 1.28308,\n + \ \"unit\" : \"µg\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.696,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 10.32233888,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 442.47286890000004,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 59.88250235,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 122.65101264615386,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 125.61262712,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 6.764702716666666,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 40.995056399999996,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 189.00752165999998,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 112.03333333333333,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 73.8514020315,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 44.86595392132757,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 54.86125371055496,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 52.88508673536453,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 52.58732809962524,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 31.271741428146544,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 135.67398942857142,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 32.22572433333333,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 12.96,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 45.634138400000005,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 50.724085882352945,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 196.620024855,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 182.49329635,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 25.07738725,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 21.384666666666664,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.174,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.6116944,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 553.0910861250001,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 79.72315822,\n \"hasRDI\" : + true,\n \"daily\" : 122.65101264615386,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 25.122525424,\n \"hasRDI\" : true,\n \"daily\" : 125.61262712,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.9553119999999999,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 40.186435982999996,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 7.640098406000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 20.29410815,\n \"hasRDI\" : true,\n \"daily\" : 6.764702716666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.04534405,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 10.248764099999999,\n \"hasRDI\" + : true,\n \"daily\" : 40.995056399999996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.2244300799999999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 94.50376082999999,\n \"hasRDI\" : true,\n \"daily\" : 189.00752165999998,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 336.09999999999997,\n \"hasRDI\" : true,\n \"daily\" + : 112.03333333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1772.433648756,\n \"hasRDI\" : true,\n \"daily\" + : 73.8514020315,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 448.6595392132757,\n \"hasRDI\" : true,\n \"daily\" + : 44.86595392132757,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 219.44501484221985,\n \"hasRDI\" : true,\n \"daily\" + : 54.86125371055496,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1850.9780357377585,\n \"hasRDI\" : true,\n \"daily\" + : 52.88508673536453,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.465719057932542,\n \"hasRDI\" : true,\n \"daily\" + : 52.58732809962524,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.690761214221982,\n \"hasRDI\" : true,\n \"daily\" + : 31.271741428146544,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 949.717926,\n \"hasRDI\" : true,\n \"daily\" + : 135.67398942857142,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 290.031519,\n \"hasRDI\" : true,\n \"daily\" + : 32.22572433333333,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 7.776,\n \"hasRDI\" : true,\n \"daily\" + : 12.96,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.684512076,\n \"hasRDI\" : true,\n \"daily\" : 45.634138400000005,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.86230946,\n \"hasRDI\" : true,\n \"daily\" : 50.724085882352945,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 39.324004971,\n \"hasRDI\" : true,\n \"daily\" : 196.620024855,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.649865927,\n \"hasRDI\" : true,\n \"daily\" : 182.49329635,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 100.309549,\n \"hasRDI\" : true,\n \"daily\" + : 25.07738725,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 100.309549,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.28308,\n \"hasRDI\" : true,\n \"daily\" + : 21.384666666666664,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.696,\n \"hasRDI\" : true,\n \"daily\" + : 0.174,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 10.32233888,\n \"hasRDI\" : true,\n \"daily\" : 51.6116944,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 442.47286890000004,\n \"hasRDI\" : true,\n \"daily\" : 553.0910861250001,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0b1162a867624c9b60fc48ae880e848d\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/a29/a293566f53abc01af0a24157134b4a87.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://www.simplyrecipes.com/recipes/chicken_piccata/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-0b1162a867624c9b60fc48ae880e848d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2-4 boneless, skinless chicken breast + halves (1 1/2 pound total), or 4-8 chicken cutlets\", \"1/2 cup flour\", \"1/4 + teaspoon salt\", \"Pinch ground black pepper\", \"3 Tbsp grated Parmesan cheese\", + \"4 Tbsp olive oil\", \"4 Tbsp butter\", \"1/2 cup chicken stock or dry white + wine (such as a Sauvignon Blanc)\", \"2 Tbsp lemon juice\", \"1/4 cup brined + capers\", \"2 Tbsp fresh chopped parsley\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"2-4 boneless, skinless chicken breast halves (1 1/2 pound + total), or 4-8 chicken cutlets\",\n \"weight\" : 261.0\n }, {\n + \ \"text\" : \"1/2 cup flour\",\n \"weight\" : 62.5\n }, + {\n \"text\" : \"1/4 teaspoon salt\",\n \"weight\" : 1.5\n }, + {\n \"text\" : \"Pinch ground black pepper\",\n \"weight\" : + 0.14375000000000002\n }, {\n \"text\" : \"3 Tbsp grated Parmesan + cheese\",\n \"weight\" : 42.54\n }, {\n \"text\" : \"4 + Tbsp olive oil\",\n \"weight\" : 54.0\n }, {\n \"text\" + : \"4 Tbsp butter\",\n \"weight\" : 56.8\n }, {\n \"text\" + : \"1/2 cup chicken stock or dry white wine (such as a Sauvignon Blanc)\",\n + \ \"weight\" : 120.0\n }, {\n \"text\" : \"2 Tbsp lemon + juice\",\n \"weight\" : 28.0\n }, {\n \"text\" : \"1/4 + cup brined capers\",\n \"weight\" : 28.4\n }, {\n \"text\" + : \"2 Tbsp fresh chopped parsley\",\n \"weight\" : 7.6\n } ],\n + \ \"calories\" : 1651.0616125000001,\n \"totalWeight\" : 660.9837500000001,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1651.0616125000001,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 120.32542825,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 45.655068,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.8801739999999998,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 57.1298683125,\n \"unit\" : \"g\"\n },\n \"FAPU\" : + {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : 9.376336224999998,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 57.227386125,\n \"unit\" : + \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 2.96746875,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.32671,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 84.904995625,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 345.1772,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 1554.37515,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 568.0354124999999,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 126.5814125,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1202.1382374999996,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 3.593376125,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 3.7891806249999993,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 974.4047249999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 530.0626124999999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 22.4052,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.40029385,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : + {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 0.8008975499999998,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 28.1892684625,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.2844957124999996,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 74.13023749999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 74.13023749999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1551399999999998,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.0646999999999998,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 11.045862999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 170.01839875000002,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 82.553080625,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 185.11604346153848,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 228.27534,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 19.075795375000002,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.869875,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 169.80999125,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 115.05906666666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 64.76563125000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 56.80354124999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 31.645353125,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 34.34680678571428,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 19.963200694444442,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 25.261204166666662,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 139.200675,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 58.89584583333332,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 37.342,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 26.686256666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 47.11162058823528,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 140.9463423125,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 114.22478562499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 18.532559374999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 19.25233333333333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.26617499999999994,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 55.229315,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 212.5229984375,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 120.32542825,\n \"hasRDI\" : + true,\n \"daily\" : 185.11604346153848,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 45.655068,\n \"hasRDI\" : true,\n \"daily\" : 228.27534,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.8801739999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.1298683125,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n \"schemaOrgTag\" + : null,\n \"total\" : 9.376336224999998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 57.227386125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.075795375000002,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 54.259917375,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 2.96746875,\n \"hasRDI\" : true,\n \"daily\" + : 11.869875,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.32671,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 84.904995625,\n + \ \"hasRDI\" : true,\n \"daily\" : 169.80999125,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 345.1772,\n \"hasRDI\" : true,\n \"daily\" : 115.05906666666667,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1554.37515,\n \"hasRDI\" : true,\n \"daily\" : 64.76563125000001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 568.0354124999999,\n \"hasRDI\" : true,\n \"daily\" : 56.80354124999999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 126.5814125,\n \"hasRDI\" : true,\n \"daily\" : 31.645353125,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1202.1382374999996,\n \"hasRDI\" : true,\n \"daily\" : 34.34680678571428,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.593376125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.963200694444442,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.7891806249999993,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.261204166666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 974.4047249999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 139.200675,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 530.0626124999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.89584583333332,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.4052,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.342,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.40029385,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.686256666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8008975499999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.11162058823528,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 28.1892684625,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.9463423125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.2844957124999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 114.22478562499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.13023749999999,\n \"hasRDI\" : true,\n \"daily\" : 18.532559374999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.13023749999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1551399999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.25233333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0646999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.26617499999999994,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.045862999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.229315,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 170.01839875000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 212.5229984375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7cf0184aa9b8a2936cc3edaf4cf9a38b\",\n + \ \"label\" : \"Tandoori Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/5db/5db6a2e049b54db7c9aabe0f26bce340.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/190613/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tandoori-chicken-7cf0184aa9b8a2936cc3edaf4cf9a38b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 medium sized + chicken legs, skinned and halved\", \"1 tsp of salt\", \"1 tsp of dry red + chilli flakes\", \"4 heaped tablespoons of natural yoghurt\", \"1 tsp of garlic + powder\", \"4 tbsp of tandoori masala\", \"1 tsp of ginger powder\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4 medium sized chicken legs, skinned and halved\",\n + \ \"weight\" : 1376.0\n }, {\n \"text\" : \"1 tsp of salt\",\n + \ \"weight\" : 6.0\n }, {\n \"text\" : \"1 tsp of dry red + chilli flakes\",\n \"weight\" : 1.8\n }, {\n \"text\" : + \"4 heaped tablespoons of natural yoghurt\",\n \"weight\" : 56.8\n + \ }, {\n \"text\" : \"1 tsp of garlic powder\",\n \"weight\" + : 3.1\n }, {\n \"text\" : \"4 tbsp of tandoori masala\",\n \"weight\" + : 24.0\n }, {\n \"text\" : \"1 tsp of ginger powder\",\n \"weight\" + : 1.8\n } ],\n \"calories\" : 3064.4230000000002,\n \"totalWeight\" + : 1469.1762629134628,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3064.4230000000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 223.81340999999998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.991869,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8256,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 91.80475099999998,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 46.915076000000006,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 26.85801,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.2064,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 2.96935,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 229.57463,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1287.064,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3403.3399799999993,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 359.73530309923115,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 309.68776262913457,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 3229.329101033077,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.907881667614427,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 21.013246262913466,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 2235.0119999999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 444.59000000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 13.869000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0654089999999998,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.0599089999999998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 66.20953399999998,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.550898000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 71.255,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 71.255,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 7.915760000000001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.4328,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 3.61899,\n \"unit\" : + \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 33.233799999999995,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 153.22115000000002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 344.328323076923,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 309.959345,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.95267,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 24.825599999999998,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 459.14925999999997,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 429.02133333333336,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 141.80583249999995,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 35.97353030992312,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 77.42194065728364,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 92.26654574380221,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 66.15489815341348,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 140.0883084194231,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 319.28742857142856,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.39888888888889,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 23.115000000000002,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 71.02726666666665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 121.17111764705882,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 331.04766999999987,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 227.54490000000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 17.81375,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 131.92933333333335,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.3582,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 18.09495,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 41.542249999999996,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 223.81340999999998,\n \"hasRDI\" : true,\n \"daily\" + : 344.328323076923,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.991869,\n \"hasRDI\" + : true,\n \"daily\" : 309.959345,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.8256,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 91.80475099999998,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 46.915076000000006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 26.85801,\n \"hasRDI\" : true,\n \"daily\" : 8.95267,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.651609999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 6.2064,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.825599999999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 2.96935,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 229.57463,\n + \ \"hasRDI\" : true,\n \"daily\" : 459.14925999999997,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1287.064,\n \"hasRDI\" : true,\n \"daily\" : 429.02133333333336,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3403.3399799999993,\n \"hasRDI\" : true,\n \"daily\" : 141.80583249999995,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 359.73530309923115,\n \"hasRDI\" : true,\n \"daily\" : 35.97353030992312,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 309.68776262913457,\n \"hasRDI\" : true,\n \"daily\" : 77.42194065728364,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3229.329101033077,\n \"hasRDI\" : true,\n \"daily\" : 92.26654574380221,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.907881667614427,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.15489815341348,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 21.013246262913466,\n + \ \"hasRDI\" : true,\n \"daily\" : 140.0883084194231,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2235.0119999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 319.28742857142856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 444.59000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.39888888888889,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.869000000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.115000000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0654089999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.02726666666665,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0599089999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 121.17111764705882,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.20953399999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 331.04766999999987,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.550898000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.54490000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 71.255,\n \"hasRDI\" : true,\n \"daily\" : 17.81375,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 71.255,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.915760000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 131.92933333333335,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.4328,\n \"hasRDI\" : true,\n \"daily\" + : 0.3582,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.61899,\n \"hasRDI\" : true,\n \"daily\" : 18.09495,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.233799999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.542249999999996,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_aa5c8ba89d91969348dd3c219e39f7fb\",\n + \ \"label\" : \"Chicken Parmesan\",\n \"image\" : \"https://www.edamam.com/web-img/a25/a2595b2babcb1fd9144869263b6d4aa6.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/recipe/chicken-parmesan-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-parmesan-aa5c8ba89d91969348dd3c219e39f7fb/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"500 gs boneless chicken (17 ozs) breasts + or thighs\", \"1 cup panko (japanese bread crumbs)\", \"1 sprig rosemary stem + removed and minced\", \"3 sprigs thyme stems removed and minced\", \"40 gs + parmigiano reggiano (1.4 ozs) grated\", \"1/4 cup all-purpose flour\", \"1 + large egg\", \"3 tbsps extra virgin olive oil\", \"4 cloves garlic minced\", + \"1 large onion minced\", \"28 oz canned diced tomatoes\", \"2 tbsps tomato + paste\", \"2 tsps dried oregano\", \"1 tsp salt to taste\", \"Black pepper + to taste\", \"80 gs mozzarella cheese (2.8 ozs) grated\", \"450 gs dried spaghetti + (16 ozs)\", \"Flat leaf parsley minced for garnish\" ],\n \"ingredients\" + : [ {\n \"text\" : \"500 gs boneless chicken (17 ozs) breasts or thighs\",\n + \ \"weight\" : 500.0\n }, {\n \"text\" : \"1 cup panko (japanese + bread crumbs)\",\n \"weight\" : 60.0\n }, {\n \"text\" + : \"1 sprig rosemary stem removed and minced\",\n \"weight\" : 5.0\n + \ }, {\n \"text\" : \"3 sprigs thyme stems removed and minced\",\n + \ \"weight\" : 9.0\n }, {\n \"text\" : \"40 gs parmigiano + reggiano (1.4 ozs) grated\",\n \"weight\" : 39.6893316990947\n }, + {\n \"text\" : \"1/4 cup all-purpose flour\",\n \"weight\" : + 31.25\n }, {\n \"text\" : \"1 large egg\",\n \"weight\" + : 50.0\n }, {\n \"text\" : \"3 tbsps extra virgin olive oil\",\n + \ \"weight\" : 40.5\n }, {\n \"text\" : \"4 cloves garlic + minced\",\n \"weight\" : 12.0\n }, {\n \"text\" : \"1 large + onion minced\",\n \"weight\" : 150.0\n }, {\n \"text\" + : \"28 oz canned diced tomatoes\",\n \"weight\" : 793.7866475000001\n + \ }, {\n \"text\" : \"2 tbsps tomato paste\",\n \"weight\" + : 32.0\n }, {\n \"text\" : \"2 tsps dried oregano\",\n \"weight\" + : 2.0\n }, {\n \"text\" : \"1 tsp salt to taste\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"Black pepper to taste\",\n \"weight\" + : 6.792591037791853\n }, {\n \"text\" : \"80 gs mozzarella cheese + (2.8 ozs) grated\",\n \"weight\" : 79.3786633981894\n }, {\n \"text\" + : \"450 gs dried spaghetti (16 ozs)\",\n \"weight\" : 453.59237\n } + ],\n \"calories\" : 4218.219289671551,\n \"totalWeight\" : 2270.989603635076,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4218.219289671551,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 170.28725691277205,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.630331835509764,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.44400000000000006,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 75.931209313647,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 27.179121337937925,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 469.92350578256406,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 41.00817767506135,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 46.16396252680634,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 199.90946214851186,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 773.635755979773,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 5203.307419339247,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1649.8166715292884,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 524.2557767858456,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4542.297699429063,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 22.308255137248548,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.651949968670287,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2627.4196584069687,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 648.8642125917629,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 137.414117585,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 5.760194279952173,\n \"unit\" : + \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.338140714409131,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 40.175024568260795,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.930372847198028,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 331.81034516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 249.93534516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 48.125,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 4.600736223195919,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.0953399754864206,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 14.74637249691724,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 86.88145195770461,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 210.91096448357757,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 261.98039525041855,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 253.15165917754885,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.64116859418803,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 164.03271070024536,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 399.81892429702367,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 257.878585326591,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 216.80447580580196,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 164.98166715292885,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 131.0639441964614,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 129.7799342694018,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 123.93475076249193,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.34633312446859,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 375.34566548670983,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.096023621307,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 229.02352930833337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 384.0129519968115,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 137.53768908289007,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 200.87512284130398,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.5186423599014,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 82.95258629180411,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 76.67893705326532,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5238349938716051,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 73.7318624845862,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 108.60181494713076,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 170.28725691277205,\n \"hasRDI\" + : true,\n \"daily\" : 261.98039525041855,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.630331835509764,\n \"hasRDI\" : true,\n \"daily\" : + 253.15165917754885,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.44400000000000006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 75.931209313647,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.179121337937925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 469.92350578256406,\n \"hasRDI\" : true,\n \"daily\" : 156.64116859418803,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 428.9153281075027,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 41.00817767506135,\n \"hasRDI\" + : true,\n \"daily\" : 164.03271070024536,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 46.16396252680634,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 199.90946214851186,\n \"hasRDI\" : true,\n \"daily\" : 399.81892429702367,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 773.635755979773,\n \"hasRDI\" : true,\n \"daily\" + : 257.878585326591,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5203.307419339247,\n \"hasRDI\" : true,\n \"daily\" + : 216.80447580580196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1649.8166715292884,\n \"hasRDI\" : true,\n \"daily\" + : 164.98166715292885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 524.2557767858456,\n \"hasRDI\" : true,\n \"daily\" + : 131.0639441964614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4542.297699429063,\n \"hasRDI\" : true,\n \"daily\" + : 129.7799342694018,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.308255137248548,\n \"hasRDI\" : true,\n \"daily\" + : 123.93475076249193,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.651949968670287,\n \"hasRDI\" : true,\n \"daily\" + : 124.34633312446859,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2627.4196584069687,\n \"hasRDI\" : true,\n \"daily\" + : 375.34566548670983,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 648.8642125917629,\n \"hasRDI\" : true,\n + \ \"daily\" : 72.096023621307,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 137.414117585,\n \"hasRDI\" : true,\n + \ \"daily\" : 229.02352930833337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.760194279952173,\n \"hasRDI\" : true,\n + \ \"daily\" : 384.0129519968115,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.338140714409131,\n + \ \"hasRDI\" : true,\n \"daily\" : 137.53768908289007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.175024568260795,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.87512284130398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.930372847198028,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.5186423599014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.81034516721644,\n \"hasRDI\" : true,\n \"daily\" : 82.95258629180411,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 249.93534516721644,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 48.125,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.600736223195919,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.67893705326532,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0953399754864206,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5238349938716051,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.74637249691724,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.7318624845862,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 86.88145195770461,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.60181494713076,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_513f67f7af6cf0e73a7fbb49c92165ae\",\n + \ \"label\" : \"Chicken Parmesan\",\n \"image\" : \"https://www.edamam.com/web-img/9b1/9b194320039c04b847765592c517e19b.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/chicken-parmesan-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-parmesan-513f67f7af6cf0e73a7fbb49c92165ae/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Balanced\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"500 grams boneless chicken (17 ounces) + breasts or thighs\", \"1 cup panko (Japanese bread crumbs)\", \"1 sprig rosemary + stem removed and minced\", \"3 sprigs thyme stems removed and minced\", \"40 + grams parmigiano reggiano (1.4 ounces) grated\", \"1/4 cup all-purpose flour\", + \"1 large egg\", \"3 tablespoons extra virgin olive oil\", \"4 cloves garlic + minced\", \"1 large onion minced\", \"28 ounce canned diced tomatoes\", \"2 + tablespoons tomato paste\", \"2 teaspoons dried oregano\", \"1 teaspoon salt + to taste\", \"black pepper to taste\", \"80 grams Mozzarella cheese (2.8 ounces) + grated\", \"450 grams dried spaghetti (16 ounces)\", \"flat leaf parsley minced + for garnish\" ],\n \"ingredients\" : [ {\n \"text\" : \"500 grams + boneless chicken (17 ounces) breasts or thighs\",\n \"weight\" : 500.0\n + \ }, {\n \"text\" : \"1 cup panko (Japanese bread crumbs)\",\n + \ \"weight\" : 60.0\n }, {\n \"text\" : \"1 sprig rosemary + stem removed and minced\",\n \"weight\" : 5.0\n }, {\n \"text\" + : \"3 sprigs thyme stems removed and minced\",\n \"weight\" : 9.0\n + \ }, {\n \"text\" : \"40 grams parmigiano reggiano (1.4 ounces) + grated\",\n \"weight\" : 39.6893316990947\n }, {\n \"text\" + : \"1/4 cup all-purpose flour\",\n \"weight\" : 31.25\n }, {\n + \ \"text\" : \"1 large egg\",\n \"weight\" : 50.0\n }, {\n + \ \"text\" : \"3 tablespoons extra virgin olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"4 cloves garlic minced\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"1 large onion minced\",\n \"weight\" + : 150.0\n }, {\n \"text\" : \"28 ounce canned diced tomatoes\",\n + \ \"weight\" : 793.7866475000001\n }, {\n \"text\" : \"2 + tablespoons tomato paste\",\n \"weight\" : 32.0\n }, {\n \"text\" + : \"2 teaspoons dried oregano\",\n \"weight\" : 2.0\n }, {\n \"text\" + : \"1 teaspoon salt to taste\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"black pepper to taste\",\n \"weight\" : 6.792591037791853\n }, + {\n \"text\" : \"80 grams Mozzarella cheese (2.8 ounces) grated\",\n + \ \"weight\" : 79.3786633981894\n }, {\n \"text\" : \"450 + grams dried spaghetti (16 ounces)\",\n \"weight\" : 453.59237\n } + ],\n \"calories\" : 4218.219289671551,\n \"totalWeight\" : 2270.989603635076,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 4218.219289671551,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 170.28725691277205,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.630331835509764,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.44400000000000006,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 75.931209313647,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 27.179121337937925,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 469.92350578256406,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 41.00817767506135,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 46.16396252680634,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 199.90946214851186,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 773.635755979773,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 5203.307419339247,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 1649.8166715292884,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 524.2557767858456,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4542.297699429063,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 22.308255137248548,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 18.651949968670287,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2627.4196584069687,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 648.8642125917629,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 137.414117585,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 5.760194279952173,\n \"unit\" : + \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.338140714409131,\n \"unit\" : + \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 40.175024568260795,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.930372847198028,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 331.81034516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 249.93534516721644,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 48.125,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 4.600736223195919,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.0953399754864206,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 14.74637249691724,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 86.88145195770461,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 210.91096448357757,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 261.98039525041855,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 253.15165917754885,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.64116859418803,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 164.03271070024536,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 399.81892429702367,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 257.878585326591,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 216.80447580580196,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 164.98166715292885,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 131.0639441964614,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 129.7799342694018,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 123.93475076249193,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.34633312446859,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 375.34566548670983,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.096023621307,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 229.02352930833337,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 384.0129519968115,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 137.53768908289007,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 200.87512284130398,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 196.5186423599014,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 82.95258629180411,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 76.67893705326532,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5238349938716051,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 73.7318624845862,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 108.60181494713076,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 170.28725691277205,\n \"hasRDI\" + : true,\n \"daily\" : 261.98039525041855,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.630331835509764,\n \"hasRDI\" : true,\n \"daily\" : + 253.15165917754885,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.44400000000000006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 75.931209313647,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.179121337937925,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 469.92350578256406,\n \"hasRDI\" : true,\n \"daily\" : 156.64116859418803,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 428.9153281075027,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 41.00817767506135,\n \"hasRDI\" + : true,\n \"daily\" : 164.03271070024536,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 46.16396252680634,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 199.90946214851186,\n \"hasRDI\" : true,\n \"daily\" : 399.81892429702367,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 773.635755979773,\n \"hasRDI\" : true,\n \"daily\" + : 257.878585326591,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5203.307419339247,\n \"hasRDI\" : true,\n \"daily\" + : 216.80447580580196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1649.8166715292884,\n \"hasRDI\" : true,\n \"daily\" + : 164.98166715292885,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 524.2557767858456,\n \"hasRDI\" : true,\n \"daily\" + : 131.0639441964614,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4542.297699429063,\n \"hasRDI\" : true,\n \"daily\" + : 129.7799342694018,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.308255137248548,\n \"hasRDI\" : true,\n \"daily\" + : 123.93475076249193,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.651949968670287,\n \"hasRDI\" : true,\n \"daily\" + : 124.34633312446859,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2627.4196584069687,\n \"hasRDI\" : true,\n \"daily\" + : 375.34566548670983,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 648.8642125917629,\n \"hasRDI\" : true,\n + \ \"daily\" : 72.096023621307,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 137.414117585,\n \"hasRDI\" : true,\n + \ \"daily\" : 229.02352930833337,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.760194279952173,\n \"hasRDI\" : true,\n + \ \"daily\" : 384.0129519968115,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.338140714409131,\n + \ \"hasRDI\" : true,\n \"daily\" : 137.53768908289007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.175024568260795,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.87512284130398,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.930372847198028,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.5186423599014,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.81034516721644,\n \"hasRDI\" : true,\n \"daily\" : 82.95258629180411,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 249.93534516721644,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 48.125,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.600736223195919,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.67893705326532,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.0953399754864206,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5238349938716051,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.74637249691724,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.7318624845862,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 86.88145195770461,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.60181494713076,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4ae480cb516f271a55858f3c576d56e9\",\n + \ \"label\" : \"Truffled Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/712/712a9204a4c08f91694b77fbac220015.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Truffled-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/truffled-chicken-4ae480cb516f271a55858f3c576d56e9/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 3 1⁄2-lb. chicken, rinsed and dried\", + \"3⁄4 oz. black truffles, sliced into thin discs\", \"Salt and freshly ground + black pepper\", \"1 clove garlic, peeled and halved lengthwise\", \"2 tbsp. + butter, softened\", \"1 tbsp. rainwater madeira\", \"1 tsp. cognac\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"1 3 1⁄2-lb. chicken, rinsed + and dried\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"3⁄4 oz. black truffles, sliced into thin discs\",\n \"weight\" + : 21.26214234375\n }, {\n \"text\" : \"Salt and freshly ground + black pepper\",\n \"weight\" : 9.957712624062502\n }, {\n \"text\" + : \"Salt and freshly ground black pepper\",\n \"weight\" : 4.978856312031251\n + \ }, {\n \"text\" : \"1 clove garlic, peeled and halved lengthwise\",\n + \ \"weight\" : 3.0\n }, {\n \"text\" : \"2 tbsp. butter, + softened\",\n \"weight\" : 28.4\n }, {\n \"text\" : \"1 + tbsp. rainwater madeira\",\n \"weight\" : 14.75\n }, {\n \"text\" + : \"1 tsp. cognac\",\n \"weight\" : 4.633333333333334\n } ],\n + \ \"calories\" : 2636.3145708894485,\n \"totalWeight\" : 1672.6007702028373,\n + \ \"totalTime\" : 168.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2636.3145708894485,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 185.94797034924156,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 61.18908580972347,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.9781153453819997,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 73.37099780158593,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 35.790830837374074,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 21.735583736715867,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 16.227412429912654,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 1.226454680397,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 203.74202168921693,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 870.72238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3870.988489610646,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 189.96037662615439,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 244.79692199102317,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2299.983670516535,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.569953189049352,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 14.562553057457729,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1646.8460339008427,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 638.2157258502484,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 18.208797449600002,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.6666493905285562,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.4996705647962396,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 74.87453928086866,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.854674846726344,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 74.64101009967032,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 74.64101009967032,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.39488450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.5850996812,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.951709627445125,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 26.382635391795155,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 131.81572854447242,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 286.0738005372947,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 305.94542904861737,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.245194578905289,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 64.90964971965062,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 407.48404337843385,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 290.2407934833333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 161.29118706711026,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.99603766261544,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 61.19923049775579,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.71381915761528,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.27751771694085,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 97.0836870497182,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 235.2637191286918,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 70.91285842780538,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 30.347995749333336,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 44.443292701903744,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 88.21591557624939,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 374.3726964043433,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 192.7337423363172,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 18.66025252491758,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 56.581408431,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6462749203,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 19.758548137225624,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 32.978294239743946,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 185.94797034924156,\n \"hasRDI\" : true,\n \"daily\" + : 286.0738005372947,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.18908580972347,\n \"hasRDI\" + : true,\n \"daily\" : 305.94542904861737,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.9781153453819997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.37099780158593,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.790830837374074,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 21.735583736715867,\n \"hasRDI\" : true,\n \"daily\" : 7.245194578905289,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.508171306803213,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 16.227412429912654,\n \"hasRDI\" + : true,\n \"daily\" : 64.90964971965062,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 1.226454680397,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 203.74202168921693,\n \"hasRDI\" : true,\n \"daily\" : 407.48404337843385,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 870.72238045,\n \"hasRDI\" : true,\n \"daily\" + : 290.2407934833333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3870.988489610646,\n \"hasRDI\" : true,\n \"daily\" + : 161.29118706711026,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 189.96037662615439,\n \"hasRDI\" : true,\n \"daily\" + : 18.99603766261544,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 244.79692199102317,\n \"hasRDI\" : true,\n \"daily\" + : 61.19923049775579,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2299.983670516535,\n \"hasRDI\" : true,\n \"daily\" + : 65.71381915761528,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.569953189049352,\n \"hasRDI\" : true,\n \"daily\" + : 64.27751771694085,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.562553057457729,\n \"hasRDI\" : true,\n \"daily\" + : 97.0836870497182,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1646.8460339008427,\n \"hasRDI\" : true,\n \"daily\" + : 235.2637191286918,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 638.2157258502484,\n \"hasRDI\" : true,\n + \ \"daily\" : 70.91285842780538,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.208797449600002,\n \"hasRDI\" : true,\n + \ \"daily\" : 30.347995749333336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6666493905285562,\n \"hasRDI\" : true,\n + \ \"daily\" : 44.443292701903744,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.4996705647962396,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.21591557624939,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.87453928086866,\n + \ \"hasRDI\" : true,\n \"daily\" : 374.3726964043433,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.854674846726344,\n + \ \"hasRDI\" : true,\n \"daily\" : 192.7337423363172,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.64101009967032,\n \"hasRDI\" : true,\n \"daily\" : 18.66025252491758,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 74.64101009967032,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.39488450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.581408431,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5850996812,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6462749203,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.951709627445125,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.758548137225624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 26.382635391795155,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.978294239743946,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f6fa738e5eee260004693a9fae610bb2\",\n + \ \"label\" : \"Sous Vide Chicken Breast Recipe\",\n \"image\" : + \"https://www.edamam.com/web-img/e3d/e3d9d9a141a06d0c6adfb4e49b1224a5.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2015/07/sous-vide-chicken-breast-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/sous-vide-chicken-breast-recipe-f6fa738e5eee260004693a9fae610bb2/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 bone-in, + skin-on chicken breast halves\", \"Kosher salt and freshly ground black pepper\", + \"4 sprigs thyme or rosemary (optional)\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"2 bone-in, skin-on chicken breast halves\",\n \"weight\" + : 174.0\n }, {\n \"text\" : \"Kosher salt and freshly ground black + pepper\",\n \"weight\" : 1.044\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 0.522\n } + ],\n \"calories\" : 300.59022,\n \"totalWeight\" : 175.2860307047835,\n + \ \"totalTime\" : 165.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 300.59022,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 16.1120172,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 4.63566624,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.1827,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 6.65065758,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 3.41560956,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 0.33381900000000003,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.13206600000000002,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 0.0033408000000000005,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 36.333235800000004,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 111.36,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 405.84742056000005,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 21.63582736914805,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.40026030704784,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 389.7985024563827,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 1.3408075013257856,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 1.3989758307047837,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 303.58476,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 41.90094,\n \"unit\" : \"µg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.11018375999999999,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 0.14883960000000002,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 17.245886459999998,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 0.9237190200000001,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 7.04874,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 7.04874,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.5916,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6960000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.47522880000000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.8545140000000001,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 15.029511,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 24.787718769230768,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 23.1783312,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.11127300000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.5282640000000001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 72.66647160000001,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 37.12,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 16.91030919,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 2.163582736914805,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 11.10006507676196,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 11.137100070182363,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.448930562921031,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.32650553803189,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 43.36925142857143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 4.65566,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 7.345584,\n \"unit\" : \"%\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 8.755270588235295,\n + \ \"unit\" : \"%\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 86.22943229999998,\n \"unit\" + : \"%\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 46.185951,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 1.7621849999999997,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 9.860000000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.17400000000000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.3761440000000005,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1.0681425,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 16.1120172,\n \"hasRDI\" : true,\n \"daily\" + : 24.787718769230768,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 4.63566624,\n \"hasRDI\" + : true,\n \"daily\" : 23.1783312,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.1827,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.65065758,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.41560956,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 0.33381900000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.11127300000000001,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.20175300000000002,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.13206600000000002,\n \"hasRDI\" + : true,\n \"daily\" : 0.5282640000000001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.0033408000000000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 36.333235800000004,\n \"hasRDI\" : true,\n \"daily\" : 72.66647160000001,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 111.36,\n \"hasRDI\" : true,\n \"daily\" + : 37.12,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 405.84742056000005,\n \"hasRDI\" : true,\n \"daily\" + : 16.91030919,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 21.63582736914805,\n \"hasRDI\" : true,\n \"daily\" + : 2.163582736914805,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 44.40026030704784,\n \"hasRDI\" : true,\n \"daily\" + : 11.10006507676196,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 389.7985024563827,\n \"hasRDI\" : true,\n \"daily\" + : 11.137100070182363,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.3408075013257856,\n \"hasRDI\" : true,\n \"daily\" + : 7.448930562921031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.3989758307047837,\n \"hasRDI\" : true,\n \"daily\" + : 9.32650553803189,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 303.58476,\n \"hasRDI\" : true,\n \"daily\" + : 43.36925142857143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 41.90094,\n \"hasRDI\" : true,\n \"daily\" + : 4.65566,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.11018375999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 7.345584,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.14883960000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.755270588235295,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.245886459999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 86.22943229999998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9237190200000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.185951,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 7.04874,\n \"hasRDI\" : true,\n \"daily\" : 1.7621849999999997,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 7.04874,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5916,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.860000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6960000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.17400000000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.47522880000000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 2.3761440000000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8545140000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0681425,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_4d8130ed58d17a6463c7278770eab522\",\n + \ \"label\" : \"Chicken In A Wrap\",\n \"image\" : \"https://www.edamam.com/web-img/a5b/a5b5e63e3d1390540185b178b7436c55.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3111/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-in-a-wrap-4d8130ed58d17a6463c7278770eab522/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", + \"1.0 tbsp olive oil\", \"50.0g soft goat's cheese\", \"handful of fresh sage + leaves\", \"4 rashers streaky bacon\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 chicken breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" + : \"1.0 tbsp olive oil\",\n \"weight\" : 13.5\n }, {\n \"text\" + : \"50.0g soft goat's cheese\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"handful of fresh sage leaves\",\n \"weight\" : 16.0\n }, {\n + \ \"text\" : \"4 rashers streaky bacon\",\n \"weight\" : 116.0\n + \ } ],\n \"calories\" : 1384.02,\n \"totalWeight\" : 543.5,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1384.02,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 104.31039999999999,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 34.956540000000004,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.51968,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 46.075275,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 16.260145,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 11.2016,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.4479999999999995,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 1.4336,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 98.15800000000002,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 322.28,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1218.69,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 378.535,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 177.4,\n \"unit\" : \"mg\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 1179.615,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n + \ \"label\" : \"Iron\",\n \"quantity\" : 8.575600000000001,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.364800000000001,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 915.1199999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 287.47999999999996,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 5.184,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.69504,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6335200000000001,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 40.27556,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 2.70836,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 63.760000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 63.760000000000005,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 1.8582,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.056,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.662450000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 283.347,\n \"unit\" : + \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 69.201,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 160.47753846153844,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 174.78270000000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.7338666666666662,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 25.791999999999998,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 196.31600000000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 107.42666666666665,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 50.77875,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 37.8535,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 44.35,\n \"unit\" : \"%\"\n },\n + \ \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 33.70328571428571,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 47.64222222222223,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 35.76533333333334,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 130.73142857142855,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 31.942222222222217,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 8.639999999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.336000000000006,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.26588235294118,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 201.3778,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 135.418,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" : {\n + \ \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 15.940000000000003,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 30.97,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.514,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 23.312250000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 354.18375,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 104.31039999999999,\n \"hasRDI\" : true,\n \"daily\" : 160.47753846153844,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 34.956540000000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 174.78270000000003,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.51968,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 46.075275,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.260145,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 11.2016,\n + \ \"hasRDI\" : true,\n \"daily\" : 3.7338666666666662,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.7536,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 6.4479999999999995,\n \"hasRDI\" : true,\n + \ \"daily\" : 25.791999999999998,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.4336,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 98.15800000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.31600000000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 322.28,\n \"hasRDI\" : true,\n \"daily\" : 107.42666666666665,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1218.69,\n \"hasRDI\" : true,\n \"daily\" : 50.77875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 378.535,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.8535,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 177.4,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.35,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" : + \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1179.615,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.70328571428571,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.575600000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 47.64222222222223,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 5.364800000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.76533333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 915.1199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 130.73142857142855,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 287.47999999999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.942222222222217,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.184,\n + \ \"hasRDI\" : true,\n \"daily\" : 8.639999999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69504,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.336000000000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6335200000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 37.26588235294118,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 40.27556,\n + \ \"hasRDI\" : true,\n \"daily\" : 201.3778,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.70836,\n + \ \"hasRDI\" : true,\n \"daily\" : 135.418,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.760000000000005,\n \"hasRDI\" : true,\n \"daily\" : 15.940000000000003,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 63.760000000000005,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8582,\n + \ \"hasRDI\" : true,\n \"daily\" : 30.97,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.056,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.514,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.662450000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.312250000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 283.347,\n + \ \"hasRDI\" : true,\n \"daily\" : 354.18375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_00a0855e4149525c4cc8d7bb6a35fedf\",\n + \ \"label\" : \"Summer Traybake Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/6bb/6bb81b4e38070d11d5a9f7299cb86ced.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/2495/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/summer-traybake-chicken-00a0855e4149525c4cc8d7bb6a35fedf/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"4.0 tbsp pesto\", \"1.0 tbsp olive + oil\", \"4 chicken breasts\", \"250.0g cherry tomatoes\" ],\n \"ingredients\" + : [ {\n \"text\" : \"4.0 tbsp pesto\",\n \"weight\" : 68.0\n + \ }, {\n \"text\" : \"1.0 tbsp olive oil\",\n \"weight\" + : 13.5\n }, {\n \"text\" : \"4 chicken breasts\",\n \"weight\" + : 696.0\n }, {\n \"text\" : \"250.0g cherry tomatoes\",\n \"weight\" + : 250.0\n } ],\n \"calories\" : 2025.79314,\n \"totalWeight\" + : 1027.5,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2025.79314,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 146.441846,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 32.1711622,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.7308,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 77.38415199999994,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 27.030692599999934,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 16.974507199999998,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.144456,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 7.773499999999999,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.4499404,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 465.6819,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1764.79886,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 521.32402,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 349.15316,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2708.90496,\n \"unit\" : \"mg\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.187566,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n + \ \"label\" : \"Zinc\",\n \"quantity\" : 8.973756200000002,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1557.762,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 730.44942,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 62.783888000000005,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6468724,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8583286,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 72.61295519999999,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.174144999999999,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 179.56980000000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 179.56980000000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.5264074,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.899668,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : + {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 15.082329000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 706.88284,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.289657,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 225.2951476923077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 160.855811,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.658169066666666,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 24.577824,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 318.8998808,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 155.22729999999999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 73.53328583333334,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 52.132402,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 87.28829,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 77.39728457142857,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 67.7087,\n \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 59.82504133333335,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 222.53742857142853,\n \"unit\" : \"%\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 81.16104666666668,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 104.63981333333335,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 43.12482666666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 50.489917647058824,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 363.06477599999994,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 208.70724999999996,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 44.89245000000001,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 42.10679,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.724917,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" : + {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 75.41164500000001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 883.60355,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 146.441846,\n \"hasRDI\" : true,\n \"daily\" + : 225.2951476923077,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 32.1711622,\n \"hasRDI\" + : true,\n \"daily\" : 160.855811,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.7308,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 77.38415199999994,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 27.030692599999934,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.974507199999998,\n \"hasRDI\" : true,\n \"daily\" : 5.658169066666666,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.830051199999998,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.144456,\n \"hasRDI\" + : true,\n \"daily\" : 24.577824,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 7.773499999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 159.4499404,\n + \ \"hasRDI\" : true,\n \"daily\" : 318.8998808,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 465.6819,\n \"hasRDI\" : true,\n \"daily\" : 155.22729999999999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1764.79886,\n \"hasRDI\" : true,\n \"daily\" : 73.53328583333334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 521.32402,\n \"hasRDI\" : true,\n \"daily\" : 52.132402,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 349.15316,\n \"hasRDI\" : true,\n \"daily\" : 87.28829,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2708.90496,\n \"hasRDI\" : true,\n \"daily\" : 77.39728457142857,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.187566,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.7087,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.973756200000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.82504133333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1557.762,\n + \ \"hasRDI\" : true,\n \"daily\" : 222.53742857142853,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 730.44942,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.16104666666668,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.783888000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.63981333333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.6468724,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.12482666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8583286,\n + \ \"hasRDI\" : true,\n \"daily\" : 50.489917647058824,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.61295519999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 363.06477599999994,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.174144999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 208.70724999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 179.56980000000001,\n \"hasRDI\" : true,\n \"daily\" : 44.89245000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 179.56980000000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5264074,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.10679,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.899668,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.724917,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.082329000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 75.41164500000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 706.88284,\n + \ \"hasRDI\" : true,\n \"daily\" : 883.60355,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_95fa6f5689286a4ffab774da45192494\",\n + \ \"label\" : \"Thomato Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/a23/a2300a1c6b33bee0963f380782d48e27.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/94602/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/thomato-chicken-95fa6f5689286a4ffab774da45192494/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"2 tsp capers\", + \"1 large onion\", \"6 cherry tomatoes\", \"1.5 tsp oregano\", \"3 teaspoons + of tomato puree\", \"1 red pepper\", \"1 tin chopped tomatoes\", \"5 sun-dried + tomatoes\", \"1 teaspoon basil\", \"Salt and pepper to taste\", \"Olive oil + for frying chicken\" ],\n \"ingredients\" : [ {\n \"text\" : \"2 + chicken breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" + : \"2 tsp capers\",\n \"weight\" : 4.733333333333333\n }, {\n + \ \"text\" : \"1 large onion\",\n \"weight\" : 150.0\n }, + {\n \"text\" : \"6 cherry tomatoes\",\n \"weight\" : 90.0\n + \ }, {\n \"text\" : \"1.5 tsp oregano\",\n \"weight\" : + 1.5\n }, {\n \"text\" : \"3 teaspoons of tomato puree\",\n \"weight\" + : 15.625000000000002\n }, {\n \"text\" : \"1 red pepper\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"1 tin chopped tomatoes\",\n \"weight\" + : 190.0\n }, {\n \"text\" : \"5 sun-dried tomatoes\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"1 teaspoon basil\",\n \"weight\" + : 0.5\n }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 5.57615\n }, {\n \"text\" : \"Salt and pepper to taste\",\n + \ \"weight\" : 2.788075\n }, {\n \"text\" : \"Olive oil + for frying chicken\",\n \"weight\" : 12.639273333333334\n } ],\n + \ \"calories\" : 2029.3843472666667,\n \"totalWeight\" : 1077.7013467005797,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2029.3843472666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 174.53919416166667,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 28.984279548866667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 116.1346429920875,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 22.187313543845836,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 41.3203089625,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.768224641666666,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 23.183787846666664,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.90005015916668,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2494.7860878939505,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 208.2887625289724,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 178.92232379617246,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2284.303908290213,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.63648932840358,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.070371313783913,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 783.0884918333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 358.2916135833333,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 205.23728333333332,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.541694371,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6403478683333335,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 38.977151530583335,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.732114464916667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 25.298639881458335,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 125.1165757925,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.46921736333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.52183717179486,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 144.92139774433332,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.773436320833333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 51.072898566666666,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.80010031833336,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.9494203289146,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 20.82887625289724,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.730580949043116,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.26582595114894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.42494071335322,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 27.135808758559424,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 111.86978454761903,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 39.81017928703704,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 342.06213888888885,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 102.77962473333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.66752166666667,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 194.88575765291665,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 136.60572324583336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 34.959097354166666,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 19.720000000000002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.34800000000000003,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 126.49319940729167,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 156.395719740625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 174.53919416166667,\n \"hasRDI\" : true,\n \"daily\" : 268.52183717179486,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 28.984279548866667,\n \"hasRDI\" : true,\n + \ \"daily\" : 144.92139774433332,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.3654,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 116.1346429920875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.187313543845836,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 41.3203089625,\n \"hasRDI\" : true,\n \"daily\" : 13.773436320833333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.552084320833334,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.768224641666666,\n \"hasRDI\" + : true,\n \"daily\" : 51.072898566666666,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 23.183787846666664,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 79.90005015916668,\n \"hasRDI\" : true,\n \"daily\" : 159.80010031833336,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 222.72,\n \"hasRDI\" : true,\n \"daily\" + : 74.24,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2494.7860878939505,\n \"hasRDI\" : true,\n \"daily\" + : 103.9494203289146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.2887625289724,\n \"hasRDI\" : true,\n \"daily\" + : 20.82887625289724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 178.92232379617246,\n \"hasRDI\" : true,\n \"daily\" + : 44.730580949043116,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2284.303908290213,\n \"hasRDI\" : true,\n \"daily\" + : 65.26582595114894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.63648932840358,\n \"hasRDI\" : true,\n \"daily\" + : 42.42494071335322,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.070371313783913,\n \"hasRDI\" : true,\n \"daily\" + : 27.135808758559424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 783.0884918333333,\n \"hasRDI\" : true,\n \"daily\" + : 111.86978454761903,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 358.2916135833333,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.81017928703704,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 205.23728333333332,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.06213888888885,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.541694371,\n \"hasRDI\" : true,\n \"daily\" + : 102.77962473333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6403478683333335,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.66752166666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 38.977151530583335,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.88575765291665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.732114464916667,\n \"hasRDI\" : true,\n + \ \"daily\" : 136.60572324583336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.959097354166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1832,\n \"hasRDI\" : true,\n \"daily\" + : 19.720000000000002,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3920000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34800000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 25.298639881458335,\n \"hasRDI\" : true,\n + \ \"daily\" : 126.49319940729167,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.1165757925,\n \"hasRDI\" : true,\n + \ \"daily\" : 156.395719740625,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_828393c017fcc196f910ca884dd4f88d\",\n + \ \"label\" : \"Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/530/53086a28442e65f61bd8e68abd7f58f7.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/4527-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roasted-chicken-828393c017fcc196f910ca884dd4f88d/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 whole chicken (3-4 lbs.)\", \"3-4 + carrots, peeled and sliced\", \"3 celery ribs, sliced\", \"1 onion, roughly + chopped\", \"3 tablespoons olive oil\", \"2 teaspoons dried thyme\", \"2 teaspoons + herbs de provence\", \"1 teaspoon dried sage\", \"Salt and pepper\", \"2 cups + chicken stock\", \"5 sliced wheat bread, cubed\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 whole chicken (3-4 lbs.)\",\n \"weight\" + : 1587.5732950000001\n }, {\n \"text\" : \"3-4 carrots, peeled + and sliced\",\n \"weight\" : 213.5\n }, {\n \"text\" : + \"3 celery ribs, sliced\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"1 onion, roughly chopped\",\n \"weight\" : 125.0\n }, {\n + \ \"text\" : \"3 tablespoons olive oil\",\n \"weight\" : 40.5\n + \ }, {\n \"text\" : \"2 teaspoons dried thyme\",\n \"weight\" + : 2.0\n }, {\n \"text\" : \"2 teaspoons herbs de provence\",\n + \ \"weight\" : 2.0\n }, {\n \"text\" : \"1 teaspoon dried + sage\",\n \"weight\" : 0.7\n }, {\n \"text\" : \"Salt and + pepper\",\n \"weight\" : 16.27813977\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 8.139069885\n }, {\n \"text\" + : \"2 cups chicken stock\",\n \"weight\" : 480.0\n }, {\n \"text\" + : \"5 sliced wheat bread, cubed\",\n \"weight\" : 141.75\n } ],\n + \ \"calories\" : 3420.73372270135,\n \"totalWeight\" : 2731.2578392487335,\n + \ \"totalTime\" : 176.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 3420.73372270135,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.926089672611,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 55.2166364826592,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.084018345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 100.74371527989015,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 42.78550026883231,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 129.8278451914575,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 19.514284680905,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 33.121785047264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 233.5608797126515,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 824.06238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6328.00865629277,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 594.930975903846,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 376.0322323669872,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 4122.377575454749,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 23.005282316633817,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 17.768878317855233,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2089.0574961003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 2268.402983514951,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 46.3095974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.6621905998358,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.321029634513,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 91.94810922799155,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 4.8265116354653514,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 350.88213231645,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 302.68713231645,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 28.35,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 3.34660450586,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.1590996812000003,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 11.658030848604,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 206.227155010745,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 171.0366861350675,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 330.6555225732477,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 276.08318241329596,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 43.2759483971525,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 78.05713872362,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 467.121759425303,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 274.68746015,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 263.66702734553206,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 59.49309759038461,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 94.0080580917468,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 117.78221644156424,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 127.80712398129897,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 118.45918878570156,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 298.4367851571857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 252.04477594610566,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 77.182662416,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 110.81270665571999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 136.53115497135295,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 459.74054613995776,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 241.32558177326757,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 87.7205330791125,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 58.29015424301999,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 257.78394376343124,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 214.926089672611,\n \"hasRDI\" : true,\n \"daily\" : 330.6555225732477,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 55.2166364826592,\n \"hasRDI\" : true,\n \"daily\" + : 276.08318241329596,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.084018345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 100.74371527989015,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.78550026883231,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 129.8278451914575,\n \"hasRDI\" : true,\n \"daily\" : 43.2759483971525,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 110.31356051055249,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 19.514284680905,\n \"hasRDI\" + : true,\n \"daily\" : 78.05713872362,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 33.121785047264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 233.5608797126515,\n \"hasRDI\" : true,\n \"daily\" : 467.121759425303,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 824.06238045,\n \"hasRDI\" : true,\n \"daily\" + : 274.68746015,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6328.00865629277,\n \"hasRDI\" : true,\n \"daily\" + : 263.66702734553206,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 594.930975903846,\n \"hasRDI\" : true,\n \"daily\" + : 59.49309759038461,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 376.0322323669872,\n \"hasRDI\" : true,\n \"daily\" + : 94.0080580917468,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4122.377575454749,\n \"hasRDI\" : true,\n \"daily\" + : 117.78221644156424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.005282316633817,\n \"hasRDI\" : true,\n \"daily\" + : 127.80712398129897,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.768878317855233,\n \"hasRDI\" : true,\n \"daily\" + : 118.45918878570156,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2089.0574961003,\n \"hasRDI\" : true,\n \"daily\" + : 298.4367851571857,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2268.402983514951,\n \"hasRDI\" : true,\n + \ \"daily\" : 252.04477594610566,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.3095974496,\n \"hasRDI\" : true,\n + \ \"daily\" : 77.182662416,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6621905998358,\n \"hasRDI\" : true,\n + \ \"daily\" : 110.81270665571999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.321029634513,\n \"hasRDI\" + : true,\n \"daily\" : 136.53115497135295,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 91.94810922799155,\n + \ \"hasRDI\" : true,\n \"daily\" : 459.74054613995776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.8265116354653514,\n + \ \"hasRDI\" : true,\n \"daily\" : 241.32558177326757,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 350.88213231645,\n \"hasRDI\" : true,\n \"daily\" : 87.7205330791125,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 302.68713231645,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 28.35,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.658030848604,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.29015424301999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 206.227155010745,\n + \ \"hasRDI\" : true,\n \"daily\" : 257.78394376343124,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_8365a9928c7c6f8666c9798aff01c17f\",\n + \ \"label\" : \"Roat chicken 1-2-3\",\n \"image\" : \"https://www.edamam.com/web-img/2f1/2f1c8172d5488a6efe98cbcb5b2c8fb6.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/3857-roat-chicken-1-2-3\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roat-chicken-1-2-3-8365a9928c7c6f8666c9798aff01c17f/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"3.5 pounds + whole chicken\", \"1 drizzle oil (any kind wil do)\", \"1 whole lemon stabbed + 12 times\" ],\n \"ingredients\" : [ {\n \"text\" : \"3.5 pounds + whole chicken\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"1 drizzle oil (any kind wil do)\",\n \"weight\" : 22.379796812000002\n + \ }, {\n \"text\" : \"1 whole lemon stabbed 12 times\",\n \"weight\" + : 58.0\n } ],\n \"calories\" : 3627.9399880680803,\n \"totalWeight\" + : 1667.9530918120001,\n \"totalTime\" : 184.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3627.9399880680803,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 261.64233503900005,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 70.0953010497038,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.6283462935574002,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 113.23199383876113,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 57.628359847333044,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.4056,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 1.6239999999999999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.45,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 295.92663287000005,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1190.67997125,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1112.4613065,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 189.71306245,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 322.15465900000004,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3080.55352755,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 14.636159655000002,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 20.832010164500005,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2343.0127436500006,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 651.4850509500001,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 56.14117272,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.975743977,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.9166879540000001,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 108.02885979295002,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.6029065325000005,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 101.63439770000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 101.63439770000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.9214772145,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.1751465900000007,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.7572324083752,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 39.770394551956,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 181.396999403404,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 402.5266692907693,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 350.476505248519,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.8018666666666665,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.495999999999999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 591.8532657400001,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 396.89332375000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 46.352554437500004,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.971306245,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.53866475000001,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 88.01581507285714,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.31199808333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 138.8800677633334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 334.7161062357144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 72.38722788333334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 93.56862120000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 65.04959846666667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 112.74635023529413,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 540.1442989647501,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 280.14532662500005,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 25.408599425000002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 82.02462024166667,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7937866475000002,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 43.786162041876004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 49.712993189945,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 261.64233503900005,\n \"hasRDI\" : true,\n \"daily\" : 402.5266692907693,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.0953010497038,\n \"hasRDI\" : true,\n \"daily\" + : 350.476505248519,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.6283462935574002,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 113.23199383876113,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 57.628359847333044,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 5.4056,\n \"hasRDI\" : true,\n \"daily\" : 1.8018666666666665,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.7816,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.6239999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.495999999999999,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.45,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 295.92663287000005,\n \"hasRDI\" + : true,\n \"daily\" : 591.8532657400001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1190.67997125,\n + \ \"hasRDI\" : true,\n \"daily\" : 396.89332375000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1112.4613065,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.352554437500004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 189.71306245,\n + \ \"hasRDI\" : true,\n \"daily\" : 18.971306245,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 322.15465900000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.53866475000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3080.55352755,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.01581507285714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.636159655000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.31199808333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 20.832010164500005,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.8800677633334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2343.0127436500006,\n + \ \"hasRDI\" : true,\n \"daily\" : 334.7161062357144,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 651.4850509500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.38722788333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 56.14117272,\n + \ \"hasRDI\" : true,\n \"daily\" : 93.56862120000001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.975743977,\n + \ \"hasRDI\" : true,\n \"daily\" : 65.04959846666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.9166879540000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 112.74635023529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 108.02885979295002,\n + \ \"hasRDI\" : true,\n \"daily\" : 540.1442989647501,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.6029065325000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 280.14532662500005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.63439770000001,\n \"hasRDI\" : true,\n \"daily\" : 25.408599425000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 101.63439770000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.9214772145,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.02462024166667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1751465900000007,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7937866475000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.7572324083752,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.786162041876004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.770394551956,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.712993189945,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_418a24a28cfc033a1804ad5d12c5a37b\",\n + \ \"label\" : \"Thomato Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/561/56100df8491403ea215cea3c782faec9.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/94602/thomato-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/thomato-chicken-418a24a28cfc033a1804ad5d12c5a37b/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"2 tsp capers\", + \"1 large onion\", \"6 cherry tomatoes\", \"1.5 tsp oregano\", \"3 tsps of + tomato puree\", \"1 red pepper\", \"1 tin chopped tomatoes\", \"5 sun-dried + tomatoes\", \"1 tsp basil\", \"Salt and pepper to taste\", \"Olive oil for + frying chicken\" ],\n \"ingredients\" : [ {\n \"text\" : \"2 chicken + breasts\",\n \"weight\" : 348.0\n }, {\n \"text\" : \"2 + tsp capers\",\n \"weight\" : 4.733333333333333\n }, {\n \"text\" + : \"1 large onion\",\n \"weight\" : 150.0\n }, {\n \"text\" + : \"6 cherry tomatoes\",\n \"weight\" : 90.0\n }, {\n \"text\" + : \"1.5 tsp oregano\",\n \"weight\" : 1.5\n }, {\n \"text\" + : \"3 tsps of tomato puree\",\n \"weight\" : 15.625000000000002\n }, + {\n \"text\" : \"1 red pepper\",\n \"weight\" : 119.0\n }, + {\n \"text\" : \"1 tin chopped tomatoes\",\n \"weight\" : 190.0\n + \ }, {\n \"text\" : \"5 sun-dried tomatoes\",\n \"weight\" + : 10.0\n }, {\n \"text\" : \"1 tsp basil\",\n \"weight\" + : 0.5\n }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 5.57615\n }, {\n \"text\" : \"Salt and pepper to taste\",\n + \ \"weight\" : 2.788075\n }, {\n \"text\" : \"Olive oil + for frying chicken\",\n \"weight\" : 12.639273333333334\n } ],\n + \ \"calories\" : 2029.3843472666667,\n \"totalWeight\" : 1077.7013467005797,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2029.3843472666667,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 174.53919416166667,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 28.984279548866667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 116.1346429920875,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 22.187313543845836,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 41.3203089625,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 12.768224641666666,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 23.183787846666664,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 79.90005015916668,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2494.7860878939505,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 208.2887625289724,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 178.92232379617246,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2284.303908290213,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.63648932840358,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 4.070371313783913,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 783.0884918333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 358.2916135833333,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 205.23728333333332,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.541694371,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.6403478683333335,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 38.977151530583335,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.732114464916667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.83638941666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 25.298639881458335,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 125.1165757925,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 101.46921736333333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 268.52183717179486,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 144.92139774433332,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.773436320833333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 51.072898566666666,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 159.80010031833336,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 103.9494203289146,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 20.82887625289724,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.730580949043116,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 65.26582595114894,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 42.42494071335322,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 27.135808758559424,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 111.86978454761903,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 39.81017928703704,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 342.06213888888885,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 102.77962473333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 37.66752166666667,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 194.88575765291665,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 136.60572324583336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 34.959097354166666,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 19.720000000000002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.34800000000000003,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 126.49319940729167,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 156.395719740625,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 174.53919416166667,\n \"hasRDI\" : true,\n \"daily\" : 268.52183717179486,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 28.984279548866667,\n \"hasRDI\" : true,\n + \ \"daily\" : 144.92139774433332,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 0.3654,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 116.1346429920875,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.187313543845836,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 41.3203089625,\n \"hasRDI\" : true,\n \"daily\" : 13.773436320833333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.552084320833334,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 12.768224641666666,\n \"hasRDI\" + : true,\n \"daily\" : 51.072898566666666,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 23.183787846666664,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 79.90005015916668,\n \"hasRDI\" : true,\n \"daily\" : 159.80010031833336,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 222.72,\n \"hasRDI\" : true,\n \"daily\" + : 74.24,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2494.7860878939505,\n \"hasRDI\" : true,\n \"daily\" + : 103.9494203289146,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 208.2887625289724,\n \"hasRDI\" : true,\n \"daily\" + : 20.82887625289724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 178.92232379617246,\n \"hasRDI\" : true,\n \"daily\" + : 44.730580949043116,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2284.303908290213,\n \"hasRDI\" : true,\n \"daily\" + : 65.26582595114894,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.63648932840358,\n \"hasRDI\" : true,\n \"daily\" + : 42.42494071335322,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.070371313783913,\n \"hasRDI\" : true,\n \"daily\" + : 27.135808758559424,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 783.0884918333333,\n \"hasRDI\" : true,\n \"daily\" + : 111.86978454761903,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 358.2916135833333,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.81017928703704,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 205.23728333333332,\n \"hasRDI\" : true,\n + \ \"daily\" : 342.06213888888885,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.541694371,\n \"hasRDI\" : true,\n \"daily\" + : 102.77962473333332,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6403478683333335,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.66752166666667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 38.977151530583335,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.88575765291665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.732114464916667,\n \"hasRDI\" : true,\n + \ \"daily\" : 136.60572324583336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.959097354166666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 139.83638941666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1832,\n \"hasRDI\" : true,\n \"daily\" + : 19.720000000000002,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.3920000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.34800000000000003,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 25.298639881458335,\n \"hasRDI\" : true,\n + \ \"daily\" : 126.49319940729167,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.1165757925,\n \"hasRDI\" : true,\n + \ \"daily\" : 156.395719740625,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_afbee3095f748690f2f006e4e2f7abcf\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/ffb/ffbcb7f308985099ba4b519ae4364f9d.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/33127-chicken-marsala\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-afbee3095f748690f2f006e4e2f7abcf/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"8 ounces fresh button or cremini mushrooms, stems removed and sliced\", + \"2 tablespoons extra-virgin olive oil, divided\", \"2 boneless, skinless + chicken breasts\", \"Salt and pepper, to taste\", \"1/2 cup plus 1 splash + sweet Marsala wine, divided\", \"3 garlic cloves, minced\", \"1/2 cup heavy + cream\", \"1/2 cup chicken broth\", \"2 tablespoons unsalted butter\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"8 ounces fresh button or + cremini mushrooms, stems removed and sliced\",\n \"weight\" : 226.796185\n + \ }, {\n \"text\" : \"2 tablespoons extra-virgin olive oil, divided\",\n + \ \"weight\" : 27.0\n }, {\n \"text\" : \"2 boneless, skinless + chicken breasts\",\n \"weight\" : 544.0\n }, {\n \"text\" + : \"Salt and pepper, to taste\",\n \"weight\" : 7.1531771100000014\n + \ }, {\n \"text\" : \"Salt and pepper, to taste\",\n \"weight\" + : 3.5765885550000007\n }, {\n \"text\" : \"1/2 cup plus 1 splash + sweet Marsala wine, divided\",\n \"weight\" : 118.0\n }, {\n \"text\" + : \"1/2 cup plus 1 splash sweet Marsala wine, divided\",\n \"weight\" + : 0.0\n }, {\n \"text\" : \"3 garlic cloves, minced\",\n \"weight\" + : 9.0\n }, {\n \"text\" : \"1/2 cup heavy cream\",\n \"weight\" + : 119.0\n }, {\n \"text\" : \"1/2 cup chicken broth\",\n \"weight\" + : 120.0\n }, {\n \"text\" : \"2 tablespoons unsalted butter\",\n + \ \"weight\" : 28.4\n } ],\n \"calories\" : 1719.0803979730501,\n + \ \"totalWeight\" : 1201.690799718981,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1719.0803979730501,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 110.146432971893,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 49.262219578585594,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.9690319999999999,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 42.86429091312145,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 8.056000751478901,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.797604335922504,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.4546540144150004,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 10.179124548752002,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 134.8014121758645,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 624.81,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2780.7456694466814,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 199.0539268780054,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 207.83480334068983,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3256.259212789069,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 4.320980975031636,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.967497464968482,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1586.8924319169,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 723.59167890985,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.7619999999999996,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8241790913894002,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.3602151658990005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 63.101153437183655,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.951585676195052,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 119.32906630435004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 119.32906630435004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.6316761850000001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.4857961849999999,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.944256139472001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 29.385875464535,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 85.9540198986525,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 169.45605072598926,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 246.31109789292796,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.599201445307502,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 9.818616057660002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 269.602824351729,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 208.26999999999998,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 115.86440289361173,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.90539268780054,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.95870083517246,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.03597750825911,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 24.005449861286866,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 46.44998309978988,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 226.69891884527144,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 80.39907543442779,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 6.269999999999999,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 54.945272759293346,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 138.83618622935296,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.5057671859183,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 247.57928380975258,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 29.83226657608751,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 27.194603083333334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.37144904624999997,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 44.72128069736,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 36.73234433066875,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 110.146432971893,\n \"hasRDI\" + : true,\n \"daily\" : 169.45605072598926,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 49.262219578585594,\n \"hasRDI\" : true,\n \"daily\" : + 246.31109789292796,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.9690319999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 42.86429091312145,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.056000751478901,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 25.797604335922504,\n \"hasRDI\" : true,\n \"daily\" : 8.599201445307502,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 23.3429503215075,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.4546540144150004,\n \"hasRDI\" + : true,\n \"daily\" : 9.818616057660002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 10.179124548752002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 134.8014121758645,\n \"hasRDI\" : true,\n \"daily\" : 269.602824351729,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 624.81,\n \"hasRDI\" : true,\n \"daily\" + : 208.26999999999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2780.7456694466814,\n \"hasRDI\" : true,\n \"daily\" + : 115.86440289361173,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 199.0539268780054,\n \"hasRDI\" : true,\n \"daily\" + : 19.90539268780054,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 207.83480334068983,\n \"hasRDI\" : true,\n \"daily\" + : 51.95870083517246,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3256.259212789069,\n \"hasRDI\" : true,\n \"daily\" + : 93.03597750825911,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.320980975031636,\n \"hasRDI\" : true,\n \"daily\" + : 24.005449861286866,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.967497464968482,\n \"hasRDI\" : true,\n \"daily\" + : 46.44998309978988,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1586.8924319169,\n \"hasRDI\" : true,\n \"daily\" + : 226.69891884527144,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 723.59167890985,\n \"hasRDI\" : true,\n + \ \"daily\" : 80.39907543442779,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.7619999999999996,\n \"hasRDI\" : true,\n + \ \"daily\" : 6.269999999999999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8241790913894002,\n \"hasRDI\" : true,\n + \ \"daily\" : 54.945272759293346,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.3602151658990005,\n + \ \"hasRDI\" : true,\n \"daily\" : 138.83618622935296,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.101153437183655,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.5057671859183,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.951585676195052,\n + \ \"hasRDI\" : true,\n \"daily\" : 247.57928380975258,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 119.32906630435004,\n \"hasRDI\" : true,\n \"daily\" : 29.83226657608751,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 119.32906630435004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.6316761850000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 27.194603083333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.4857961849999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.37144904624999997,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.944256139472001,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.72128069736,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.385875464535,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.73234433066875,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b7d3f322f6ff52137f33c9f0fac2e503\",\n + \ \"label\" : \"Kahlua Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/527/527d3ad36e9961591dea41a7c1bf88ff.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/12596-kahlua-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/kahlua-chicken-b7d3f322f6ff52137f33c9f0fac2e503/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"1 pound boneless, + skinless chicken breasts\", \"1/2 cup kahlua\", \"1/2 cup soy sauce\", \"3 + tablespoons red wine vinegar\", \"1 teaspoon ginger\", \"1 tablespoon cornstarch\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound boneless, skinless + chicken breasts\",\n \"weight\" : 453.59237\n }, {\n \"text\" + : \"1/2 cup kahlua\",\n \"weight\" : 130.4\n }, {\n \"text\" + : \"1/2 cup soy sauce\",\n \"weight\" : 127.5\n }, {\n \"text\" + : \"3 tablespoons red wine vinegar\",\n \"weight\" : 44.7\n }, + {\n \"text\" : \"1 teaspoon ginger\",\n \"weight\" : 2.0\n }, + {\n \"text\" : \"1 tablespoon cornstarch\",\n \"weight\" : 8.0\n + \ } ],\n \"calories\" : 961.5068440000002,\n \"totalWeight\" + : 766.1923700000001,\n \"totalTime\" : 359.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 961.5068440000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 22.540270094,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 11.2201640431,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.031751465900000005,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 3.8181794293,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 2.4422846488000003,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 50.05384000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.2624000000000004,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.5440000000000002,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 113.29426325000001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 331.12243010000003,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 7304.831566500001,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 69.2206185,\n \"unit\" : \"mg\"\n },\n + \ \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 232.06786360000007,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2203.8285158000003,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.8169117690000003,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 4.4794881160000015,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1230.0417481000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 33.0554659,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 2.2795,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.49111982780000013,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.0204334949,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 46.495383520000004,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.892702120700001,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 66.7173133,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 66.7173133,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 0.952543977,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.535923700000001,\n \"unit\" : \"IU\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.5453172720000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 0.9091847400000002,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 48.075342200000016,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 34.67733860615385,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 56.10082021550001,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.684613333333335,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.049600000000002,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 226.58852650000006,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 110.37414336666669,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 304.3679819375001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 6.92206185,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.01696590000002,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 62.96652902285716,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 21.205065383333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 29.863254106666677,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 175.72024972857145,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 3.6728295444444443,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 3.799166666666667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 32.74132185333334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 60.0254997,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 232.47691760000004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 194.63510603500004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 16.679328325,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 15.87573295,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1339809250000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 12.726586360000002,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1.1364809250000003,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 22.540270094,\n \"hasRDI\" : true,\n \"daily\" + : 34.67733860615385,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 11.2201640431,\n \"hasRDI\" + : true,\n \"daily\" : 56.10082021550001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.031751465900000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8181794293,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4422846488000003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 50.05384000000001,\n \"hasRDI\" : true,\n \"daily\" : 16.684613333333335,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 48.79144000000001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.2624000000000004,\n \"hasRDI\" + : true,\n \"daily\" : 5.049600000000002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.5440000000000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 113.29426325000001,\n \"hasRDI\" : true,\n \"daily\" : 226.58852650000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 331.12243010000003,\n \"hasRDI\" : true,\n \"daily\" + : 110.37414336666669,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 7304.831566500001,\n \"hasRDI\" : true,\n \"daily\" + : 304.3679819375001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 69.2206185,\n \"hasRDI\" : true,\n \"daily\" + : 6.92206185,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 232.06786360000007,\n \"hasRDI\" : true,\n \"daily\" + : 58.01696590000002,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2203.8285158000003,\n \"hasRDI\" : true,\n \"daily\" + : 62.96652902285716,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3.8169117690000003,\n \"hasRDI\" : true,\n \"daily\" + : 21.205065383333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.4794881160000015,\n \"hasRDI\" : true,\n \"daily\" + : 29.863254106666677,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1230.0417481000002,\n \"hasRDI\" : true,\n \"daily\" + : 175.72024972857145,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 33.0554659,\n \"hasRDI\" : true,\n \"daily\" + : 3.6728295444444443,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.2795,\n \"hasRDI\" : true,\n \"daily\" + : 3.799166666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.49111982780000013,\n \"hasRDI\" : true,\n + \ \"daily\" : 32.74132185333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.0204334949,\n \"hasRDI\" + : true,\n \"daily\" : 60.0254997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.495383520000004,\n \"hasRDI\" : true,\n + \ \"daily\" : 232.47691760000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.892702120700001,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.63510603500004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.7173133,\n \"hasRDI\" + : true,\n \"daily\" : 16.679328325,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.7173133,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.952543977,\n \"hasRDI\" : true,\n \"daily\" + : 15.87573295,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4.535923700000001,\n \"hasRDI\" : true,\n \"daily\" + : 1.1339809250000001,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.5453172720000006,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.726586360000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9091847400000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 1.1364809250000003,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1f0be3c2998a2f05982bd13ccf1bfde5\",\n + \ \"label\" : \"Vinegar-Glossed Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/060/06021bd858aea28316aaf020c5033bac.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/27811/recipes-vinegar-glosse-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/vinegar-glossed-chicken-1f0be3c2998a2f05982bd13ccf1bfde5/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 cup best-quality + red-wine vinegar\", \"2 to 3 garlic cloves, minced (about 2 tablespoons)\", + \"3 sprigs of fresh rosemary (about 1 tablespoon minced)\", \"5 1/2 pounds + bone-in chicken pieces (large pieces, such as breast, should be cut in half)\", + \"Coarse salt and freshly ground black pepper\", \"Extra-virgin olive oil\", + \"3/4 cup chicken broth, plus more as needed\" ],\n \"ingredients\" : + [ {\n \"text\" : \"1 cup best-quality red-wine vinegar\",\n \"weight\" + : 239.0\n }, {\n \"text\" : \"2 to 3 garlic cloves, minced (about + 2 tablespoons)\",\n \"weight\" : 17.0\n }, {\n \"text\" + : \"3 sprigs of fresh rosemary (about 1 tablespoon minced)\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"5 1/2 pounds bone-in chicken pieces + (large pieces, such as breast, should be cut in half)\",\n \"weight\" + : 2494.7580350000003\n }, {\n \"text\" : \"Coarse salt and freshly + ground black pepper\",\n \"weight\" : 17.67454821\n }, {\n \"text\" + : \"Coarse salt and freshly ground black pepper\",\n \"weight\" : 8.837274105\n + \ }, {\n \"text\" : \"Extra-virgin olive oil\",\n \"weight\" + : 40.062309276\n }, {\n \"text\" : \"3/4 cup chicken broth, plus + more as needed\",\n \"weight\" : 180.0\n } ],\n \"calories\" + : 5895.252147253391,\n \"totalWeight\" : 3007.3822354223494,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 5895.252147253391,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 419.1849644828231,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 114.19751982887168,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.4199152939500004,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 186.19154031049834,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 85.44551733118139,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 21.3759367901475,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 4.707830348565,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 3.0705585542720004,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 471.15248728950957,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1876.4685262500002,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 6964.016398392647,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 415.0870393178338,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 548.8505918899637,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 5284.538651461518,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 26.31726179877755,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 33.45961843739086,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 3784.8872045359003,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1048.9368583583503,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 50.04512856,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.6087990770334002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.2041167353890003,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 172.87650400337017,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 9.127519590145551,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 177.04781869785,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 177.04781869785,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.733749908500001,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 4.9895160700000005,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.392723136798002,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 76.65449841903701,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 294.76260736266954,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 644.8999453581894,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 570.9875991443585,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.125312263382499,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 18.83132139426,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 942.3049745790191,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 625.4895087500001,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 290.16734993302697,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 41.50870393178338,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 137.2126479724909,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 150.98681861318624,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 146.2070099932086,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 223.06412291593907,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 540.6981720765572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 116.54853981759447,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 83.4085476,\n \"unit\" : \"%\"\n },\n \"THIA\" : + {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 107.25327180222668,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 188.47745502288237,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 864.3825200168509,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 456.3759795072776,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 44.2619546744625,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 128.89583180833336,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.2473790175000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 66.96361568399001,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 95.81812302379626,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 419.1849644828231,\n \"hasRDI\" : true,\n \"daily\" : 644.8999453581894,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 114.19751982887168,\n \"hasRDI\" : true,\n + \ \"daily\" : 570.9875991443585,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.4199152939500004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 186.19154031049834,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.44551733118139,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 21.3759367901475,\n \"hasRDI\" : true,\n \"daily\" : 7.125312263382499,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 16.6681064415825,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 4.707830348565,\n \"hasRDI\" + : true,\n \"daily\" : 18.83132139426,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 3.0705585542720004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 471.15248728950957,\n \"hasRDI\" : true,\n \"daily\" : 942.3049745790191,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1876.4685262500002,\n \"hasRDI\" : true,\n \"daily\" + : 625.4895087500001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 6964.016398392647,\n \"hasRDI\" : true,\n \"daily\" + : 290.16734993302697,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 415.0870393178338,\n \"hasRDI\" : true,\n \"daily\" + : 41.50870393178338,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 548.8505918899637,\n \"hasRDI\" : true,\n \"daily\" + : 137.2126479724909,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5284.538651461518,\n \"hasRDI\" : true,\n \"daily\" + : 150.98681861318624,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 26.31726179877755,\n \"hasRDI\" : true,\n \"daily\" + : 146.2070099932086,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 33.45961843739086,\n \"hasRDI\" : true,\n \"daily\" + : 223.06412291593907,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3784.8872045359003,\n \"hasRDI\" : true,\n \"daily\" + : 540.6981720765572,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1048.9368583583503,\n \"hasRDI\" : true,\n + \ \"daily\" : 116.54853981759447,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 50.04512856,\n \"hasRDI\" : true,\n \"daily\" + : 83.4085476,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.6087990770334002,\n \"hasRDI\" : true,\n + \ \"daily\" : 107.25327180222668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.2041167353890003,\n + \ \"hasRDI\" : true,\n \"daily\" : 188.47745502288237,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 172.87650400337017,\n + \ \"hasRDI\" : true,\n \"daily\" : 864.3825200168509,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.127519590145551,\n + \ \"hasRDI\" : true,\n \"daily\" : 456.3759795072776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 177.04781869785,\n \"hasRDI\" : true,\n \"daily\" : 44.2619546744625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 177.04781869785,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.733749908500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 128.89583180833336,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.9895160700000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.2473790175000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.392723136798002,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.96361568399001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 76.65449841903701,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.81812302379626,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b821989b11e1b1a162896e0043965aca\",\n + \ \"label\" : \"Chicken Soup\",\n \"image\" : \"https://www.edamam.com/web-img/fbd/fbd757a1bfb9099cae185fbbdb376035.jpg\",\n + \ \"source\" : \"Pioneer Woman\",\n \"url\" : \"http://thepioneerwoman.com/cooking/2011/12/chunky-chicken-soup/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-soup-b821989b11e1b1a162896e0043965aca/chicken\",\n + \ \"yield\" : 12.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" + : [ \"1 whole Chicken\", \"1 whole Bay Leaf\", \"64 ounces, fluid Unsalted + (or Low Sodium) Chicken Broth (you May Use Half Broth And Half Water If Desired.)\", + \"1 whole Large Onion, Chopped\", \"3 whole Ribs Of Celery, Sliced\", \"3 + whole Carrots, Peeled And Chopped\", \"3 whole Parsnips, Peeled And Chopped\", + \"1/2 teaspoon Salt\", \"Ground Black Pepper\" ],\n \"ingredients\" : + [ {\n \"text\" : \"1 whole Chicken\",\n \"weight\" : 920.0\n + \ }, {\n \"text\" : \"1 whole Bay Leaf\",\n \"weight\" : + 0.6\n }, {\n \"text\" : \"64 ounces, fluid Unsalted (or Low Sodium) + Chicken Broth (you May Use Half Broth And Half Water If Desired.)\",\n \"weight\" + : 1814.36948\n }, {\n \"text\" : \"1 whole Large Onion, Chopped\",\n + \ \"weight\" : 156.25\n }, {\n \"text\" : \"3 whole Ribs + Of Celery, Sliced\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"3 whole Carrots, Peeled And Chopped\",\n \"weight\" : 183.0\n }, + {\n \"text\" : \"3 whole Parsnips, Peeled And Chopped\",\n \"weight\" + : 399.0\n }, {\n \"text\" : \"1/2 teaspoon Salt\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"Ground Black Pepper\",\n \"weight\" + : 10.78865844\n } ],\n \"calories\" : 2753.2366494843995,\n \"totalWeight\" + : 3607.00813844,\n \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2753.2366494844,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 151.83653714514404,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 43.4468144946848,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.8924000000000001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 63.000153061071615,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 32.6465188560312,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 136.59085083238,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 32.13858058532,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 38.486927738016,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 217.61064121191606,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 690.0000000000001,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2621.766575688,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 515.2600360892001,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 387.8373007324,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 6067.928023467601,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.876879642524,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 17.234879515436003,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2335.8874243352,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1936.4169377787998,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 108.9085,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.1406607511152,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.086483929192,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 92.71854624196922,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.3312119440604,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 433.10157193480006,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 433.10157193480006,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.66636948,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.380352047776,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 181.17703386628,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 137.66183247421998,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 233.5946725309908,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 217.23407247342402,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.53028361079333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 128.55432234128,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 435.22128242383206,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 109.24027398700001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 51.52600360892001,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 96.9593251831,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 173.3693720990743,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 93.76044245846667,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 114.89919676957335,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 333.6982034764572,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 215.15743753097777,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 181.51416666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 76.04405007434667,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 122.734348776,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 463.5927312098461,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 216.56059720302002,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 108.27539298370002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 77.77282466666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.4600000000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.90176023888,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 226.47129233285,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 151.83653714514404,\n \"hasRDI\" + : true,\n \"daily\" : 233.5946725309908,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 43.4468144946848,\n \"hasRDI\" : true,\n \"daily\" : 217.23407247342402,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.8924000000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 63.000153061071615,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.6465188560312,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 136.59085083238,\n \"hasRDI\" : true,\n \"daily\" : 45.53028361079333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 104.45227024706,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 32.13858058532,\n \"hasRDI\" + : true,\n \"daily\" : 128.55432234128,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 38.486927738016,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 217.61064121191606,\n \"hasRDI\" : true,\n \"daily\" : 435.22128242383206,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 230.00000000000006,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2621.766575688,\n \"hasRDI\" : true,\n \"daily\" + : 109.24027398700001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 515.2600360892001,\n \"hasRDI\" : true,\n \"daily\" + : 51.52600360892001,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 387.8373007324,\n \"hasRDI\" : true,\n \"daily\" + : 96.9593251831,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6067.928023467601,\n \"hasRDI\" : true,\n \"daily\" + : 173.3693720990743,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.876879642524,\n \"hasRDI\" : true,\n \"daily\" + : 93.76044245846667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 17.234879515436003,\n \"hasRDI\" : true,\n \"daily\" + : 114.89919676957335,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2335.8874243352,\n \"hasRDI\" : true,\n \"daily\" + : 333.6982034764572,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1936.4169377787998,\n \"hasRDI\" : true,\n + \ \"daily\" : 215.15743753097777,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 108.9085,\n \"hasRDI\" : true,\n \"daily\" + : 181.51416666666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.1406607511152,\n \"hasRDI\" : true,\n + \ \"daily\" : 76.04405007434667,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.086483929192,\n \"hasRDI\" + : true,\n \"daily\" : 122.734348776,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 92.71854624196922,\n \"hasRDI\" : true,\n + \ \"daily\" : 463.5927312098461,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.3312119440604,\n \"hasRDI\" : true,\n + \ \"daily\" : 216.56059720302002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 433.10157193480006,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.27539298370002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 433.10157193480006,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.66636948,\n \"hasRDI\" : true,\n \"daily\" + : 77.77282466666666,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.380352047776,\n \"hasRDI\" : true,\n + \ \"daily\" : 51.90176023888,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 181.17703386628,\n \"hasRDI\" : true,\n + \ \"daily\" : 226.47129233285,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6da6cdfc2137a61c59d67ffe87802124\",\n + \ \"label\" : \"Chicken Satay\",\n \"image\" : \"https://www.edamam.com/web-img/86a/86a708c955beba1c95a9ef0d8c138420.jpg\",\n + \ \"source\" : \"NY Magazine\",\n \"url\" : \"http://nymag.com/restaurants/articles/recipes/chickensatay.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-satay-6da6cdfc2137a61c59d67ffe87802124/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ ],\n \"cautions\" : [ \"Gluten\", \"Wheat\", \"Tree-Nuts\", \"Shellfish\" + ],\n \"ingredientLines\" : [ \"1⁄2 teaspoon peanut oil\", \"1 teaspoon + red curry paste\", \"1 teaspoon sugar\", \"1⁄2 cup coconut milk\", \"1⁄2 cup + coarsely chopped, roasted peanuts\", \"1 teaspoon soy sauce\", \"4 tablespoons + finely chopped shallots\", \"3 tablespoons ground roasted peanuts\", \"1 tablespoon + coriander seeds, toasted and ground\", \"1 teaspoon cumin seeds, toasted and + ground\", \"1⁄2 cup coconut milk\", \"1 teaspoon turmeric\", \"1 tablespoon + condensed milk\", \"1 tablespoon palm sugar (or light brown sugar)\", \"2 + tablespoons thai fish sauce\", \"1 tablespoon whiskey\", \"Pinch salt\", \"1 + 1⁄2 pounds boneless chicken breast\", \"Salt and freshly ground black pepper\", + \"Heat the oil in a saucepan, and sweat the curry and sugar until the sugar + melts and starts to caramelize. add the coconut milk, and bring to a boil. + stir in the peanuts, and season with soy sauce.\", \"In a blender, purée the + shallots, peanuts, coriander, and cumin into a paste, then add the remaining + ingredients and blend until smooth.\", \"Cut the chicken into strips 1 inch + wide, 3 to 4 inches long, and at least 1⁄4 inch thick, and thread onto skewers. + coat the chicken with spice paste, and season with salt and pepper. heat the + grill to medium-high, and cook until lightly charred on one side, then turn + to cook other side. do not overcook, or the chicken will become rubbery. serve + with peanut sauce.\" ],\n \"ingredients\" : [ {\n \"text\" : \"1⁄2 + teaspoon peanut oil\",\n \"weight\" : 2.25\n }, {\n \"text\" + : \"1 teaspoon red curry paste\",\n \"weight\" : 5.333333333333334\n + \ }, {\n \"text\" : \"1 teaspoon sugar\",\n \"weight\" : + 4.2\n }, {\n \"text\" : \"1⁄2 cup coconut milk\",\n \"weight\" + : 113.0\n }, {\n \"text\" : \"1⁄2 cup coarsely chopped, roasted + peanuts\",\n \"weight\" : 73.0\n }, {\n \"text\" : \"1 + teaspoon soy sauce\",\n \"weight\" : 5.3\n }, {\n \"text\" + : \"4 tablespoons finely chopped shallots\",\n \"weight\" : 40.0\n + \ }, {\n \"text\" : \"3 tablespoons ground roasted peanuts\",\n + \ \"weight\" : 27.375\n }, {\n \"text\" : \"1 tablespoon + coriander seeds, toasted and ground\",\n \"weight\" : 5.0\n }, + {\n \"text\" : \"1 teaspoon cumin seeds, toasted and ground\",\n \"weight\" + : 2.1\n }, {\n \"text\" : \"1⁄2 cup coconut milk\",\n \"weight\" + : 113.0\n }, {\n \"text\" : \"1 teaspoon turmeric\",\n \"weight\" + : 3.0\n }, {\n \"text\" : \"1 tablespoon condensed milk\",\n \"weight\" + : 19.1\n }, {\n \"text\" : \"1 tablespoon palm sugar (or light + brown sugar)\",\n \"weight\" : 9.062500000000002\n }, {\n \"text\" + : \"2 tablespoons thai fish sauce\",\n \"weight\" : 36.0\n }, + {\n \"text\" : \"1 tablespoon whiskey\",\n \"weight\" : 13.900000000000002\n + \ }, {\n \"text\" : \"Pinch salt\",\n \"weight\" : 0.75\n + \ }, {\n \"text\" : \"1 1⁄2 pounds boneless chicken breast\",\n + \ \"weight\" : 680.388555\n }, {\n \"text\" : \"Salt and + freshly ground black pepper\",\n \"weight\" : 6.92735633\n }, + {\n \"text\" : \"Salt and freshly ground black pepper\",\n \"weight\" + : 3.463678165\n }, {\n \"text\" : \"Heat the oil in a saucepan, + and sweat the curry and sugar until the sugar melts and starts to caramelize. + add the coconut milk, and bring to a boil. stir in the peanuts, and season + with soy sauce.\",\n \"weight\" : 15.702007681333333\n }, {\n + \ \"text\" : \"In a blender, purée the shallots, peanuts, coriander, + and cumin into a paste, then add the remaining ingredients and blend until + smooth.\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"In + a blender, purée the shallots, peanuts, coriander, and cumin into a paste, + then add the remaining ingredients and blend until smooth.\",\n \"weight\" + : 2.4245747155\n } ],\n \"calories\" : 2595.9384373990597,\n \"totalWeight\" + : 1175.3996488951666,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2595.9384373990597,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 182.9754084003113,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 70.02452472671936,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.7781109130912668,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 65.74591305700596,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 35.12903315239691,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 65.2210661260659,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.968871725261424,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 32.887294879088984,\n \"unit\" + : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" : \"Sugars, + added\",\n \"quantity\" : 12.984037500000003,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 179.67168239571248,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 442.4333251396205,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3663.8550218943856,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 417.30306768679316,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 577.7487296742638,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3343.0642393968487,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 24.3718906484948,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.235921477952537,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1933.2634698803854,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 187.12095945227162,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 8.669054116840018,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2252182329838601,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8827369945886988,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 82.57464250071918,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.3664662643363235,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 338.4306513921021,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 338.4306513921021,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.5716018844417428,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.7597542200000005,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 13.756655117156656,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 18.4123948431836,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 129.796921869953,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 281.5006283081712,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 350.12262363359685,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 21.740355375355303,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 59.8754869010457,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 359.34336479142496,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 147.47777504654016,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 152.66062591226606,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 41.73030676867931,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 144.43718241856595,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 95.51612112562425,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 135.39939249163777,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 74.90614318635025,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 276.1804956971979,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 20.79121771691907,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 14.448423528066696,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 81.68121553225734,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 51.92570556404111,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 412.87321250359594,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 218.32331321681616,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 84.60766284802553,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 42.86003140736238,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6899385550000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 68.78327558578329,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 23.0154935539795,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 182.9754084003113,\n \"hasRDI\" : true,\n \"daily\" : 281.5006283081712,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 70.02452472671936,\n \"hasRDI\" : true,\n \"daily\" + : 350.12262363359685,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.7781109130912668,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.74591305700596,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.12903315239691,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 65.2210661260659,\n \"hasRDI\" : true,\n \"daily\" : 21.740355375355303,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 50.252194400804484,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.968871725261424,\n \"hasRDI\" + : true,\n \"daily\" : 59.8754869010457,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 32.887294879088984,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 12.984037500000003,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 179.67168239571248,\n \"hasRDI\" + : true,\n \"daily\" : 359.34336479142496,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 442.4333251396205,\n + \ \"hasRDI\" : true,\n \"daily\" : 147.47777504654016,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3663.8550218943856,\n + \ \"hasRDI\" : true,\n \"daily\" : 152.66062591226606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 417.30306768679316,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.73030676867931,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 577.7487296742638,\n + \ \"hasRDI\" : true,\n \"daily\" : 144.43718241856595,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3343.0642393968487,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.51612112562425,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 24.3718906484948,\n + \ \"hasRDI\" : true,\n \"daily\" : 135.39939249163777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 11.235921477952537,\n + \ \"hasRDI\" : true,\n \"daily\" : 74.90614318635025,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1933.2634698803854,\n + \ \"hasRDI\" : true,\n \"daily\" : 276.1804956971979,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 187.12095945227162,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.79121771691907,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.669054116840018,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.448423528066696,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.2252182329838601,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.68121553225734,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8827369945886988,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.92570556404111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 82.57464250071918,\n + \ \"hasRDI\" : true,\n \"daily\" : 412.87321250359594,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.3664662643363235,\n + \ \"hasRDI\" : true,\n \"daily\" : 218.32331321681616,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 338.4306513921021,\n \"hasRDI\" : true,\n \"daily\" : 84.60766284802553,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 338.4306513921021,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5716018844417428,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.86003140736238,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7597542200000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6899385550000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.756655117156656,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.78327558578329,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 18.4123948431836,\n + \ \"hasRDI\" : true,\n \"daily\" : 23.0154935539795,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3732f635ac27370d3ffcc58283eeadd9\",\n + \ \"label\" : \"Drunken Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/921/9216913515dc95ba687e2ae85d6ef3e0.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2012/07/drunken-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/drunken-chicken-recipe-3732f635ac27370d3ffcc58283eeadd9/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 whole chicken + parts (two breasts, two leg/thighs, or a mix), totaling about 2 pounds\", + \"One 1-inch piece of ginger\", \"Kosher salt\", \"1 cup Shaoxing rice wine\", + \"1 cup chicken broth from simmering\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 whole chicken parts (two breasts, two leg/thighs, or a mix), totaling + about 2 pounds\",\n \"weight\" : 392.0\n }, {\n \"text\" + : \"One 1-inch piece of ginger\",\n \"weight\" : 15.0\n }, {\n + \ \"text\" : \"Kosher salt\",\n \"weight\" : 5.2787999999999995\n + \ }, {\n \"text\" : \"1 cup Shaoxing rice wine\",\n \"weight\" + : 232.8\n }, {\n \"text\" : \"1 cup chicken broth from simmering\",\n + \ \"weight\" : 240.0\n } ],\n \"calories\" : 983.456,\n \"totalWeight\" + : 883.6948328190309,\n \"totalTime\" : 1440.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 983.456,\n \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n + \ \"label\" : \"Fat\",\n \"quantity\" : 43.136436,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 12.289586,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.2585632,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 18.053244,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 9.144188,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 22.7775,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.3,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 4.047,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 57.06516000000001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 207.11999999999998,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2045.957304,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 51.49635987656741,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 83.3689483281903,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 876.5599866255226,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.238692948302802,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 3.929390832819031,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 475.7112,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 111.6896,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.494960000000001,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.24768600000000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.528972,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 22.0428456,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 1.10336,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" : + {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 29.6436,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n + \ \"label\" : \"Folate (food)\",\n \"quantity\" : 29.6436,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 0.826336,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.53312,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 0.9106799999999999,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 4.493399999999999,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 49.1728,\n \"unit\" : \"%\"\n },\n \"FAT\" : {\n + \ \"label\" : \"Fat\",\n \"quantity\" : 66.3637476923077,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.44793,\n \"unit\" : + \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 7.5925,\n \"unit\" : \"%\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.2,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 114.13032000000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 69.03999999999999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 85.248221,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 5.149635987656741,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 20.84223708204758,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 25.0445710464435,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 17.992738601682234,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 26.195938885460205,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 67.95874285714287,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 12.409955555555555,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 9.158266666666668,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 16.512400000000003,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 31.116,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 110.214228,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 55.16799999999999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 7.410900000000001,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 13.772266666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.13328,\n \"unit\" : + \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 4.5534,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 5.616749999999999,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 43.136436,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.3637476923077,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 12.289586,\n \"hasRDI\" : true,\n \"daily\" : 61.44793,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.2585632,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 18.053244,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 9.144188,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.7775,\n \"hasRDI\" : true,\n \"daily\" : 7.5925,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 22.4775,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.3,\n \"hasRDI\" : true,\n \"daily\" + : 1.2,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 4.047,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 57.06516000000001,\n \"hasRDI\" + : true,\n \"daily\" : 114.13032000000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 207.11999999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.03999999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 2045.957304,\n + \ \"hasRDI\" : true,\n \"daily\" : 85.248221,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.49635987656741,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.149635987656741,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.3689483281903,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.84223708204758,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 876.5599866255226,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.0445710464435,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.238692948302802,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.992738601682234,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.929390832819031,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.195938885460205,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 475.7112,\n + \ \"hasRDI\" : true,\n \"daily\" : 67.95874285714287,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 111.6896,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.409955555555555,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.494960000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.158266666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.24768600000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.512400000000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.528972,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.116,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.0428456,\n + \ \"hasRDI\" : true,\n \"daily\" : 110.214228,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.10336,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.16799999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.6436,\n \"hasRDI\" : true,\n \"daily\" : 7.410900000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 29.6436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.826336,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.772266666666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.53312,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.13328,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9106799999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.5534,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.493399999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 5.616749999999999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c9bc1ad59e36cd23aa74c07a22372ea3\",\n + \ \"label\" : \"Citrus Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/d4b/d4bb1e6c7a6c3738d8e01707eb0ad83d.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/3403-citrus-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/citrus-roasted-chicken-c9bc1ad59e36cd23aa74c07a22372ea3/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 chicken, about 3.5 to 4 pounds\", + \"1 lemon\", \"1 blood orange\", \"1 tangerine or clementine\", \"Kosher salt\", + \"1/2 cup chicken broth\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 chicken, about 3.5 to 4 pounds\",\n \"weight\" : 1700.9713875\n + \ }, {\n \"text\" : \"1 lemon\",\n \"weight\" : 58.0\n }, + {\n \"text\" : \"1 blood orange\",\n \"weight\" : 131.0\n }, + {\n \"text\" : \"1 tangerine or clementine\",\n \"weight\" : + 74.0\n }, {\n \"text\" : \"Kosher salt\",\n \"weight\" + : 12.503828324999999\n }, {\n \"text\" : \"1/2 cup chicken broth\",\n + \ \"weight\" : 120.0\n } ],\n \"calories\" : 2643.1901685250004,\n + \ \"totalWeight\" : 2093.938546284647,\n \"totalTime\" : 424.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2643.1901685250004,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 176.07527785109997,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 50.27953942484999,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.121960727195,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 72.91052791439999,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.70010555505,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 33.9289,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.026,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 22.3877,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 220.661261091,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 871.095407625,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4846.2337822035,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 222.90477789331527,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 261.37178028784643,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2761.015799917772,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.277436515489338,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 15.501120278634646,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1775.850998945,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 490.42082283499997,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 155.290568696,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.9368063261,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.5761926522,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 81.46334356343502,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 4.30201190225,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 138.83963261,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 138.83963261,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.58564768485,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.313321087,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.9767816305000006,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 17.589908152499998,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 132.15950842625003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 270.8850428478461,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 251.39769712424996,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 11.309633333333332,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 24.104,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 441.32252218200006,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 290.36513587499996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 201.92640759181248,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.290477789331526,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 65.34294507196161,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 78.88616571193634,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 62.65242508605187,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 103.3408018575643,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 253.69299984928568,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.49120253722222,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 258.81761449333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 62.45375507333333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 92.71721483529413,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 407.3167178171751,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 215.1005951125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 34.7099081525,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 59.7607947475,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.57833027175,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 19.883908152500005,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 21.987385190624998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 176.07527785109997,\n \"hasRDI\" : true,\n \"daily\" : 270.8850428478461,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.27953942484999,\n \"hasRDI\" : true,\n \"daily\" + : 251.39769712424996,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.121960727195,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 72.91052791439999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.70010555505,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 33.9289,\n \"hasRDI\" : true,\n \"daily\" : 11.309633333333332,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.9029,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 6.026,\n \"hasRDI\" : true,\n \"daily\" + : 24.104,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 22.3877,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 220.661261091,\n + \ \"hasRDI\" : true,\n \"daily\" : 441.32252218200006,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 871.095407625,\n \"hasRDI\" : true,\n \"daily\" : 290.36513587499996,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 4846.2337822035,\n \"hasRDI\" : true,\n \"daily\" : 201.92640759181248,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 222.90477789331527,\n \"hasRDI\" : true,\n \"daily\" : 22.290477789331526,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 261.37178028784643,\n \"hasRDI\" : true,\n \"daily\" : 65.34294507196161,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2761.015799917772,\n \"hasRDI\" : true,\n \"daily\" : 78.88616571193634,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.277436515489338,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.65242508605187,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.501120278634646,\n + \ \"hasRDI\" : true,\n \"daily\" : 103.3408018575643,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1775.850998945,\n + \ \"hasRDI\" : true,\n \"daily\" : 253.69299984928568,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.42082283499997,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.49120253722222,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 155.290568696,\n + \ \"hasRDI\" : true,\n \"daily\" : 258.81761449333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9368063261,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.45375507333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5761926522,\n + \ \"hasRDI\" : true,\n \"daily\" : 92.71721483529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 81.46334356343502,\n + \ \"hasRDI\" : true,\n \"daily\" : 407.3167178171751,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.30201190225,\n + \ \"hasRDI\" : true,\n \"daily\" : 215.1005951125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 138.83963261,\n \"hasRDI\" : true,\n \"daily\" : 34.7099081525,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 138.83963261,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.58564768485,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.7607947475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.313321087,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.57833027175,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9767816305000006,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.883908152500005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 17.589908152499998,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.987385190624998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_d4cb8f42578305b7d1aceaaf8291ec0d\",\n + \ \"label\" : \"Chicken Bouillabaisse\",\n \"image\" : \"https://www.edamam.com/web-img/a0d/a0d40664fee67f9359946ac86a93edcc.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipe/chicken-bouillabaisse\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-bouillabaisse-d4cb8f42578305b7d1aceaaf8291ec0d/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"6 chicken legs + (split into drumsticks and thighs), skinned\", \"3 tablespoons olive oil\", + \"1 onion, sliced\", \"1 teaspoon dried thyme\", \"1/4 teaspoon saffron threads\", + \"2 4-inch-long orange peel strips (orange part only)\", \"3/4 cup dry white + wine\", \"1 14 1/2-ounce can diced tomatoes in juice\", \"1 14-ounce can low-salt + chicken broth\" ],\n \"ingredients\" : [ {\n \"text\" : \"6 chicken + legs (split into drumsticks and thighs), skinned\",\n \"weight\" : + 2064.0\n }, {\n \"text\" : \"3 tablespoons olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"1 onion, sliced\",\n \"weight\" + : 125.0\n }, {\n \"text\" : \"1 teaspoon dried thyme\",\n \"weight\" + : 1.0\n }, {\n \"text\" : \"1/4 teaspoon saffron threads\",\n + \ \"weight\" : 0.175\n }, {\n \"text\" : \"2 4-inch-long + orange peel strips (orange part only)\",\n \"weight\" : 4.0\n }, + {\n \"text\" : \"3/4 cup dry white wine\",\n \"weight\" : 110.25\n + \ }, {\n \"text\" : \"1 14 1/2-ounce can diced tomatoes in juice\",\n + \ \"weight\" : 411.0680853125\n }, {\n \"text\" : \"1 14-ounce + can low-salt chicken broth\",\n \"weight\" : 396.89332375000004\n } + ],\n \"calories\" : 5051.84132545,\n \"totalWeight\" : 3152.8864090625,\n + \ \"totalTime\" : 114.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 5051.84132545,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 373.3345676557812,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 96.64021769851875,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.2384,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 167.44042069120005,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 74.40072660409062,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 38.83087994534376,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 10.7361186209375,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 17.373697496343752,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 350.68538184896875,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1919.52,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1906.1863056562497,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 401.89995110312503,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 464.30274176874997,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 5597.207801371875,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 19.492564066156252,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 31.649482526125006,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 3447.5355716281256,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 671.1422287687501,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 71.253978749375,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 3.943505240546875,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.313740194046875,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 106.40538830279998,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 7.278927407071875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 144.400696825,\n \"unit\" : + \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 144.400696825,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 11.95529332375,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.064,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 12.887651703343751,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 101.8599744740625,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 252.5920662725,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 574.3608733165864,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 483.2010884925938,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 12.94362664844792,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 42.94447448375,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 701.3707636979375,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 639.84,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 79.42442940234373,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 40.18999511031251,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 116.07568544218749,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 159.92022289633928,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 108.29202258975695,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 210.9965501741667,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 492.50508166116083,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 74.57135875208334,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 118.75663124895831,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 262.9003493697916,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 194.92589376746324,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 532.0269415139999,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 363.94637035359375,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 36.10017420625,\n \"unit\" : + \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 199.25488872916665,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.516,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 64.43825851671876,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 127.32496809257812,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 373.3345676557812,\n \"hasRDI\" + : true,\n \"daily\" : 574.3608733165864,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 96.64021769851875,\n \"hasRDI\" : true,\n \"daily\" : + 483.2010884925938,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.2384,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 167.44042069120005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.40072660409062,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 38.83087994534376,\n \"hasRDI\" : true,\n \"daily\" : 12.94362664844792,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.09476132440626,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 10.7361186209375,\n \"hasRDI\" + : true,\n \"daily\" : 42.94447448375,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.373697496343752,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 350.68538184896875,\n \"hasRDI\" : true,\n \"daily\" : 701.3707636979375,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1919.52,\n \"hasRDI\" : true,\n \"daily\" + : 639.84,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 1906.1863056562497,\n \"hasRDI\" : true,\n \"daily\" + : 79.42442940234373,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 401.89995110312503,\n \"hasRDI\" : true,\n \"daily\" + : 40.18999511031251,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 464.30274176874997,\n \"hasRDI\" : true,\n \"daily\" + : 116.07568544218749,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5597.207801371875,\n \"hasRDI\" : true,\n \"daily\" + : 159.92022289633928,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.492564066156252,\n \"hasRDI\" : true,\n \"daily\" + : 108.29202258975695,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 31.649482526125006,\n \"hasRDI\" : true,\n \"daily\" + : 210.9965501741667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3447.5355716281256,\n \"hasRDI\" : true,\n \"daily\" + : 492.50508166116083,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 671.1422287687501,\n \"hasRDI\" : true,\n + \ \"daily\" : 74.57135875208334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 71.253978749375,\n \"hasRDI\" : true,\n + \ \"daily\" : 118.75663124895831,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.943505240546875,\n \"hasRDI\" : true,\n + \ \"daily\" : 262.9003493697916,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.313740194046875,\n + \ \"hasRDI\" : true,\n \"daily\" : 194.92589376746324,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 106.40538830279998,\n + \ \"hasRDI\" : true,\n \"daily\" : 532.0269415139999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.278927407071875,\n + \ \"hasRDI\" : true,\n \"daily\" : 363.94637035359375,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 144.400696825,\n \"hasRDI\" : true,\n \"daily\" : 36.10017420625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 144.400696825,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.95529332375,\n + \ \"hasRDI\" : true,\n \"daily\" : 199.25488872916665,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.064,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.516,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" : + \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.887651703343751,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.43825851671876,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 101.8599744740625,\n + \ \"hasRDI\" : true,\n \"daily\" : 127.32496809257812,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b49f63fabba19628c48b8cac87354655\",\n + \ \"label\" : \"CHICKEN IN A POT\",\n \"image\" : \"https://www.edamam.com/web-img/f22/f22f3143cd165035af81747d566b3494.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/7653-chicken-in-a-pot\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-in-a-pot-b49f63fabba19628c48b8cac87354655/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 clay pot, + seasoned and large enough to hold a whole chicken, preferably a locally grown, + uncaged chicken\", \"1 lemon, sliced thin\", \"1 medium onion, sliced thin\", + \"4 sprigs of fresh rosemary\", \"Olive oil\", \"Salt and pepper\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 clay pot, seasoned and large enough to hold + a whole chicken, preferably a locally grown, uncaged chicken\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 lemon, sliced thin\",\n \"weight\" + : 29.0\n }, {\n \"text\" : \"1 medium onion, sliced thin\",\n + \ \"weight\" : 55.0\n }, {\n \"text\" : \"4 sprigs of fresh + rosemary\",\n \"weight\" : 20.0\n }, {\n \"text\" : \"Olive + oil\",\n \"weight\" : 13.9264\n }, {\n \"text\" : \"Salt + and pepper\",\n \"weight\" : 6.144\n }, {\n \"text\" : + \"Salt and pepper\",\n \"weight\" : 3.072\n } ],\n \"calories\" + : 2165.430096,\n \"totalWeight\" : 1045.559904802188,\n \"totalTime\" + : 85.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2165.4300960000005,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 153.89254720000002,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 42.219729552000004,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.8924000000000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 67.83388278400001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 31.427493632000004,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 13.944344000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 5.344216,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.0766608000000004,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 173.02518080000002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 2420.820959232,\n \"unit\" : \"mg\"\n },\n + \ \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 199.63298515252512,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 215.3187350480219,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2034.051064384175,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 10.290832005847221,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.39001830480219,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1391.0437600000002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 407.51944000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 38.52,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.59941776,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : + {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 1.1605796000000002,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 62.879512960000014,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.3853395200000005,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 91.16224,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 91.16224,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.8520000000000003,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.8448872000000005,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 27.4325568,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 108.27150480000003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 236.75776492307696,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 211.09864776000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.648114666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.376864,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 346.05036160000003,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 100.86753996799999,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.96329851525251,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 53.82968376200547,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 58.11574469669072,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 57.17128892137345,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 82.6001220320146,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 198.72053714285718,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 45.27993777777778,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 64.2,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 39.961184,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 68.26938823529413,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 314.39756480000005,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 169.26697600000003,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.79056,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 47.53333333333334,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4600000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 24.224436000000004,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.290696000000004,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 153.89254720000002,\n \"hasRDI\" : true,\n \"daily\" + : 236.75776492307696,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 42.219729552000004,\n \"hasRDI\" + : true,\n \"daily\" : 211.09864776000003,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.8924000000000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 67.83388278400001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.427493632000004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.944344000000001,\n \"hasRDI\" : true,\n \"daily\" : 4.648114666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.600128000000002,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.344216,\n \"hasRDI\" + : true,\n \"daily\" : 21.376864,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.0766608000000004,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 173.02518080000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 346.05036160000003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 690.0000000000001,\n \"hasRDI\" : true,\n \"daily\" : 230.00000000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 2420.820959232,\n \"hasRDI\" : true,\n \"daily\" : 100.86753996799999,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 199.63298515252512,\n \"hasRDI\" : true,\n \"daily\" : 19.96329851525251,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 215.3187350480219,\n \"hasRDI\" : true,\n \"daily\" : 53.82968376200547,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2034.051064384175,\n \"hasRDI\" : true,\n \"daily\" : 58.11574469669072,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.290832005847221,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.17128892137345,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.39001830480219,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.6001220320146,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1391.0437600000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.72053714285718,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 407.51944000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.27993777777778,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 38.52,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.2,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.59941776,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.961184,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1605796000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.26938823529413,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 62.879512960000014,\n + \ \"hasRDI\" : true,\n \"daily\" : 314.39756480000005,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.3853395200000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 169.26697600000003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 91.16224,\n \"hasRDI\" : true,\n \"daily\" : 22.79056,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 91.16224,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8520000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.53333333333334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.8448872000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.224436000000004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.4325568,\n \"hasRDI\" : true,\n \"daily\" + : 34.290696000000004,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_3565107f0288e835899e54fc19296f8a\",\n + \ \"label\" : \"Chicken \\\"Stoup\\\"\",\n \"image\" : \"https://www.edamam.com/web-img/fe0/fe02761576e994437a6fb81719093f09.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"http://www.food52.com/recipes/7634_chicken_stoup\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-stoup-3565107f0288e835899e54fc19296f8a/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"High-Protein\", \"Low-Carb\" + ],\n \"healthLabels\" : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"2 lbs. chicken + pieces, on the bone (dark meat is best, but you can use a mix if you'd like)\", + \"3 medium carrots, peeled\", \"3 stalks celery\", \"1 large sweet onion, + peeled\", \"2 cups homemade or good quality chicken stock\", \"Salt\", \"2 + tablespoons chopped fresh dill\", \"1 lemon\", \"Freshly ground black pepper\", + \"Crusty bread for serving\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 lbs. chicken pieces, on the bone (dark meat is best, but you can use + a mix if you'd like)\",\n \"weight\" : 907.18474\n }, {\n \"text\" + : \"3 medium carrots, peeled\",\n \"weight\" : 183.0\n }, {\n + \ \"text\" : \"3 stalks celery\",\n \"weight\" : 120.0\n }, + {\n \"text\" : \"1 large sweet onion, peeled\",\n \"weight\" + : 413.75\n }, {\n \"text\" : \"2 cups homemade or good quality + chicken stock\",\n \"weight\" : 480.0\n }, {\n \"text\" + : \"Salt\",\n \"weight\" : 13.00760844\n }, {\n \"text\" + : \"2 tablespoons chopped fresh dill\",\n \"weight\" : 6.0\n }, + {\n \"text\" : \"1 lemon\",\n \"weight\" : 58.0\n }, {\n + \ \"text\" : \"Freshly ground black pepper\",\n \"weight\" : + 6.50380422\n } ],\n \"calories\" : 1614.4947105922001,\n \"totalWeight\" + : 2183.1904061333307,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1614.4947105922001,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 50.823010011572,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 19.8104955859424,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.2679618500000003,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 25.730520087185802,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 4.2658106601156005,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 80.35212948669,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.16321246766,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 40.128074347008,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 215.77202299445804,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 585.9263862,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5056.613345812725,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 381.9463157537994,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 301.25531923533333,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 5489.217287236867,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.23671160007599,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 51.05931656613133,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2326.2693964676005,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 1602.8897219394,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 71.17699999999999,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2430694005576,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.2485709055960004,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 54.897034226034606,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.4012503934802,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 145.67118891739997,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 240.8336889174,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 20.593093598000003,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.9071847400000002,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 3.5461220958880006,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 85.77174860813999,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 80.72473552961002,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 78.18924617164924,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 99.05247792971201,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 26.78404316223,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 56.65284987063999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 431.54404598891614,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 195.3087954,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 210.6922227421969,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 38.194631575379944,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 75.31382980883333,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 156.8347796353391,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 129.09284222264438,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 340.39544377420884,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 332.3241994953715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 178.09885799326665,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 118.62833333333332,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 82.87129337050666,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 132.26887679976474,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 274.485171130173,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 320.06251967401,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 36.41779722934999,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 343.2182266333334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.22679618500000004,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 17.730610479440003,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 107.21468576017499,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 50.823010011572,\n \"hasRDI\" : true,\n \"daily\" : 78.18924617164924,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 19.8104955859424,\n \"hasRDI\" : true,\n \"daily\" + : 99.05247792971201,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.2679618500000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 25.730520087185802,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.2658106601156005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 80.35212948669,\n \"hasRDI\" : true,\n \"daily\" : 26.78404316223,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 66.18891701903,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 14.16321246766,\n \"hasRDI\" + : true,\n \"daily\" : 56.65284987063999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 40.128074347008,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 215.77202299445804,\n \"hasRDI\" : true,\n \"daily\" : 431.54404598891614,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 585.9263862,\n \"hasRDI\" : true,\n \"daily\" + : 195.3087954,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5056.613345812725,\n \"hasRDI\" : true,\n \"daily\" + : 210.6922227421969,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 381.9463157537994,\n \"hasRDI\" : true,\n \"daily\" + : 38.194631575379944,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 301.25531923533333,\n \"hasRDI\" : true,\n \"daily\" + : 75.31382980883333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5489.217287236867,\n \"hasRDI\" : true,\n \"daily\" + : 156.8347796353391,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.23671160007599,\n \"hasRDI\" : true,\n \"daily\" + : 129.09284222264438,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 51.05931656613133,\n \"hasRDI\" : true,\n \"daily\" + : 340.39544377420884,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2326.2693964676005,\n \"hasRDI\" : true,\n \"daily\" + : 332.3241994953715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1602.8897219394,\n \"hasRDI\" : true,\n + \ \"daily\" : 178.09885799326665,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 71.17699999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 118.62833333333332,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2430694005576,\n \"hasRDI\" : true,\n + \ \"daily\" : 82.87129337050666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.2485709055960004,\n + \ \"hasRDI\" : true,\n \"daily\" : 132.26887679976474,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 54.897034226034606,\n + \ \"hasRDI\" : true,\n \"daily\" : 274.485171130173,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.4012503934802,\n + \ \"hasRDI\" : true,\n \"daily\" : 320.06251967401,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 145.67118891739997,\n \"hasRDI\" : true,\n \"daily\" : 36.41779722934999,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 240.8336889174,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.593093598000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 343.2182266333334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9071847400000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.22679618500000004,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.5461220958880006,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.730610479440003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 85.77174860813999,\n + \ \"hasRDI\" : true,\n \"daily\" : 107.21468576017499,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_82a6d20e66e01a69a3d484833bfcd7ca\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/4de/4de0bd5b79b1d8f701bbf02d2afd0b80.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/classic-chicken-marsala-recipe\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-82a6d20e66e01a69a3d484833bfcd7ca/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1¼ lb. chicken cutlets, pounded until + ¼\\\" thick (about 8)\", \"Kosher salt and freshly ground black pepper, to + taste\", \"⅓ cup flour\", \"5 tbsp. olive oil\", \"5 tbsp. unsalted butter\", + \"8 oz. white button mushrooms\", \"2 tbsp. minced shallots\", \"1 clove garlic, + minced\", \"⅓ cup dry marsala wine\", \"⅓ cup chicken stock\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1¼ lb. chicken cutlets, pounded until ¼\\\" thick + (about 8)\",\n \"weight\" : 566.9904625\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 6.933719885\n }, {\n \"text\" : \"Kosher salt and freshly ground + black pepper, to taste\",\n \"weight\" : 3.4668599425\n }, {\n + \ \"text\" : \"⅓ cup flour\",\n \"weight\" : 41.666666666666664\n + \ }, {\n \"text\" : \"5 tbsp. olive oil\",\n \"weight\" + : 67.5\n }, {\n \"text\" : \"5 tbsp. unsalted butter\",\n \"weight\" + : 71.0\n }, {\n \"text\" : \"8 oz. white button mushrooms\",\n + \ \"weight\" : 226.796185\n }, {\n \"text\" : \"2 tbsp. + minced shallots\",\n \"weight\" : 20.0\n }, {\n \"text\" + : \"1 clove garlic, minced\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"⅓ cup dry marsala wine\",\n \"weight\" : 78.66666666666666\n }, + {\n \"text\" : \"⅓ cup chicken stock\",\n \"weight\" : 80.0\n + \ } ],\n \"calories\" : 2404.220574655675,\n \"totalWeight\" + : 1164.7500830153897,\n \"totalTime\" : 121.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2404.220574655675,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 179.82217777770884,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.362736418732936,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.9227199856249997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 86.36322076247507,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 21.131794556559488,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 50.76457923089541,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.9730774154525,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 8.157319033298666,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 133.25525362910906,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 517.923896,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2695.433266487385,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 131.37853744110183,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 195.5342351990705,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2318.126847148323,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 7.314797813973954,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.446816070888641,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1303.0490958924831,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 623.453763184475,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.458719885000001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6481364432962334,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.5341029047215005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 66.4070196265928,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.4687993794160086,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 86.464336140225,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 86.464336140225,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.1391860465,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.78655422,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 12.982459210651998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 51.776249725872496,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.21102873278376,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 276.64950427339824,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 306.8136820936647,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.92152641029847,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.89230966181,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 266.5105072582181,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 172.64129866666667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 112.30971943697439,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 13.137853744110183,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 48.88355879976763,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 66.23219563280924,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 40.63776563318863,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 42.97877380592427,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 186.1498708417833,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 69.27264035383055,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 12.431199808333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 43.20909621974889,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 90.24134733655886,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 332.035098132964,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 173.43996897080044,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.61608403505625,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 35.653100775,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.9466385550000002,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 64.91229605326,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 64.72031215734062,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 179.82217777770884,\n \"hasRDI\" : true,\n \"daily\" : 276.64950427339824,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 61.362736418732936,\n \"hasRDI\" : true,\n + \ \"daily\" : 306.8136820936647,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.9227199856249997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 86.36322076247507,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.131794556559488,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 50.76457923089541,\n \"hasRDI\" : true,\n \"daily\" : 16.92152641029847,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.791501815442906,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 4.9730774154525,\n \"hasRDI\" + : true,\n \"daily\" : 19.89230966181,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 8.157319033298666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 133.25525362910906,\n \"hasRDI\" : true,\n \"daily\" : 266.5105072582181,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 517.923896,\n \"hasRDI\" : true,\n \"daily\" + : 172.64129866666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2695.433266487385,\n \"hasRDI\" : true,\n \"daily\" + : 112.30971943697439,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 131.37853744110183,\n \"hasRDI\" : true,\n \"daily\" + : 13.137853744110183,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 195.5342351990705,\n \"hasRDI\" : true,\n \"daily\" + : 48.88355879976763,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2318.126847148323,\n \"hasRDI\" : true,\n \"daily\" + : 66.23219563280924,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.314797813973954,\n \"hasRDI\" : true,\n \"daily\" + : 40.63776563318863,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.446816070888641,\n \"hasRDI\" : true,\n \"daily\" + : 42.97877380592427,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1303.0490958924831,\n \"hasRDI\" : true,\n \"daily\" + : 186.1498708417833,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 623.453763184475,\n \"hasRDI\" : true,\n + \ \"daily\" : 69.27264035383055,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.458719885000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.431199808333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6481364432962334,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.20909621974889,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.5341029047215005,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.24134733655886,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.4070196265928,\n + \ \"hasRDI\" : true,\n \"daily\" : 332.035098132964,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4687993794160086,\n + \ \"hasRDI\" : true,\n \"daily\" : 173.43996897080044,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.464336140225,\n \"hasRDI\" : true,\n \"daily\" : 21.61608403505625,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 86.464336140225,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1391860465,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.653100775,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.78655422,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.9466385550000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.982459210651998,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.91229605326,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 51.776249725872496,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.72031215734062,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_690c3797b4f56fc1e119c14096d651c5\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/25f/25feccd2eed4722604be4a9ffa1ac768.jpg\",\n + \ \"source\" : \"San Francisco Gate\",\n \"url\" : \"http://www.sfgate.com/food/recipes/detail.html?rid=18229&sorig=qs\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-690c3797b4f56fc1e119c14096d651c5/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + about 3-4 pounds\", \"-- Salt and fresh-ground pepper, to taste\", \"3 to + 4 sprigs thyme, or other herbs\", \"-- Olive oil, to taste\", \"-- Chicken + stock (optional)\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + whole chicken, about 3-4 pounds\",\n \"weight\" : 1587.5732950000001\n + \ }, {\n \"text\" : \"-- Salt and fresh-ground pepper, to taste\",\n + \ \"weight\" : 9.676639770000001\n }, {\n \"text\" : \"3 + to 4 sprigs thyme, or other herbs\",\n \"weight\" : 25.2\n }, + {\n \"text\" : \"-- Olive oil, to taste\",\n \"weight\" : 21.933716812\n + \ } ],\n \"calories\" : 2584.4782139080803,\n \"totalWeight\" + : 1642.5286096732736,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2584.4782139080803,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 186.38628280636,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 50.24516574726095,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.047163345382,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 83.48540917664334,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 37.47742487150676,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 16.11288,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 9.324,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 0.43091999999999997,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 203.0919903516,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3801.4784618285703,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 597.1270031208256,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 271.42818409861275,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2246.3222637310223,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 41.0117886524894,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 15.707284509721273,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1637.590265682,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 490.495434646,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 29.8727974496,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7770059043599999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.39600780872,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 74.665064659206,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.9170244421,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 133.820990436,\n + \ \"unit\" : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" + : \"Folate (food)\",\n \"quantity\" : 133.820990436,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.271097884322,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 461.45134512982406,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 129.22391069540402,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 286.7481273944,\n \"unit\" : + \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 251.22582873630472,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 5.37096,\n \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 37.296,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 406.1839807032,\n \"unit\" : \"%\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 269.88746015000004,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 158.39493590952378,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 59.71270031208256,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 67.85704602465319,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 64.18063610660063,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 227.8432702916078,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 104.7152300648085,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 233.941466526,\n \"unit\" : \"%\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 54.499492738444445,\n \"unit\" : \"%\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 49.78799574933334,\n + \ \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 51.800393624,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 82.11810639529412,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 373.32532329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.85122210499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 33.455247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 41.355489421609995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 576.81418141228,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 186.38628280636,\n \"hasRDI\" : true,\n \"daily\" : 286.7481273944,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.24516574726095,\n \"hasRDI\" : true,\n \"daily\" + : 251.22582873630472,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.48540917664334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.47742487150676,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.11288,\n \"hasRDI\" : true,\n \"daily\" : 5.37096,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.788880000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.324,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.296,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.43091999999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 203.0919903516,\n + \ \"hasRDI\" : true,\n \"daily\" : 406.1839807032,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3801.4784618285703,\n \"hasRDI\" : true,\n \"daily\" : 158.39493590952378,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 597.1270031208256,\n \"hasRDI\" : true,\n \"daily\" : 59.71270031208256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 271.42818409861275,\n \"hasRDI\" : true,\n \"daily\" : 67.85704602465319,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2246.3222637310223,\n \"hasRDI\" : true,\n \"daily\" : 64.18063610660063,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0117886524894,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.8432702916078,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.707284509721273,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.7152300648085,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1637.590265682,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.941466526,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.495434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.499492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.8727974496,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.78799574933334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7770059043599999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.800393624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.39600780872,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.11810639529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.665064659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 373.32532329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9170244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.85122210499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : true,\n \"daily\" : 33.455247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.271097884322,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.355489421609995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 461.45134512982406,\n + \ \"hasRDI\" : true,\n \"daily\" : 576.81418141228,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_aa619d4daf4d644ae7439c71df03a414\",\n + \ \"label\" : \"Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/2b7/2b720ff1458b86ae5d2e7b836a62db5b.jpg\",\n + \ \"source\" : \"San Francisco Gate\",\n \"url\" : \"http://www.sfgate.com/food/recipes/detail/?rid=18229&sorig=qs\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-aa619d4daf4d644ae7439c71df03a414/chicken\",\n + \ \"yield\" : 10.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 whole chicken, + about 3-4 lbs\", \"-- salt and fresh-ground pepper, to taste\", \"3 to 4 sprigs + thyme, or other herbs\", \"-- olive oil, to taste\", \"-- chicken stock (optional)\" + ],\n \"ingredients\" : [ {\n \"text\" : \"1 whole chicken, about + 3-4 lbs\",\n \"weight\" : 1587.5732950000001\n }, {\n \"text\" + : \"-- salt and fresh-ground pepper, to taste\",\n \"weight\" : 9.676639770000001\n + \ }, {\n \"text\" : \"3 to 4 sprigs thyme, or other herbs\",\n + \ \"weight\" : 25.2\n }, {\n \"text\" : \"-- olive oil, + to taste\",\n \"weight\" : 21.933716812\n } ],\n \"calories\" + : 2584.4782139080803,\n \"totalWeight\" : 1642.5286096732736,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2584.4782139080803,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 186.38628280636,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 50.24516574726095,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.047163345382,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 83.48540917664334,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 37.47742487150676,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 16.11288,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 9.324,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.43091999999999997,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 203.0919903516,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3801.4784618285703,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 597.1270031208256,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 271.42818409861275,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2246.3222637310223,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 41.0117886524894,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.707284509721273,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1637.590265682,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 490.495434646,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 29.8727974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.7770059043599999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.39600780872,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 74.665064659206,\n \"unit\" : \"mg\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 3.9170244421,\n \"unit\" : \"mg\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 133.820990436,\n \"unit\" : \"µg\"\n },\n \"FOLFD\" + : {\n \"label\" : \"Folate (food)\",\n \"quantity\" : 133.820990436,\n + \ \"unit\" : \"µg\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" + : \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.1590996812000003,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.271097884322,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 461.45134512982406,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 129.22391069540402,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 286.7481273944,\n \"unit\" : \"%\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 251.22582873630472,\n \"unit\" : \"%\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 5.37096,\n + \ \"unit\" : \"%\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 37.296,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 406.1839807032,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 269.88746015000004,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 158.39493590952378,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 59.71270031208256,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 67.85704602465319,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 64.18063610660063,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 227.8432702916078,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 104.7152300648085,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 233.941466526,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 54.499492738444445,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 49.78799574933334,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 51.800393624,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 82.11810639529412,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 373.32532329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.85122210499998,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 33.455247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 41.355489421609995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 576.81418141228,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 186.38628280636,\n \"hasRDI\" : true,\n \"daily\" : 286.7481273944,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 50.24516574726095,\n \"hasRDI\" : true,\n \"daily\" + : 251.22582873630472,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.48540917664334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.47742487150676,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 16.11288,\n \"hasRDI\" : true,\n \"daily\" : 5.37096,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.788880000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 9.324,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.296,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.43091999999999997,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 203.0919903516,\n + \ \"hasRDI\" : true,\n \"daily\" : 406.1839807032,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3801.4784618285703,\n \"hasRDI\" : true,\n \"daily\" : 158.39493590952378,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 597.1270031208256,\n \"hasRDI\" : true,\n \"daily\" : 59.71270031208256,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 271.42818409861275,\n \"hasRDI\" : true,\n \"daily\" : 67.85704602465319,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2246.3222637310223,\n \"hasRDI\" : true,\n \"daily\" : 64.18063610660063,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.0117886524894,\n + \ \"hasRDI\" : true,\n \"daily\" : 227.8432702916078,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 15.707284509721273,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.7152300648085,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1637.590265682,\n + \ \"hasRDI\" : true,\n \"daily\" : 233.941466526,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 490.495434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.499492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.8727974496,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.78799574933334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7770059043599999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.800393624,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.39600780872,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.11810639529412,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.665064659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 373.32532329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9170244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.85122210499998,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : true,\n \"daily\" : 33.455247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.820990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.271097884322,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.355489421609995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 461.45134512982406,\n + \ \"hasRDI\" : true,\n \"daily\" : 576.81418141228,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_f944ef2d91414c98d218a1625af0215b\",\n + \ \"label\" : \"Classic Roast Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/eec/eecd8dcc1c4a68f5e38f654942e72019.jpg\",\n + \ \"source\" : \"Leite's Culinaria\",\n \"url\" : \"http://leitesculinaria.com/78228/recipes-classic-roast-chicken.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/classic-roast-chicken-f944ef2d91414c98d218a1625af0215b/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"One 4 1/2- + to 5-pound chicken\", \"Extra-virgin olive oil\", \"Kosher salt and freshly + ground pepper\", \"1/2 small yellow onion, cut into chunks (optional)\", \"4 + or 5 fresh flat-leaf (Italian) parsley sprigs (optional)\", \"4 large fresh + thyme sprigs (optional)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"One 4 1/2- to 5-pound chicken\",\n \"weight\" : 2154.5637575\n + \ }, {\n \"text\" : \"Extra-virgin olive oil\",\n \"weight\" + : 29.302067102\n }, {\n \"text\" : \"Kosher salt and freshly ground + pepper\",\n \"weight\" : 12.927382545\n }, {\n \"text\" + : \"Kosher salt and freshly ground pepper\",\n \"weight\" : 6.4636912725\n + \ } ],\n \"calories\" : 3425.2263517406545,\n \"totalWeight\" + : 2200.8205534781155,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3425.2263517406545,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 250.15734871554346,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 67.28195861276734,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.4211502544469998,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 112.84929721503399,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 50.470802529773,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.133530568763751,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.6353138919425003,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.041367624144000005,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 273.18080157181276,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1098.8275163249998,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5093.567482575832,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 192.6063910940627,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 304.17849347201116,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2856.0801018298334,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.01226661832288,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.280262915556364,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2163.9145642075496,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 602.4375722345749,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 23.4416536816,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.8860427996342999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.7697586704104997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 99.71555917159567,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.146671084452974,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.00502882232499,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 89.00502882232499,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.541820400809999,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.9302067102,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 8.667379083671001,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 50.1974573349865,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 171.26131758703275,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 384.8574595623745,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 336.4097930638367,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 1.3778435229212502,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.541255567770001,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 546.3616031436255,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 366.2758387749999,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 212.23197844065967,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 19.26063910940627,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 76.04462336800279,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 81.60228862370953,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 77.84592565734933,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 128.5350861037091,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 309.1306520296499,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 66.93750802606388,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 39.06942280266666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 59.06951997561999,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 104.10345120061764,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 498.57779585797834,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 257.3335542226487,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 22.251257205581247,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 75.69700668016665,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7325516775499998,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 43.336895418355006,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 62.746821668733126,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 250.15734871554346,\n \"hasRDI\" : true,\n \"daily\" : 384.8574595623745,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 67.28195861276734,\n \"hasRDI\" : true,\n \"daily\" + : 336.4097930638367,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.4211502544469998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 112.84929721503399,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.470802529773,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 4.133530568763751,\n \"hasRDI\" : true,\n \"daily\" : 1.3778435229212502,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.498216676821251,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 1.6353138919425003,\n \"hasRDI\" + : true,\n \"daily\" : 6.541255567770001,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.041367624144000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 273.18080157181276,\n \"hasRDI\" : true,\n \"daily\" : 546.3616031436255,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1098.8275163249998,\n \"hasRDI\" : true,\n \"daily\" + : 366.2758387749999,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5093.567482575832,\n \"hasRDI\" : true,\n \"daily\" + : 212.23197844065967,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 192.6063910940627,\n \"hasRDI\" : true,\n \"daily\" + : 19.26063910940627,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 304.17849347201116,\n \"hasRDI\" : true,\n \"daily\" + : 76.04462336800279,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2856.0801018298334,\n \"hasRDI\" : true,\n \"daily\" + : 81.60228862370953,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.01226661832288,\n \"hasRDI\" : true,\n \"daily\" + : 77.84592565734933,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.280262915556364,\n \"hasRDI\" : true,\n \"daily\" + : 128.5350861037091,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2163.9145642075496,\n \"hasRDI\" : true,\n \"daily\" + : 309.1306520296499,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 602.4375722345749,\n \"hasRDI\" : true,\n + \ \"daily\" : 66.93750802606388,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 23.4416536816,\n \"hasRDI\" : true,\n + \ \"daily\" : 39.06942280266666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8860427996342999,\n \"hasRDI\" : true,\n + \ \"daily\" : 59.06951997561999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.7697586704104997,\n + \ \"hasRDI\" : true,\n \"daily\" : 104.10345120061764,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 99.71555917159567,\n + \ \"hasRDI\" : true,\n \"daily\" : 498.57779585797834,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.146671084452974,\n + \ \"hasRDI\" : true,\n \"daily\" : 257.3335542226487,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.00502882232499,\n \"hasRDI\" : true,\n \"daily\" : 22.251257205581247,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.00502882232499,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.541820400809999,\n + \ \"hasRDI\" : true,\n \"daily\" : 75.69700668016665,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9302067102,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7325516775499998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.667379083671001,\n + \ \"hasRDI\" : true,\n \"daily\" : 43.336895418355006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.1974573349865,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.746821668733126,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_ad598848e6d3ef58cbb564a883dcc204\",\n + \ \"label\" : \"Cook the Book: Lemon Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/291/2915c7b77ceb75f10790244b957f09d5.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2010/01/make-it-fast-cook-it-slow-lemon-chicken-slow-cooker-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cook-the-book-lemon-chicken-ad598848e6d3ef58cbb564a883dcc204/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 1/2 pounds boneless chicken, cut + in 2-inch chunks\", \"Olive oil for browning the chicken (optional)\", \"1 + tablespoon kosher salt\", \"6 ounces (1/2 can) frozen lemonade concentrate, + thawed\", \"3 tablespoons brown sugar\", \"1 teaspoon balsamic vinegar\", + \"3 tablespoons ketchup\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 1/2 pounds boneless chicken, cut in 2-inch chunks\",\n \"weight\" + : 680.388555\n }, {\n \"text\" : \"1 tablespoon kosher salt\",\n + \ \"weight\" : 14.5625\n }, {\n \"text\" : \"6 ounces (1/2 + can) frozen lemonade concentrate, thawed\",\n \"weight\" : 170.09713875\n + \ }, {\n \"text\" : \"3 tablespoons brown sugar\",\n \"weight\" + : 27.187500000000007\n }, {\n \"text\" : \"1 teaspoon balsamic + vinegar\",\n \"weight\" : 5.3\n }, {\n \"text\" : \"3 tablespoons + ketchup\",\n \"weight\" : 51.0\n } ],\n \"calories\" : 1646.135492675,\n + \ \"totalWeight\" : 937.1055965204648,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1646.135492675,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 102.58555523850002,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 29.3318867205,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 0.6599768983500001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 42.463895832,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 21.9974603265,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 47.651296031125014,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.153,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 43.970762356250006,\n \"unit\" : \"g\"\n },\n \"SUGAR.added\" + : {\n \"label\" : \"Sugars, added\",\n \"quantity\" : 26.37731250000001,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 127.14126623000001,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 510.29141625000005,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2171.9359826017508,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 114.04502826491158,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 162.83162390270468,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1481.7961644966372,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.560534888017535,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 9.032328437145466,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1015.52567585,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 292.21930755,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 15.52867396125,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.41554410438750006,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.901126266,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 47.04297673248751,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.4747877888875,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 45.68518830000001,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 45.68518830000001,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.1092045205,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3607771100000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.802775378875,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 11.735828325,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 82.30677463375,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 157.82393113615387,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 146.65943360249997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 15.883765343708337,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.612,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 254.28253246000003,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 170.09713875,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 90.49733260840628,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 11.404502826491157,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 40.70790597567617,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 42.33703327133249,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 36.44741604454186,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 60.2155229143031,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 145.07509654999998,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 32.46881195,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 25.88112326875,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 27.702940292500003,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 53.00742741176471,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 235.21488366243756,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 123.73938944437499,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 11.421297075000002,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 35.153408675,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34019427750000003,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 14.013876894374999,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 14.66978540625,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 102.58555523850002,\n \"hasRDI\" : true,\n \"daily\" + : 157.82393113615387,\n \"unit\" : \"g\",\n \"sub\" : [ {\n + \ \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 29.3318867205,\n \"hasRDI\" + : true,\n \"daily\" : 146.65943360249997,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6599768983500001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.463895832,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 21.9974603265,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 47.651296031125014,\n \"hasRDI\" : true,\n \"daily\" : 15.883765343708337,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 47.498296031125015,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.153,\n \"hasRDI\" : + true,\n \"daily\" : 0.612,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 43.970762356250006,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 26.37731250000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 127.14126623000001,\n \"hasRDI\" : true,\n \"daily\" : 254.28253246000003,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 510.29141625000005,\n \"hasRDI\" : true,\n \"daily\" + : 170.09713875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2171.9359826017508,\n \"hasRDI\" : true,\n \"daily\" + : 90.49733260840628,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 114.04502826491158,\n \"hasRDI\" : true,\n \"daily\" + : 11.404502826491157,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 162.83162390270468,\n \"hasRDI\" : true,\n \"daily\" + : 40.70790597567617,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1481.7961644966372,\n \"hasRDI\" : true,\n \"daily\" + : 42.33703327133249,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.560534888017535,\n \"hasRDI\" : true,\n \"daily\" + : 36.44741604454186,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.032328437145466,\n \"hasRDI\" : true,\n \"daily\" + : 60.2155229143031,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1015.52567585,\n \"hasRDI\" : true,\n \"daily\" + : 145.07509654999998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 292.21930755,\n \"hasRDI\" : true,\n \"daily\" + : 32.46881195,\n \"unit\" : \"µg\"\n }, {\n \"label\" : + \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.52867396125,\n \"hasRDI\" : true,\n \"daily\" + : 25.88112326875,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.41554410438750006,\n \"hasRDI\" : true,\n + \ \"daily\" : 27.702940292500003,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.901126266,\n \"hasRDI\" + : true,\n \"daily\" : 53.00742741176471,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 47.04297673248751,\n + \ \"hasRDI\" : true,\n \"daily\" : 235.21488366243756,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4747877888875,\n + \ \"hasRDI\" : true,\n \"daily\" : 123.73938944437499,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.68518830000001,\n \"hasRDI\" : true,\n \"daily\" : 11.421297075000002,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.68518830000001,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1092045205,\n + \ \"hasRDI\" : true,\n \"daily\" : 35.153408675,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3607771100000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34019427750000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.802775378875,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.013876894374999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.735828325,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.66978540625,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_57bc67d9983287cbef4c326249237c80\",\n + \ \"label\" : \"Brick Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f94/f94bcc3b8b7fe4641db4bdab0e3ece3c.jpg\",\n + \ \"source\" : \"Tasting Table\",\n \"url\" : \"https://www.tastingtable.com/entry_detail/chefs_recipes/4387/Perfect_chicken_no_oven_necessary.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/brick-chicken-57bc67d9983287cbef4c326249237c80/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"4 garlic cloves, + finely chopped\", \"2 tablespoons fresh rosemary leaves, finely chopped, plus + additional sprigs for garnish\", \"2 tablespoons fresh lemon juice (about + 1 medium lemon)\", \"¼ teaspoon red-pepper flakes\", \"Kosher salt\", \"3 + tablespoons olive oil\", \"One 4-pound whole grass-fed chicken, butterflied + (ask your butcher to do this for you)\" ],\n \"ingredients\" : [ {\n + \ \"text\" : \"4 garlic cloves, finely chopped\",\n \"weight\" + : 12.0\n }, {\n \"text\" : \"2 tablespoons fresh lemon juice (about + 1 medium lemon)\",\n \"weight\" : 48.0\n }, {\n \"text\" + : \"¼ teaspoon red-pepper flakes\",\n \"weight\" : 0.45\n }, {\n + \ \"text\" : \"Kosher salt\",\n \"weight\" : 11.491916880000002\n + \ }, {\n \"text\" : \"3 tablespoons olive oil\",\n \"weight\" + : 40.5\n }, {\n \"text\" : \"One 4-pound whole grass-fed chicken, + butterflied (ask your butcher to do this for you)\",\n \"weight\" : + 1814.36948\n } ],\n \"calories\" : 3040.49917976,\n \"totalWeight\" + : 1924.5741687658558,\n \"totalTime\" : 30.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 3040.49917976,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 226.55886470784,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 58.81233071983999,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.196758109008,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 106.55310577536,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 44.190251258720004,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 7.534034999999999,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.5184,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 1.37613,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 230.4666968304,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 925.3284348,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 4454.037144350402,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 163.60696240780538,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 253.41079616765853,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2439.596030797268,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 11.638781690527324,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 16.346018016605857,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1837.1622322079998,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 515.2107110239999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 42.4041399424,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.7772587478399999,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.5050609956799998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 84.07561696766399,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.4995043624,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 84.46327478399999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 84.46327478399999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.82469086384,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.4675424928,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 9.7288987392,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 43.452918696,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 152.024958988,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 348.55209955052305,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 294.0616535992,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 2.5113449999999995,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.0736,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 460.9333936608,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 308.44281159999997,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 185.5848810146001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 16.360696240780538,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 63.35269904191463,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 69.70274373706481,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 64.65989828070735,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 108.97345344403905,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 262.45174745828564,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 57.245634558222214,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 70.67356657066667,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 51.817249856,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 88.53299974588235,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 420.37808483832,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 224.97521812,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.115818695999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 63.74484773066666,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.6168856232,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 48.644493696,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 54.31614836999999,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 226.55886470784,\n \"hasRDI\" : true,\n \"daily\" : 348.55209955052305,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 58.81233071983999,\n \"hasRDI\" : true,\n \"daily\" + : 294.0616535992,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.196758109008,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 106.55310577536,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 44.190251258720004,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 7.534034999999999,\n \"hasRDI\" : true,\n \"daily\" : 2.5113449999999995,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.015635,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 0.5184,\n \"hasRDI\" : true,\n + \ \"daily\" : 2.0736,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.37613,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 230.4666968304,\n + \ \"hasRDI\" : true,\n \"daily\" : 460.9333936608,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 925.3284348,\n \"hasRDI\" : true,\n \"daily\" : 308.44281159999997,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 4454.037144350402,\n \"hasRDI\" : true,\n \"daily\" : 185.5848810146001,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 163.60696240780538,\n \"hasRDI\" : true,\n \"daily\" : 16.360696240780538,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 253.41079616765853,\n \"hasRDI\" : true,\n \"daily\" : 63.35269904191463,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2439.596030797268,\n \"hasRDI\" : true,\n \"daily\" : 69.70274373706481,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.638781690527324,\n + \ \"hasRDI\" : true,\n \"daily\" : 64.65989828070735,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.346018016605857,\n + \ \"hasRDI\" : true,\n \"daily\" : 108.97345344403905,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1837.1622322079998,\n + \ \"hasRDI\" : true,\n \"daily\" : 262.45174745828564,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 515.2107110239999,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.245634558222214,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 42.4041399424,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.67356657066667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.7772587478399999,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.817249856,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5050609956799998,\n + \ \"hasRDI\" : true,\n \"daily\" : 88.53299974588235,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 84.07561696766399,\n + \ \"hasRDI\" : true,\n \"daily\" : 420.37808483832,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.4995043624,\n + \ \"hasRDI\" : true,\n \"daily\" : 224.97521812,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 84.46327478399999,\n \"hasRDI\" : true,\n \"daily\" : 21.115818695999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 84.46327478399999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.82469086384,\n + \ \"hasRDI\" : true,\n \"daily\" : 63.74484773066666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4675424928,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6168856232,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.7288987392,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.644493696,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.452918696,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.31614836999999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_c992f22e86d0d0cf58d368163420f459\",\n + \ \"label\" : \"Inside-Out Chicken Kiev\",\n \"image\" : \"https://www.edamam.com/web-img/7c9/7c9060705513b832201fd7ba16e4f370.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/2214/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/inside-out-chicken-kiev-c992f22e86d0d0cf58d368163420f459/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"25.0g garlic + butter, softened\", \"25.0g crispy breadcrumbs\", \"4 skinless, boneless chicken + breasts\" ],\n \"ingredients\" : [ {\n \"text\" : \"25.0g garlic + butter, softened\",\n \"weight\" : 25.0\n }, {\n \"text\" + : \"25.0g crispy breadcrumbs\",\n \"weight\" : 25.0\n }, {\n \"text\" + : \"4 skinless, boneless chicken breasts\",\n \"weight\" : 696.0\n + \ } ],\n \"calories\" : 1475.12,\n \"totalWeight\" : 746.0,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1475.12,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 85.98249999999999,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 31.656350000000003,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.5503,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 32.0982,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 14.91735,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 18.01,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 1.125,\n \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n + \ \"label\" : \"Sugars\",\n \"quantity\" : 1.565,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 148.66600000000003,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 499.19,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 624.23,\n \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 128.31,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 185.25,\n \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1586.2,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 6.3629,\n \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 5.953,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1258.29,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 338.03999999999996,\n + \ \"unit\" : \"µg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 0.68148,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 0.70085,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 70.62867999999999,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.7198,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 69.59,\n \"unit\" : \"µg\"\n },\n + \ \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n \"quantity\" + : 34.84,\n \"unit\" : \"µg\"\n },\n \"FOLAC\" : {\n + \ \"label\" : \"Folic acid\",\n \"quantity\" : 20.5,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.4964,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.1590000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 2.4792,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 3.4,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 73.756,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 132.2807692307692,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 158.28175000000002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.003333333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.5,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 297.33200000000005,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 166.39666666666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 26.00958333333333,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.831,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 46.3125,\n \"unit\" : + \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 45.32,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 35.349444444444444,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 39.686666666666675,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 179.75571428571428,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 37.56,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 45.431999999999995,\n \"unit\" : \"%\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 41.226470588235294,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 353.14339999999993,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 185.99,\n \"unit\" : + \"%\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 17.3975,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 41.60666666666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.7897500000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.396,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 4.25,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 85.98249999999999,\n \"hasRDI\" + : true,\n \"daily\" : 132.2807692307692,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 31.656350000000003,\n \"hasRDI\" : true,\n \"daily\" : + 158.28175000000002,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.5503,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 32.0982,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.91735,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n + \ \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" : 18.01,\n + \ \"hasRDI\" : true,\n \"daily\" : 6.003333333333334,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.885,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.125,\n \"hasRDI\" : true,\n \"daily\" + : 4.5,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 1.565,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 148.66600000000003,\n \"hasRDI\" + : true,\n \"daily\" : 297.33200000000005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 499.19,\n + \ \"hasRDI\" : true,\n \"daily\" : 166.39666666666668,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 624.23,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.00958333333333,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 128.31,\n \"hasRDI\" + : true,\n \"daily\" : 12.831,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 185.25,\n \"hasRDI\" : true,\n \"daily\" + : 46.3125,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1586.2,\n \"hasRDI\" : true,\n \"daily\" : 45.32,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 6.3629,\n \"hasRDI\" + : true,\n \"daily\" : 35.349444444444444,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.953,\n \"hasRDI\" : true,\n \"daily\" + : 39.686666666666675,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1258.29,\n \"hasRDI\" : true,\n \"daily\" + : 179.75571428571428,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 338.03999999999996,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.56,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.68148,\n \"hasRDI\" : true,\n \"daily\" : 45.431999999999995,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.70085,\n \"hasRDI\" : true,\n \"daily\" : 41.226470588235294,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 70.62867999999999,\n \"hasRDI\" : true,\n \"daily\" : 353.14339999999993,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.7198,\n \"hasRDI\" : true,\n \"daily\" : 185.99,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 69.59,\n \"hasRDI\" : true,\n \"daily\" : 17.3975,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.84,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 20.5,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4964,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.60666666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.1590000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7897500000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4792,\n + \ \"hasRDI\" : true,\n \"daily\" : 12.396,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.25,\n \"unit\" : + \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n + \ }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_1e3cb29a2a22293d3b40e53acb94ad2d\",\n + \ \"label\" : \"Roast Chicken with Thyme Recipe\",\n \"image\" : + \"https://www.edamam.com/web-img/fa8/fa8947d21f887a08dc63eb21b88bf252.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/10/roast-chicken-with-thyme-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-with-thyme-recipe-1e3cb29a2a22293d3b40e53acb94ad2d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 4 1/2-pound + chicken\", \"About 4 tablespoons olive oil, depending on the size of your + Dutch oven\", \"1 bunch thyme\", \"1 head garlic, skin on, cut in half\", + \"Salt and pepper\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + 4 1/2-pound chicken\",\n \"weight\" : 2041.165665\n }, {\n \"text\" + : \"About 4 tablespoons olive oil, depending on the size of your Dutch oven\",\n + \ \"weight\" : 54.0\n }, {\n \"text\" : \"1 bunch thyme\",\n + \ \"weight\" : 15.0\n }, {\n \"text\" : \"1 head garlic, + skin on, cut in half\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 12.96099399\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 6.480496995\n } ],\n \"calories\" + : 3567.46024968745,\n \"totalWeight\" : 2177.1076702277705,\n \"totalTime\" + : 120.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3567.46024968745,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 263.744957623357,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 67.48356182799039,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.346352872634,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 126.07522237007304,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 50.78355802607009,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 24.3417778283025,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 4.789565739735,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.541475180768,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 262.85395694698053,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1040.99448915,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5038.492316796134,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 335.68855540571485,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 325.2847953837777,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3002.6588383801713,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 16.92561310518264,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 19.121783166293266,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2142.9883839860995,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 606.5267215906499,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 61.82288243519999,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9469945280745997,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.8029060772309997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 95.09505235677484,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.546532528955448,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 92.63124362114999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 92.63124362114999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 4.3027772218199996,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.7759853044,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 12.020375125347998,\n \"unit\" : \"mg\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 64.786463363815,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 178.3730124843725,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 405.76147326670304,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 337.41780913995194,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.113925942767501,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 19.15826295894,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 525.7079138939611,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 346.99816304999996,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 209.9371798665056,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.568855540571484,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 81.32119884594442,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 85.79025252514775,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 94.03118391768135,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 127.47855444195511,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 306.1411977122999,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 67.39185795451665,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 103.03813739199998,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 63.13296853830665,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 106.05329866064704,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 475.47526178387426,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 277.3266264477724,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 23.157810905287498,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 71.71295369699999,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6939963261,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 60.10187562673999,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 80.98307920476876,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 263.744957623357,\n \"hasRDI\" + : true,\n \"daily\" : 405.76147326670304,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 67.48356182799039,\n \"hasRDI\" : true,\n \"daily\" : + 337.41780913995194,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.346352872634,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 126.07522237007304,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 50.78355802607009,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 24.3417778283025,\n \"hasRDI\" : true,\n \"daily\" : 8.113925942767501,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.5522120885675,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 4.789565739735,\n \"hasRDI\" + : true,\n \"daily\" : 19.15826295894,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 0.541475180768,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 262.85395694698053,\n \"hasRDI\" : true,\n \"daily\" : 525.7079138939611,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1040.99448915,\n \"hasRDI\" : true,\n \"daily\" + : 346.99816304999996,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5038.492316796134,\n \"hasRDI\" : true,\n \"daily\" + : 209.9371798665056,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 335.68855540571485,\n \"hasRDI\" : true,\n \"daily\" + : 33.568855540571484,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 325.2847953837777,\n \"hasRDI\" : true,\n \"daily\" + : 81.32119884594442,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3002.6588383801713,\n \"hasRDI\" : true,\n \"daily\" + : 85.79025252514775,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.92561310518264,\n \"hasRDI\" : true,\n \"daily\" + : 94.03118391768135,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 19.121783166293266,\n \"hasRDI\" : true,\n \"daily\" + : 127.47855444195511,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2142.9883839860995,\n \"hasRDI\" : true,\n \"daily\" + : 306.1411977122999,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 606.5267215906499,\n \"hasRDI\" : true,\n + \ \"daily\" : 67.39185795451665,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 61.82288243519999,\n \"hasRDI\" : true,\n + \ \"daily\" : 103.03813739199998,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9469945280745997,\n \"hasRDI\" : true,\n + \ \"daily\" : 63.13296853830665,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.8029060772309997,\n + \ \"hasRDI\" : true,\n \"daily\" : 106.05329866064704,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 95.09505235677484,\n + \ \"hasRDI\" : true,\n \"daily\" : 475.47526178387426,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.546532528955448,\n + \ \"hasRDI\" : true,\n \"daily\" : 277.3266264477724,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 92.63124362114999,\n \"hasRDI\" : true,\n \"daily\" : 23.157810905287498,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 92.63124362114999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.3027772218199996,\n + \ \"hasRDI\" : true,\n \"daily\" : 71.71295369699999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.7759853044,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6939963261,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.020375125347998,\n + \ \"hasRDI\" : true,\n \"daily\" : 60.10187562673999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 64.786463363815,\n + \ \"hasRDI\" : true,\n \"daily\" : 80.98307920476876,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_711546628813a0aa548a7c3ed7b60d9a\",\n + \ \"label\" : \"Chicken And Mushroom Spaghetti\",\n \"image\" : \"https://www.edamam.com/web-img/a11/a11bc6e116ab167506bbdf9d327d1b09.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/1050265/chicken-and-mushroom-spaghetti\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-and-mushroom-spaghetti-711546628813a0aa548a7c3ed7b60d9a/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Fat\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"8 ozs whole-wheat + spaghetti\", \"2 cups chicken pot pie filling\", \"2 tbsps chopped fresh parsley + leaves\" ],\n \"ingredients\" : [ {\n \"text\" : \"8 ozs whole-wheat + spaghetti\",\n \"weight\" : 226.796185\n }, {\n \"text\" + : \"2 cups chicken pot pie filling\",\n \"weight\" : 480.0\n }, + {\n \"text\" : \"2 tbsps chopped fresh parsley leaves\",\n \"weight\" + : 7.6\n } ],\n \"calories\" : 1343.9867238000002,\n \"totalWeight\" + : 714.3961850000001,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 1343.9867238000002,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 3.57118659,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 0.6815661573000001,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 0.5654725607500001,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 1.3712107886000005,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 305.04625760550005,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.1308,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.06459999999999999,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 35.18200186550001,\n \"unit\" : \"g\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 108.7996948,\n \"unit\" : \"mg\"\n },\n \"CA\" : + {\n \"label\" : \"Calcium\",\n \"quantity\" : 154.00647400000003,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 361.71854455000005,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1033.71579775,\n \"unit\" : \"mg\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 9.8559015155,\n \"unit\" : \"mg\"\n },\n \"ZN\" : + {\n \"label\" : \"Zinc\",\n \"quantity\" : 5.696389584500001,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 661.5421573000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 79.996,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 27.388,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.2333013828000001,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.40856654455,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 12.406432290500002,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 0.69019549255,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 160.02582544999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 160.02582544999999,\n \"unit\" + : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 0.056999999999999995,\n \"unit\" : + \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 124.64,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 67.19933619,\n \"unit\" : + \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 5.494133215384615,\n \"unit\" : \"%\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 3.407830786500001,\n + \ \"unit\" : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 101.68208586850001,\n \"unit\" + : \"%\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 12.5232,\n \"unit\" : \"%\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 70.36400373100003,\n \"unit\" : \"%\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 4.533320616666667,\n + \ \"unit\" : \"%\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 15.400647400000002,\n \"unit\" + : \"%\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 90.42963613750003,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 29.534737078571432,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 54.755008419444444,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 37.97593056333334,\n \"unit\" + : \"%\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 94.5060224714286,\n \"unit\" : \"%\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 8.888444444444444,\n \"unit\" : \"%\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 45.64666666666667,\n + \ \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 82.22009218666668,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 24.033326150000004,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 62.032161452500006,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 34.5097746275,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 40.006456362499996,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 0.285,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 155.8,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 3.57118659,\n \"hasRDI\" : true,\n + \ \"daily\" : 5.494133215384615,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 0.6815661573000001,\n \"hasRDI\" : true,\n \"daily\" : + 3.407830786500001,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.0,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.5654725607500001,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.3712107886000005,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 305.04625760550005,\n \"hasRDI\" : true,\n \"daily\" : 101.68208586850001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 301.9154576055,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 3.1308,\n \"hasRDI\" : true,\n + \ \"daily\" : 12.5232,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.06459999999999999,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 35.18200186550001,\n + \ \"hasRDI\" : true,\n \"daily\" : 70.36400373100003,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 108.7996948,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.533320616666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 154.00647400000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.400647400000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 361.71854455000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.42963613750003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1033.71579775,\n + \ \"hasRDI\" : true,\n \"daily\" : 29.534737078571432,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.8559015155,\n \"hasRDI\" + : true,\n \"daily\" : 54.755008419444444,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.696389584500001,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.97593056333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 661.5421573000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.5060224714286,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 79.996,\n \"hasRDI\" : true,\n \"daily\" + : 8.888444444444444,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 27.388,\n \"hasRDI\" : true,\n \"daily\" + : 45.64666666666667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.2333013828000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 82.22009218666668,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.40856654455,\n \"hasRDI\" + : true,\n \"daily\" : 24.033326150000004,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.406432290500002,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.032161452500006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69019549255,\n + \ \"hasRDI\" : true,\n \"daily\" : 34.5097746275,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.02582544999999,\n \"hasRDI\" : true,\n \"daily\" : 40.006456362499996,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 160.02582544999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" : + \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.056999999999999995,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.285,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : + null,\n \"total\" : 124.64,\n \"hasRDI\" : true,\n \"daily\" + : 155.8,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_31eeb3092c3a5878ab9de8e256c6e70d\",\n + \ \"label\" : \"Cook the Book: Perfect Roasted Chicken\",\n \"image\" + : \"https://www.edamam.com/web-img/b0a/b0a263aeca77229c7b6bf8bbcd36a736.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2011/09/perfect-roasted-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/cook-the-book-perfect-roasted-chicken-31eeb3092c3a5878ab9de8e256c6e70d/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"One 3- to 4-pound + chicken\", \"1 lemon and/or 1 medium onion, quartered\", \"Kosher salt\" ],\n + \ \"ingredients\" : [ {\n \"text\" : \"One 3- to 4-pound chicken\",\n + \ \"weight\" : 1587.5732950000001\n }, {\n \"text\" : \"1 + lemon and/or 1 medium onion, quartered\",\n \"weight\" : 110.0\n }, + {\n \"text\" : \"Kosher salt\",\n \"weight\" : 10.18543977\n + \ } ],\n \"calories\" : 2365.03215729,\n \"totalWeight\" : 1705.7976302537197,\n + \ \"totalTime\" : 75.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2365.03215729,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 162.69020599436,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.57479812985999,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.047163345382,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 67.37821005344001,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 34.88815985138,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 10.274000000000001,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 1.87,\n \"unit\" : \"g\"\n + \ },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 4.664000000000001,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 202.00627035160002,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3947.672746056601,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 146.0243229268927,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 226.9922114725372,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2201.607145554298,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 9.974088871737274,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 14.33732724711372,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1618.8382656820002,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 442.615434646,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 25.412797449600003,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.69832990436,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.32515980872,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 73.547784659206,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.9104244421,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 85.672990436,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 85.672990436,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.2606495217999996,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 16.633247609,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 118.2516078645,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 250.29262460670773,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 232.87399064929997,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 3.424666666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 7.48,\n \"unit\" + : \"%\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 404.01254070320005,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 269.88746015000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 164.48636441902505,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 14.602432292689269,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 56.7480528681343,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 62.90306130155137,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 55.41160484298486,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 95.58218164742479,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 231.2626093831429,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 49.179492738444445,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 42.354662416000004,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 46.555326957333335,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 77.95057698352942,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 367.73892329603,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 195.521222105,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 21.418247609,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.77674176433333,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.5397749203000001,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 16.303247609,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 20.791559511250004,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 162.69020599436,\n \"hasRDI\" : true,\n \"daily\" : 250.29262460670773,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 46.57479812985999,\n \"hasRDI\" : true,\n \"daily\" + : 232.87399064929997,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.047163345382,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 67.37821005344001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.88815985138,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 10.274000000000001,\n \"hasRDI\" : true,\n \"daily\" : 3.424666666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.404,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 1.87,\n \"hasRDI\" : true,\n \"daily\" + : 7.48,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 4.664000000000001,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 202.00627035160002,\n \"hasRDI\" + : true,\n \"daily\" : 404.01254070320005,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 809.66238045,\n + \ \"hasRDI\" : true,\n \"daily\" : 269.88746015000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 3947.672746056601,\n + \ \"hasRDI\" : true,\n \"daily\" : 164.48636441902505,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 146.0243229268927,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.602432292689269,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 226.9922114725372,\n + \ \"hasRDI\" : true,\n \"daily\" : 56.7480528681343,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2201.607145554298,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.90306130155137,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 9.974088871737274,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.41160484298486,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 14.33732724711372,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.58218164742479,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1618.8382656820002,\n + \ \"hasRDI\" : true,\n \"daily\" : 231.2626093831429,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 442.615434646,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.179492738444445,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.412797449600003,\n + \ \"hasRDI\" : true,\n \"daily\" : 42.354662416000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.69832990436,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.555326957333335,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.32515980872,\n + \ \"hasRDI\" : true,\n \"daily\" : 77.95057698352942,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.547784659206,\n + \ \"hasRDI\" : true,\n \"daily\" : 367.73892329603,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9104244421,\n + \ \"hasRDI\" : true,\n \"daily\" : 195.521222105,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.672990436,\n \"hasRDI\" : true,\n \"daily\" : 21.418247609,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 85.672990436,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2606495217999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 16.303247609,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.633247609,\n + \ \"hasRDI\" : true,\n \"daily\" : 20.791559511250004,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_33c20e7eb8d4430db5a9cf82984ad264\",\n + \ \"label\" : \"Butter Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/fe8/fe8fdf2a427c7851aef06f6107f1794f.jpg\",\n + \ \"source\" : \"No Recipes\",\n \"url\" : \"http://norecipes.com/blog/butter-chicken-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/butter-chicken-33c20e7eb8d4430db5a9cf82984ad264/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"30 grams garlic (~ 5 large cloves), peeled\", \"30 grams ginger (~ 1-inch + piece), peeled and sliced\", \"450 grams chicken thighs, boneless skinless\", + \"1/3 cup plain yogurt\", \"1 tablespoon vegetable oil\", \"1 teaspoon salt\", + \"1 teaspoon garam masala\", \"1/4 teaspoon crushed saffron threads\", \"600 + grams whole stewed tomatoes (1 1/2 small cans)\", \"2 tablespoons tomato paste\", + \"3 tablespoons butter\", \"6 pods green cardamom\", \"1 pod black cardamom\", + \"1 cinnamon stick\", \"4 cloves\", \"1 teaspoon fenugreek seeds\", \"2 fresh + chili peppers\", \"40 grams raw cashew nuts (about 1/4 cup)\", \"1 teaspoon + salt (to taste)\", \"1 teaspoon dried fenugreek leaves (qasuri methi)\", \"1 + teaspoons garam masala\", \"1/3 cup heavy cream\" ],\n \"ingredients\" + : [ {\n \"text\" : \"30 grams garlic (~ 5 large cloves), peeled\",\n + \ \"weight\" : 30.0\n }, {\n \"text\" : \"30 grams ginger + (~ 1-inch piece), peeled and sliced\",\n \"weight\" : 30.0\n }, + {\n \"text\" : \"450 grams chicken thighs, boneless skinless\",\n \"weight\" + : 450.0\n }, {\n \"text\" : \"1/3 cup plain yogurt\",\n \"weight\" + : 81.66666666666666\n }, {\n \"text\" : \"1 tablespoon vegetable + oil\",\n \"weight\" : 14.0\n }, {\n \"text\" : \"1 teaspoon + salt\",\n \"weight\" : 6.0\n }, {\n \"text\" : \"1 teaspoon + garam masala\",\n \"weight\" : 1.9\n }, {\n \"text\" : + \"1/4 teaspoon crushed saffron threads\",\n \"weight\" : 0.175\n }, + {\n \"text\" : \"600 grams whole stewed tomatoes (1 1/2 small cans)\",\n + \ \"weight\" : 213.75\n }, {\n \"text\" : \"2 tablespoons + tomato paste\",\n \"weight\" : 32.0\n }, {\n \"text\" : + \"3 tablespoons butter\",\n \"weight\" : 42.599999999999994\n }, + {\n \"text\" : \"6 pods green cardamom\",\n \"weight\" : 1.5\n + \ }, {\n \"text\" : \"1 pod black cardamom\",\n \"weight\" + : 0.25\n }, {\n \"text\" : \"1 cinnamon stick\",\n \"weight\" + : 2.6\n }, {\n \"text\" : \"4 cloves\",\n \"weight\" : + 0.6\n }, {\n \"text\" : \"1 teaspoon fenugreek seeds\",\n \"weight\" + : 3.7\n }, {\n \"text\" : \"2 fresh chili peppers\",\n \"weight\" + : 90.0\n }, {\n \"text\" : \"40 grams raw cashew nuts (about 1/4 + cup)\",\n \"weight\" : 56.7\n }, {\n \"text\" : \"1 teaspoon + salt (to taste)\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"1 teaspoon dried fenugreek leaves (qasuri methi)\",\n \"weight\" + : 3.7\n }, {\n \"text\" : \"1 teaspoons garam masala\",\n \"weight\" + : 1.9\n }, {\n \"text\" : \"1/3 cup heavy cream\",\n \"weight\" + : 79.33333333333333\n } ],\n \"calories\" : 2273.856666666667,\n + \ \"totalWeight\" : 1140.6910676548498,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2273.856666666667,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 182.6663725,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 68.03142816666667,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.887832,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 73.19727808333334,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 25.631820083333338,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 71.79328416666667,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 14.546374999999998,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 24.394521666666666,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 98.9823141666667,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 651.8933333333334,\n \"unit\" : \"mg\"\n },\n \"NA\" + : {\n \"label\" : \"Sodium\",\n \"quantity\" : 2642.617335,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 442.76243957049724,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 365.57499400988183,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 2892.792618745721,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 14.024631356594337,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 11.348828567654849,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 1369.4645000000003,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 854.9972499999999,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 177.6188333333333,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 2.025022416666667,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.225742083333333,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 25.881428,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.0908860000000002,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.73774999999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 89.73774999999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.3073866666666665,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.726,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 9.858918333333335,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 58.4762,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 113.69283333333335,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 281.02518846153845,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 340.15714083333336,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 23.93109472222222,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 58.18549999999999,\n \"unit\" : \"%\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 197.9646283333334,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 217.2977777777778,\n \"unit\" + : \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 110.10905562499998,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 44.27624395704972,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 91.39374850247046,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 82.65121767844917,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 77.91461864774631,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 75.65885711769899,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 195.63778571428577,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 94.99969444444443,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 296.03138888888884,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 135.00149444444446,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 72.10247549019606,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 129.40714,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 154.54430000000002,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 22.434437499999998,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 55.12311111111111,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.4315,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 49.294591666666676,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 73.09525,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 182.6663725,\n \"hasRDI\" : true,\n \"daily\" : 281.02518846153845,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 68.03142816666667,\n \"hasRDI\" : true,\n \"daily\" + : 340.15714083333336,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.887832,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 73.19727808333334,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.631820083333338,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 71.79328416666667,\n \"hasRDI\" : true,\n \"daily\" : 23.93109472222222,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 57.24690916666667,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 14.546374999999998,\n \"hasRDI\" + : true,\n \"daily\" : 58.18549999999999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 24.394521666666666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 98.9823141666667,\n \"hasRDI\" : true,\n \"daily\" : 197.9646283333334,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 651.8933333333334,\n \"hasRDI\" : true,\n \"daily\" + : 217.2977777777778,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2642.617335,\n \"hasRDI\" : true,\n \"daily\" + : 110.10905562499998,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 442.76243957049724,\n \"hasRDI\" : true,\n \"daily\" + : 44.27624395704972,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 365.57499400988183,\n \"hasRDI\" : true,\n \"daily\" + : 91.39374850247046,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2892.792618745721,\n \"hasRDI\" : true,\n \"daily\" + : 82.65121767844917,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.024631356594337,\n \"hasRDI\" : true,\n \"daily\" + : 77.91461864774631,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.348828567654849,\n \"hasRDI\" : true,\n \"daily\" + : 75.65885711769899,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1369.4645000000003,\n \"hasRDI\" : true,\n \"daily\" + : 195.63778571428577,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 854.9972499999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 94.99969444444443,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 177.6188333333333,\n \"hasRDI\" : true,\n + \ \"daily\" : 296.03138888888884,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.025022416666667,\n \"hasRDI\" : true,\n + \ \"daily\" : 135.00149444444446,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.225742083333333,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.10247549019606,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.881428,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.40714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0908860000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 154.54430000000002,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.73774999999999,\n \"hasRDI\" : true,\n \"daily\" : 22.434437499999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 89.73774999999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.3073866666666665,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.12311111111111,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.726,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.4315,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 9.858918333333335,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.294591666666676,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 58.4762,\n + \ \"hasRDI\" : true,\n \"daily\" : 73.09525,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_a54d28d9e770c131633682405e7b6fbb\",\n + \ \"label\" : \"Buttermilk Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/71b/71b8d910554a0c7ed27a928e90944f93.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/336024/buttermilk-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/buttermilk-chicken-a54d28d9e770c131633682405e7b6fbb/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"Vegetable oil, for baking sheet\", + \"8 slices white bread\", \"1 cup buttermilk\", \"1 teaspoon hot-pepper sauce\", + \"Salt and pepper\", \"3/4 cup grated Parmesan cheese (2 1/2 ounces)\", \"1 + teaspoon dried thyme\", \"4 pounds chicken parts (preferably legs, thighs, + and wings), rinsed and patted dry\" ],\n \"ingredients\" : [ {\n \"text\" + : \"Vegetable oil, for baking sheet\",\n \"weight\" : 32.18260871425\n + \ }, {\n \"text\" : \"8 slices white bread\",\n \"weight\" + : 232.0\n }, {\n \"text\" : \"1 cup buttermilk\",\n \"weight\" + : 245.0\n }, {\n \"text\" : \"1 teaspoon hot-pepper sauce\",\n + \ \"weight\" : 3.1250000000000004\n }, {\n \"text\" : \"Salt + and pepper\",\n \"weight\" : 14.198209726875001\n }, {\n \"text\" + : \"Salt and pepper\",\n \"weight\" : 7.099104863437501\n }, {\n + \ \"text\" : \"3/4 cup grated Parmesan cheese (2 1/2 ounces)\",\n \"weight\" + : 70.8738078125\n }, {\n \"text\" : \"1 teaspoon dried thyme\",\n + \ \"weight\" : 1.0\n }, {\n \"text\" : \"4 pounds chicken + parts (preferably legs, thighs, and wings), rinsed and patted dry\",\n \"weight\" + : 1814.36948\n } ],\n \"calories\" : 5311.344891666199,\n \"totalWeight\" + : 2409.5282123916845,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 5311.344891666199,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 361.84836471876685,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 99.08054883031512,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.8493746668382978,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 156.5004427935259,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 72.4587920925527,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 136.94575037173078,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.492948530449686,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 26.241849733625997,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 358.93825888427995,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 1836.0762797125003,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5594.290965232854,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 1610.6290532853875,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 504.2179832639931,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 4659.967502902705,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 23.108486366607224,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 29.302478565720158,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 3918.7246455029817,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 603.6305208850032,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 7.904625000000001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 2.4132775386993877,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 3.8498526766916874,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 97.45657423776098,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.743148155861979,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 305.9878487736594,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 227.10784877365938,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 46.4,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 12.638576469750001,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 2.1687385190625004,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 11.71540017547375,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 80.1233484742597,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 265.56724458330996,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 556.6897918750259,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 495.40274415157563,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 45.64858345724359,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 45.97179412179875,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 717.8765177685599,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 612.0254265708335,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 233.0954568847023,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 161.06290532853876,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 126.05449581599827,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 133.141928654363,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 128.38047981448457,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 195.34985710480106,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 559.817806500426,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 67.07005787611146,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 13.174375000000001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 160.88516924662585,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 226.46192215833457,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 487.2828711888049,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 337.15740779309897,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 76.49696219341484,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 210.64294116250002,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5421846297656251,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 58.577000877368754,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 100.15418559282463,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 361.84836471876685,\n \"hasRDI\" : true,\n \"daily\" : 556.6897918750259,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 99.08054883031512,\n \"hasRDI\" : true,\n \"daily\" + : 495.40274415157563,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.8493746668382978,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 156.5004427935259,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 72.4587920925527,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 136.94575037173078,\n \"hasRDI\" : true,\n \"daily\" : 45.64858345724359,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 125.4528018412811,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 11.492948530449686,\n \"hasRDI\" + : true,\n \"daily\" : 45.97179412179875,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.241849733625997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 358.93825888427995,\n \"hasRDI\" : true,\n \"daily\" : 717.8765177685599,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1836.0762797125003,\n \"hasRDI\" : true,\n \"daily\" + : 612.0254265708335,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5594.290965232854,\n \"hasRDI\" : true,\n \"daily\" + : 233.0954568847023,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1610.6290532853875,\n \"hasRDI\" : true,\n \"daily\" + : 161.06290532853876,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 504.2179832639931,\n \"hasRDI\" : true,\n \"daily\" + : 126.05449581599827,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4659.967502902705,\n \"hasRDI\" : true,\n \"daily\" + : 133.141928654363,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 23.108486366607224,\n \"hasRDI\" : true,\n \"daily\" + : 128.38047981448457,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 29.302478565720158,\n \"hasRDI\" : true,\n \"daily\" + : 195.34985710480106,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3918.7246455029817,\n \"hasRDI\" : true,\n \"daily\" + : 559.817806500426,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 603.6305208850032,\n \"hasRDI\" : true,\n + \ \"daily\" : 67.07005787611146,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 7.904625000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 13.174375000000001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.4132775386993877,\n \"hasRDI\" : true,\n + \ \"daily\" : 160.88516924662585,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.8498526766916874,\n + \ \"hasRDI\" : true,\n \"daily\" : 226.46192215833457,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 97.45657423776098,\n + \ \"hasRDI\" : true,\n \"daily\" : 487.2828711888049,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.743148155861979,\n + \ \"hasRDI\" : true,\n \"daily\" : 337.15740779309897,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 305.9878487736594,\n \"hasRDI\" : true,\n \"daily\" : 76.49696219341484,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 227.10784877365938,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 46.4,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 12.638576469750001,\n + \ \"hasRDI\" : true,\n \"daily\" : 210.64294116250002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1687385190625004,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5421846297656251,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 11.71540017547375,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.577000877368754,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 80.1233484742597,\n + \ \"hasRDI\" : true,\n \"daily\" : 100.15418559282463,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0f6cb925cc2887ce8d861bf9f38a9355\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/08b/08be53ff976298cbb5a94680343f680e.jpg\",\n + \ \"source\" : \"Honest Cooking\",\n \"url\" : \"http://honestcooking.com/chicken-piccata-recipe/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-0f6cb925cc2887ce8d861bf9f38a9355/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"Two large chicken breasts\", \"¼ cup + flour\", \"Salt and pepper\", \"2 tbsp. olive oil\", \"3 tbsp. butter\", \"3 + tbsp. dry white wine\", \"3 tbsp. lemon juice\", \"2 tbsp. capers, rinsed + and drained\", \"1 tbsp. parsley, chopped\" ],\n \"ingredients\" : [ + {\n \"text\" : \"Two large chicken breasts\",\n \"weight\" : + 435.0\n }, {\n \"text\" : \"¼ cup flour\",\n \"weight\" + : 31.25\n }, {\n \"text\" : \"Salt and pepper\",\n \"weight\" + : 3.8577000000000004\n }, {\n \"text\" : \"Salt and pepper\",\n + \ \"weight\" : 1.9288500000000002\n }, {\n \"text\" : \"2 + tbsp. olive oil\",\n \"weight\" : 27.0\n }, {\n \"text\" + : \"3 tbsp. butter\",\n \"weight\" : 42.599999999999994\n }, {\n + \ \"text\" : \"3 tbsp. dry white wine\",\n \"weight\" : 44.099999999999994\n + \ }, {\n \"text\" : \"3 tbsp. lemon juice\",\n \"weight\" + : 42.0\n }, {\n \"text\" : \"2 tbsp. capers, rinsed and drained\",\n + \ \"weight\" : 17.2\n }, {\n \"text\" : \"1 tbsp. parsley, + chopped\",\n \"weight\" : 3.8\n } ],\n \"calories\" : 1461.6394134999998,\n + \ \"totalWeight\" : 646.9706945175138,\n \"totalTime\" : 30.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1461.6394135,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 102.43823051,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 37.319107092,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.8531779999999998,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 45.33742370149999,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 12.877660423000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 30.232154575,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 2.13354905,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 1.7068596399999998,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 95.18478251500001,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 369.99,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1499.652868098,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 90.6913481842033,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 134.30225194517516,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 1129.2362640614012,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 4.614049421907795,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 3.9317551595175138,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 819.1435830000001,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 413.50678949999997,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 22.047600000000003,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.33441215799999996,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.44075293000000004,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 43.77824975550001,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 2.374886953500001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 45.70390449999999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 45.70390449999999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.5514200000000002,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 2.379,\n \"unit\" : \"µg\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 6.318990040000001,\n \"unit\" : \"mg\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 89.21487745,\n + \ \"unit\" : \"µg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 73.08197067500001,\n \"unit\" : \"%\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 157.59727770769229,\n + \ \"unit\" : \"%\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 186.59553546,\n \"unit\" + : \"%\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 10.077384858333334,\n \"unit\" : \"%\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 8.5341962,\n \"unit\" : \"%\"\n },\n \"PROCNT\" : + {\n \"label\" : \"Protein\",\n \"quantity\" : 190.36956503000002,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 123.33,\n \"unit\" : + \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 62.485536170749995,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 9.06913481842033,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 33.57556298629379,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 32.26389325889718,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 25.633607899487753,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 26.211701063450093,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 117.02051185714289,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 45.94519883333333,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 36.746,\n \"unit\" : \"%\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 22.294143866666662,\n \"unit\" : \"%\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 25.92664294117647,\n \"unit\" : \"%\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 218.89124877750004,\n + \ \"unit\" : \"%\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 118.74434767500004,\n \"unit\" + : \"%\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 11.425976124999998,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 25.857000000000003,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.59475,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 31.594950200000007,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 111.51859681250001,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 102.43823051,\n \"hasRDI\" : + true,\n \"daily\" : 157.59727770769229,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 37.319107092,\n \"hasRDI\" : true,\n \"daily\" : 186.59553546,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.8531779999999998,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n \"schemaOrgTag\" + : null,\n \"total\" : 45.33742370149999,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.877660423000002,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 30.232154575,\n \"hasRDI\" : true,\n \"daily\" : 10.077384858333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.098605525,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 2.13354905,\n \"hasRDI\" + : true,\n \"daily\" : 8.5341962,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 1.7068596399999998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 95.18478251500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 190.36956503000002,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 369.99,\n \"hasRDI\" : true,\n \"daily\" : 123.33,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1499.652868098,\n + \ \"hasRDI\" : true,\n \"daily\" : 62.485536170749995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 90.6913481842033,\n + \ \"hasRDI\" : true,\n \"daily\" : 9.06913481842033,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 134.30225194517516,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.57556298629379,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1129.2362640614012,\n + \ \"hasRDI\" : true,\n \"daily\" : 32.26389325889718,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 4.614049421907795,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.633607899487753,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.9317551595175138,\n + \ \"hasRDI\" : true,\n \"daily\" : 26.211701063450093,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 819.1435830000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 117.02051185714289,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 413.50678949999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.94519883333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.047600000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.746,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.33441215799999996,\n + \ \"hasRDI\" : true,\n \"daily\" : 22.294143866666662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.44075293000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.92664294117647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 43.77824975550001,\n + \ \"hasRDI\" : true,\n \"daily\" : 218.89124877750004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.374886953500001,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.74434767500004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.70390449999999,\n \"hasRDI\" : true,\n \"daily\" : 11.425976124999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 45.70390449999999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.5514200000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 25.857000000000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.379,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.59475,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.318990040000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 31.594950200000007,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 89.21487745,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.51859681250001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e94bcbe2193c9b9b52850fda540c1043\",\n + \ \"label\" : \"Chesapeake Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/ac2/ac2b80a2b5782c0b451493cac4c6efb7.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chesapeake-Chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chesapeake-chicken-e94bcbe2193c9b9b52850fda540c1043/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 chicken, cut into 8 pieces\", \"1 + quart buttermilk\", \"3 drops tabasco\", \"5 tbsp. old bay seasoning\", \"2 + cups flour\", \"Freshly ground black pepper\", \"Frying oil\" ],\n \"ingredients\" + : [ {\n \"text\" : \"1 chicken, cut into 8 pieces\",\n \"weight\" + : 920.0\n }, {\n \"text\" : \"1 quart buttermilk\",\n \"weight\" + : 980.0\n }, {\n \"text\" : \"3 drops tabasco\",\n \"weight\" + : 0.17625000000000002\n }, {\n \"text\" : \"5 tbsp. old bay seasoning\",\n + \ \"weight\" : 22.0\n }, {\n \"text\" : \"2 cups flour\",\n + \ \"weight\" : 250.0\n }, {\n \"text\" : \"Freshly ground + black pepper\",\n \"weight\" : 6.51652875\n }, {\n \"text\" + : \"Frying oil\",\n \"weight\" : 29.541597\n } ],\n \"calories\" + : 3625.0653546425,\n \"totalWeight\" : 2208.23437575,\n \"totalTime\" + : 156.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3625.0653546425,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 181.03797533725,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 48.40033552425,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 1.00908930815,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 79.12102557768252,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 39.877157947165,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 256.315530135625,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 10.885739273750001,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 48.054934909,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 232.17214096212504,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 729.2000000000002,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2519.3589682500005,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 1523.5093723625005,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 407.24441416250005,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3723.4102670875004,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 20.095799441625,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 18.686628692125,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 2542.5566529250004,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 545.3439877625001,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 27.167931250000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.25037425105,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.76709780175,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 66.99079764861251,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.9728345236625002,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 200.6713348875,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 200.6678098875,\n \"unit\" : + \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 0.0017625000000000002,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 5.008000000000001,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.8400000000000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.916152360200002,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 224.44906872474996,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 181.253267732125,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 278.5199620573077,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 242.00167762125002,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 85.43851004520833,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 43.542957095,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 464.3442819242501,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 243.06666666666672,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 104.97329034375002,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 152.35093723625005,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 101.81110354062501,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 106.3831504882143,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 111.64333023125,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 124.57752461416668,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 363.2223789892858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 60.59377641805557,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 45.279885416666666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 83.35828340333333,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 162.77045892647058,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 334.95398824306255,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 198.641726183125,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 50.16783372187499,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 83.46666666666668,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.4600000000000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 44.58076180100001,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 280.5613359059374,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 181.03797533725,\n \"hasRDI\" : true,\n \"daily\" + : 278.5199620573077,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 48.40033552425,\n \"hasRDI\" + : true,\n \"daily\" : 242.00167762125002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 1.00908930815,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.12102557768252,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.877157947165,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 256.315530135625,\n \"hasRDI\" : true,\n \"daily\" : 85.43851004520833,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 245.429790861875,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 10.885739273750001,\n \"hasRDI\" + : true,\n \"daily\" : 43.542957095,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 48.054934909,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 232.17214096212504,\n \"hasRDI\" : true,\n \"daily\" : 464.3442819242501,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 729.2000000000002,\n \"hasRDI\" : true,\n \"daily\" + : 243.06666666666672,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2519.3589682500005,\n \"hasRDI\" : true,\n \"daily\" + : 104.97329034375002,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1523.5093723625005,\n \"hasRDI\" : true,\n \"daily\" + : 152.35093723625005,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 407.24441416250005,\n \"hasRDI\" : true,\n \"daily\" + : 101.81110354062501,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3723.4102670875004,\n \"hasRDI\" : true,\n \"daily\" + : 106.3831504882143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 20.095799441625,\n \"hasRDI\" : true,\n \"daily\" + : 111.64333023125,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 18.686628692125,\n \"hasRDI\" : true,\n \"daily\" + : 124.57752461416668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2542.5566529250004,\n \"hasRDI\" : true,\n \"daily\" + : 363.2223789892858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 545.3439877625001,\n \"hasRDI\" : true,\n + \ \"daily\" : 60.59377641805557,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 27.167931250000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 45.279885416666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.25037425105,\n \"hasRDI\" : true,\n + \ \"daily\" : 83.35828340333333,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.76709780175,\n \"hasRDI\" + : true,\n \"daily\" : 162.77045892647058,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 66.99079764861251,\n + \ \"hasRDI\" : true,\n \"daily\" : 334.95398824306255,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.9728345236625002,\n + \ \"hasRDI\" : true,\n \"daily\" : 198.641726183125,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 200.6713348875,\n \"hasRDI\" : true,\n \"daily\" : 50.16783372187499,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 200.6678098875,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0017625000000000002,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 5.008000000000001,\n \"hasRDI\" : true,\n \"daily\" + : 83.46666666666668,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 8.916152360200002,\n \"hasRDI\" : true,\n + \ \"daily\" : 44.58076180100001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 224.44906872474996,\n \"hasRDI\" : true,\n + \ \"daily\" : 280.5613359059374,\n \"unit\" : \"µg\"\n } + ]\n },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0d254199d5f1a0a6a173edb0ae833a7b\",\n + \ \"label\" : \"Perfectly Roasted Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/679/679508d744a7085a9da30257da5b42bd.jpg\",\n + \ \"source\" : \"Martha Stewart\",\n \"url\" : \"http://www.marthastewart.com/317811/perfectly-roasted-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/perfectly-roasted-chicken-0d254199d5f1a0a6a173edb0ae833a7b/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 organic chicken + (3 pounds)\", \"Coarse salt and freshly ground white pepper\", \"Vegetable + oil, for cooking\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 + organic chicken (3 pounds)\",\n \"weight\" : 1360.77711\n }, {\n + \ \"text\" : \"Coarse salt and freshly ground white pepper\",\n \"weight\" + : 8.16466266\n }, {\n \"text\" : \"Coarse salt and freshly ground + white pepper\",\n \"weight\" : 0.0\n }, {\n \"text\" : + \"Vegetable oil, for cooking\",\n \"weight\" : 18.506568696\n } + ],\n \"calories\" : 2153.0542020926396,\n \"totalWeight\" : 1385.8881647499088,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 2153.0542020926396,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 157.86103097688,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 41.08661822767655,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 1.03951396365432,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 71.06355820145735,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 33.052361559682076,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 172.1110888728,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 693.9963260999999,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 3207.4966091339747,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 103.3712044809381,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 185.13173182053907,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 1749.3991006563126,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 8.3497507171779,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 12.128406981933908,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1360.2327991559998,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 379.38465826799995,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 14.805254956799999,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.55519706088,\n \"unit\" : \"mg\"\n },\n + \ \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" + : 1.11039412176,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 62.931586850748,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 3.2386495217999998,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 55.51970608799999,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 55.51970608799999,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.8685181478799997,\n \"unit\" : + \"µg\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 1.8506568695999999,\n \"unit\" : \"µg\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 6.810417280128,\n \"unit\" : \"mg\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 13.879926521999998,\n \"unit\" : \"µg\"\n }\n },\n + \ \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 107.65271010463198,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 242.86312457981538,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 205.43309113838276,\n \"unit\" : \"%\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 344.2221777456,\n \"unit\" : \"%\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 231.33210869999996,\n + \ \"unit\" : \"%\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 133.64569204724896,\n \"unit\" + : \"%\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 10.33712044809381,\n \"unit\" : \"%\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 46.28293295513477,\n \"unit\" : \"%\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 49.98283144732322,\n + \ \"unit\" : \"%\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 46.38750398432167,\n \"unit\" + : \"%\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 80.85604654622605,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 194.318971308,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 42.15385091866666,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 24.675424927999998,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 37.013137392,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 65.31730128,\n \"unit\" : \"%\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 314.65793425374,\n \"unit\" : \"%\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 161.93247609,\n + \ \"unit\" : \"%\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 13.879926521999998,\n + \ \"unit\" : \"%\"\n },\n \"VITB12\" : {\n \"label\" + : \"Vitamin B12\",\n \"quantity\" : 47.80863579799999,\n \"unit\" + : \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin + D\",\n \"quantity\" : 0.46266421739999997,\n \"unit\" : + \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 34.05208640064,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 17.3499081525,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 157.86103097688,\n \"hasRDI\" : true,\n \"daily\" : 242.86312457981538,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 41.08661822767655,\n \"hasRDI\" : true,\n \"daily\" + : 205.43309113838276,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.03951396365432,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 71.06355820145735,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 33.052361559682076,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs (net)\",\n + \ \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 172.1110888728,\n \"hasRDI\" + : true,\n \"daily\" : 344.2221777456,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 693.9963260999999,\n \"hasRDI\" + : true,\n \"daily\" : 231.33210869999996,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 3207.4966091339747,\n \"hasRDI\" + : true,\n \"daily\" : 133.64569204724896,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 103.3712044809381,\n + \ \"hasRDI\" : true,\n \"daily\" : 10.33712044809381,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 185.13173182053907,\n + \ \"hasRDI\" : true,\n \"daily\" : 46.28293295513477,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 1749.3991006563126,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.98283144732322,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.3497507171779,\n \"hasRDI\" + : true,\n \"daily\" : 46.38750398432167,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 12.128406981933908,\n \"hasRDI\" : true,\n + \ \"daily\" : 80.85604654622605,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1360.2327991559998,\n \"hasRDI\" : true,\n + \ \"daily\" : 194.318971308,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 379.38465826799995,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.15385091866666,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 14.805254956799999,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.675424927999998,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.55519706088,\n \"hasRDI\" : true,\n + \ \"daily\" : 37.013137392,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.11039412176,\n \"hasRDI\" : true,\n + \ \"daily\" : 65.31730128,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 62.931586850748,\n \"hasRDI\" : true,\n + \ \"daily\" : 314.65793425374,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.2386495217999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 161.93247609,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 55.51970608799999,\n + \ \"hasRDI\" : true,\n \"daily\" : 13.879926521999998,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 55.51970608799999,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8685181478799997,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.80863579799999,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8506568695999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.46266421739999997,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.810417280128,\n \"hasRDI\" : true,\n + \ \"daily\" : 34.05208640064,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 13.879926521999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 17.3499081525,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_7f75516e49a367930ba2c0c3544d4afb\",\n + \ \"label\" : \"Roast Chicken recipes\",\n \"image\" : \"https://www.edamam.com/web-img/bfc/bfcf87f838efdbc03544e49eb43a2900\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipe/roast-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/roast-chicken-recipes-7f75516e49a367930ba2c0c3544d4afb/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"kosher salt\", + \"whole 4-pound chicken, giblets reserved for another use\", \"(1/2 stick) + unsalted butter, melted\" ],\n \"ingredients\" : [ {\n \"text\" + : \"kosher salt\",\n \"weight\" : 11.225216880000001\n }, {\n + \ \"text\" : \"whole 4-pound chicken, giblets reserved for another use\",\n + \ \"weight\" : 1814.36948\n }, {\n \"text\" : \"(1/2 stick) + unsalted butter, melted\",\n \"weight\" : 56.5\n } ],\n \"calories\" + : 4305.999382,\n \"totalWeight\" : 1878.8017673273916,\n \"totalTime\" + : 90.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 4305.999382,\n \"unit\" : + \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 319.07119368800005,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 107.222244588,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 3.6120083956,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 125.09352055200003,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 60.32342920400001,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 0.0339,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 0.0339,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 337.9529732800001,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 1482.2521100000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4350.669558350401,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 215.044391758574,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 364.08321887327395,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3443.3529001861916,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 16.366801868180392,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 23.827022475327396,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2680.6831356000002,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1130.3514868000002,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 29.029911680000005,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 1.0914466880000002,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 2.1964533760000005,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 123.41899833480002,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 6.35198818,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 110.5571688,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 110.5571688,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 5.7205953880000004,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 4.476238960000001,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 6.75390844,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 31.170542200000003,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 215.2999691,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 490.8787595200001,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 536.11122294,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.011300000000000001,\n \"unit\" : \"%\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 675.9059465600002,\n + \ \"unit\" : \"%\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 494.0840366666667,\n \"unit\" + : \"%\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 181.27789826460003,\n \"unit\" : \"%\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 21.5044391758574,\n \"unit\" : \"%\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 91.02080471831849,\n + \ \"unit\" : \"%\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 98.38151143389119,\n \"unit\" + : \"%\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 90.92667704544662,\n \"unit\" : \"%\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 158.84681650218263,\n \"unit\" : \"%\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 382.9547336571429,\n + \ \"unit\" : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 125.59460964444446,\n \"unit\" + : \"%\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 48.38318613333334,\n \"unit\" : \"%\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 72.76311253333334,\n \"unit\" : \"%\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 129.2031397647059,\n \"unit\" : \"%\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 617.0949916740001,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 317.59940900000004,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 27.6392922,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 95.34325646666667,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1190597400000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 33.769542200000004,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 38.96317775000001,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 319.07119368800005,\n \"hasRDI\" : true,\n \"daily\" + : 490.8787595200001,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 107.222244588,\n \"hasRDI\" + : true,\n \"daily\" : 536.11122294,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 3.6120083956,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 125.09352055200003,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 60.32342920400001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 0.0339,\n \"hasRDI\" : true,\n \"daily\" : 0.011300000000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0339,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars\",\n + \ \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : \"sugarContent\",\n + \ \"total\" : 0.0339,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Sugars, + added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 337.9529732800001,\n \"hasRDI\" + : true,\n \"daily\" : 675.9059465600002,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n + \ \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" : 1482.2521100000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 494.0840366666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 4350.669558350401,\n + \ \"hasRDI\" : true,\n \"daily\" : 181.27789826460003,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 215.044391758574,\n + \ \"hasRDI\" : true,\n \"daily\" : 21.5044391758574,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 364.08321887327395,\n + \ \"hasRDI\" : true,\n \"daily\" : 91.02080471831849,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 3443.3529001861916,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.38151143389119,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.366801868180392,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.92667704544662,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 23.827022475327396,\n + \ \"hasRDI\" : true,\n \"daily\" : 158.84681650218263,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 2680.6831356000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 382.9547336571429,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 1130.3514868000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.59460964444446,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.029911680000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.38318613333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0914466880000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 72.76311253333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1964533760000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 129.2031397647059,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 123.41899833480002,\n + \ \"hasRDI\" : true,\n \"daily\" : 617.0949916740001,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.35198818,\n + \ \"hasRDI\" : true,\n \"daily\" : 317.59940900000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 110.5571688,\n \"hasRDI\" : true,\n \"daily\" : 27.6392922,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 110.5571688,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" + : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.7205953880000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 95.34325646666667,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.476238960000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1190597400000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.75390844,\n + \ \"hasRDI\" : true,\n \"daily\" : 33.769542200000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.170542200000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.96317775000001,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_29bbe48c767bacfcf665b2adcf20aaf2\",\n + \ \"label\" : \"Spring Chicken Recipe\",\n \"image\" : \"https://www.edamam.com/web-img/e7b/e7b20984220bc1d611a0f615f12ac66d.jpg\",\n + \ \"source\" : \"Serious Eats\",\n \"url\" : \"http://www.seriouseats.com/recipes/2008/04/spring-ginger-roasted-chicken-recipe.html\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/spring-chicken-recipe-29bbe48c767bacfcf665b2adcf20aaf2/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ \"Shellfish\" ],\n \"ingredientLines\" : [ + \"2 tablespoons unsalted butter, softened\", \"5 garlic cloves, 1 minced\", + \"1 tablespoon grated ginger, plus 12 slices ginger\", \"Salt and fresh black + pepper\", \"One 4-pound chicken\", \"1 onion, quartered\", \"2 serrano chiles, + seeded and thinly sliced\", \"1 lime, quartered\", \"1/2 cup chicken stock\", + \"1 tablespoon Asian fish sauce\" ],\n \"ingredients\" : [ {\n \"text\" + : \"2 tablespoons unsalted butter, softened\",\n \"weight\" : 28.4\n + \ }, {\n \"text\" : \"5 garlic cloves, 1 minced\",\n \"weight\" + : 15.0\n }, {\n \"text\" : \"1 tablespoon grated ginger, plus + 12 slices ginger\",\n \"weight\" : 6.0\n }, {\n \"text\" + : \"Salt and fresh black pepper\",\n \"weight\" : 13.235816880000002\n + \ }, {\n \"text\" : \"Salt and fresh black pepper\",\n \"weight\" + : 6.617908440000001\n }, {\n \"text\" : \"One 4-pound chicken\",\n + \ \"weight\" : 1814.36948\n }, {\n \"text\" : \"1 onion, + quartered\",\n \"weight\" : 125.0\n }, {\n \"text\" : \"2 + serrano chiles, seeded and thinly sliced\",\n \"weight\" : 12.2\n }, + {\n \"text\" : \"1 lime, quartered\",\n \"weight\" : 67.0\n + \ }, {\n \"text\" : \"1/2 cup chicken stock\",\n \"weight\" + : 120.0\n }, {\n \"text\" : \"1 tablespoon Asian fish sauce\",\n + \ \"weight\" : 18.0\n } ],\n \"calories\" : 3023.5011299444,\n + \ \"totalWeight\" : 2219.5061413836543,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3023.5011299444,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 210.931413522984,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 68.34188200532479,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 2.127710109008,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 83.74763211873162,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 41.168983984951204,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 34.71979244738,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 6.561730835319999,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 9.762154614016001,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 237.46473251731598,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 989.9884347999999,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 5145.32772006945,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 265.16067219967704,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 320.54206024183657,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2978.0891590990927,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 13.227872011838057,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 16.989955191219654,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1942.7560275432,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 710.8830463028,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 59.27513994240001,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.9086780889552,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 1.6899257308719997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 86.93000716113319,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.9180594759603995,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 124.2093192188,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 124.2093192188,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.95937086384,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.8935424928,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.7491999869759995,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 34.17068481228,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 151.17505649722,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 324.50986695843693,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 341.7094100266239,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 11.573264149126667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.246923341279995,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 474.92946503463196,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 329.9961449333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 214.38865500289376,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 26.516067219967702,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 80.13551506045914,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 85.08826168854551,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 73.48817784354476,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 113.26636794146435,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 277.5365753633143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 78.98700514475556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 98.79189990400002,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 60.57853926368,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 99.40739593364704,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 434.650035805666,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 245.90297379801999,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 31.0523298047,\n \"unit\" : \"%\"\n },\n \"VITB12\" + : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" : 65.98951439733334,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.7233856232,\n \"unit\" + : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin + E\",\n \"quantity\" : 23.745999934879997,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 42.71335601535,\n \"unit\" : \"%\"\n }\n + \ },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n \"tag\" + : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 210.931413522984,\n \"hasRDI\" : true,\n \"daily\" : 324.50986695843693,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 68.34188200532479,\n \"hasRDI\" : true,\n \"daily\" + : 341.7094100266239,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.127710109008,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 83.74763211873162,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 41.168983984951204,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 34.71979244738,\n \"hasRDI\" : true,\n \"daily\" : 11.573264149126667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 28.158061612060003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.561730835319999,\n \"hasRDI\" + : true,\n \"daily\" : 26.246923341279995,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 9.762154614016001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 237.46473251731598,\n \"hasRDI\" : true,\n \"daily\" : 474.92946503463196,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 989.9884347999999,\n \"hasRDI\" : true,\n \"daily\" + : 329.9961449333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 5145.32772006945,\n \"hasRDI\" : true,\n \"daily\" + : 214.38865500289376,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 265.16067219967704,\n \"hasRDI\" : true,\n \"daily\" + : 26.516067219967702,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 320.54206024183657,\n \"hasRDI\" : true,\n \"daily\" + : 80.13551506045914,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2978.0891590990927,\n \"hasRDI\" : true,\n \"daily\" + : 85.08826168854551,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 13.227872011838057,\n \"hasRDI\" : true,\n \"daily\" + : 73.48817784354476,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 16.989955191219654,\n \"hasRDI\" : true,\n \"daily\" + : 113.26636794146435,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1942.7560275432,\n \"hasRDI\" : true,\n \"daily\" + : 277.5365753633143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 710.8830463028,\n \"hasRDI\" : true,\n + \ \"daily\" : 78.98700514475556,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 59.27513994240001,\n \"hasRDI\" : true,\n + \ \"daily\" : 98.79189990400002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.9086780889552,\n \"hasRDI\" : true,\n + \ \"daily\" : 60.57853926368,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6899257308719997,\n \"hasRDI\" : true,\n + \ \"daily\" : 99.40739593364704,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 86.93000716113319,\n \"hasRDI\" : true,\n + \ \"daily\" : 434.650035805666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin B6\",\n \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.9180594759603995,\n \"hasRDI\" : true,\n + \ \"daily\" : 245.90297379801999,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Folate equivalent (total)\",\n \"tag\" : \"FOLDFE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 124.2093192188,\n \"hasRDI\" + : true,\n \"daily\" : 31.0523298047,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Folate (food)\",\n \"tag\" : \"FOLFD\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 124.2093192188,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Folic acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3.95937086384,\n \"hasRDI\" : true,\n \"daily\" + : 65.98951439733334,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 2.8935424928,\n \"hasRDI\" : true,\n \"daily\" + : 0.7233856232,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 4.7491999869759995,\n \"hasRDI\" : true,\n + \ \"daily\" : 23.745999934879997,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 34.17068481228,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.71335601535,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_a56de84559ae6e117a1270a31b143ea7\",\n + \ \"label\" : \"Fricken' Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/f7b/f7b5deae7b6d8222de0e01797d3358ab.JPG\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/1518-fricken-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/fricken-chicken-a56de84559ae6e117a1270a31b143ea7/chicken\",\n + \ \"yield\" : 3.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"5 boneless,skinless + chicken thighs,cut into 1-2 inch chunks\", \"2/3 cups flour\", \"1/2 teaspoon + salt\", \"1/2 teaspoon poultry seasoning\", \"1/4 teaspoon paprika\", \"2 + cups canola oil for frying\", \"1/2 stick butter\", \"1 cup hot sauce (i use + texas pete, but use your favorite\" ],\n \"ingredients\" : [ {\n \"text\" + : \"5 boneless,skinless chicken thighs,cut into 1-2 inch chunks\",\n \"weight\" + : 965.0\n }, {\n \"text\" : \"2/3 cups flour\",\n \"weight\" + : 83.33333333333333\n }, {\n \"text\" : \"1/2 teaspoon salt\",\n + \ \"weight\" : 3.0\n }, {\n \"text\" : \"1/2 teaspoon poultry + seasoning\",\n \"weight\" : 0.75\n }, {\n \"text\" : \"1/4 + teaspoon paprika\",\n \"weight\" : 0.575\n }, {\n \"text\" + : \"2 cups canola oil for frying\",\n \"weight\" : 436.0\n }, + {\n \"text\" : \"1/2 stick butter\",\n \"weight\" : 56.5\n }, + {\n \"text\" : \"1 cup hot sauce (i use texas pete, but use your favorite\",\n + \ \"weight\" : 225.6\n } ],\n \"calories\" : 3599.798883333333,\n + \ \"totalWeight\" : 1523.4970833333332,\n \"totalTime\" : 71.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 3599.798883333333,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 279.1058791666667,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 54.01398760416667,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.8024380625000003,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 147.8064977,\n \"unit\" : \"g\"\n },\n \"FAPU\" : {\n + \ \"label\" : \"Polyunsaturated\",\n \"quantity\" : 65.59493119166666,\n + \ \"unit\" : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" + : \"Carbs\",\n \"quantity\" : 68.37593416666665,\n \"unit\" + : \"g\"\n },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n + \ \"quantity\" : 3.212225,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR\" : {\n \"label\" : \"Sugars\",\n \"quantity\" + : 3.1744149999999998,\n \"unit\" : \"g\"\n },\n \"PROCNT\" + : {\n \"label\" : \"Protein\",\n \"quantity\" : 200.11137333333335,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1028.575,\n \"unit\" + : \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 6887.833166666665,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 120.44475,\n \"unit\" : \"mg\"\n },\n \"MG\" : {\n + \ \"label\" : \"Magnesium\",\n \"quantity\" : 255.39683333333338,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2781.130666666667,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 10.271985,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 16.177790833333336,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1916.714,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 487.21025000000003,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 168.843975,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.0371184999999998,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 2.1374403333333336,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 55.34359066666667,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.766914416666667,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 76.81441666666666,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 76.81441666666666,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 5.98255,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.8475000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 37.02333074999999,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 180.81635375,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 179.98994416666665,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 429.39366025641027,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 270.0699380208333,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.791978055555553,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 12.8489,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 400.2227466666667,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 342.85833333333335,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 286.9930486111111,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.044475,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 63.849208333333344,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 79.4608761904762,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 57.066583333333334,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 107.85193888888891,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 273.8162857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.13447222222222,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 281.40662499999996,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 69.14123333333332,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 125.73178431372551,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 276.71795333333336,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 238.34572083333336,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 19.203604166666665,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 99.70916666666666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.21187500000000004,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 185.11665374999995,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 226.02044218749998,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 279.1058791666667,\n \"hasRDI\" : true,\n \"daily\" : 429.39366025641027,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 54.01398760416667,\n \"hasRDI\" : true,\n \"daily\" + : 270.0699380208333,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.8024380625000003,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 147.8064977,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Polyunsaturated\",\n \"tag\" : \"FAPU\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.59493119166666,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 68.37593416666665,\n \"hasRDI\" : true,\n \"daily\" : 22.791978055555553,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 65.16370916666665,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.212225,\n \"hasRDI\" + : true,\n \"daily\" : 12.8489,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 3.1744149999999998,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 200.11137333333335,\n + \ \"hasRDI\" : true,\n \"daily\" : 400.2227466666667,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 1028.575,\n \"hasRDI\" : true,\n \"daily\" : 342.85833333333335,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 6887.833166666665,\n \"hasRDI\" : true,\n \"daily\" : 286.9930486111111,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 120.44475,\n \"hasRDI\" : true,\n \"daily\" : 12.044475,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 255.39683333333338,\n \"hasRDI\" : true,\n \"daily\" : 63.849208333333344,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 2781.130666666667,\n \"hasRDI\" : true,\n \"daily\" : 79.4608761904762,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.271985,\n + \ \"hasRDI\" : true,\n \"daily\" : 57.066583333333334,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 16.177790833333336,\n + \ \"hasRDI\" : true,\n \"daily\" : 107.85193888888891,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1916.714,\n + \ \"hasRDI\" : true,\n \"daily\" : 273.8162857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 487.21025000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 54.13447222222222,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 168.843975,\n + \ \"hasRDI\" : true,\n \"daily\" : 281.40662499999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.0371184999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.14123333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1374403333333336,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.73178431372551,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 55.34359066666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 276.71795333333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.766914416666667,\n + \ \"hasRDI\" : true,\n \"daily\" : 238.34572083333336,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 76.81441666666666,\n \"hasRDI\" : true,\n \"daily\" : 19.203604166666665,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 76.81441666666666,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.98255,\n + \ \"hasRDI\" : true,\n \"daily\" : 99.70916666666666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.8475000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.21187500000000004,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.02333074999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 185.11665374999995,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 180.81635375,\n + \ \"hasRDI\" : true,\n \"daily\" : 226.02044218749998,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_b065e1f8379ff06e3d3305c8b3583159\",\n + \ \"label\" : \"Chicken Piccata\",\n \"image\" : \"https://www.edamam.com/web-img/d30/d300b0711083364fc7be456a20c35f37.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"https://food52.com/recipes/1973-chicken-piccata\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-piccata-b065e1f8379ff06e3d3305c8b3583159/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1/2 cup flour\", \"4 chicken breasts, + cut in half and flattened\", \"Salt and pepper to taste\", \"4 tablespoons + vegetable oil\", \"1 shallot, minced\", \"1 garlic clove, minced\", \"1 cup + chicken broth\", \"1 lemon, cut in half\", \"3 tablespoons unsalted butter, + cut into 3 pieces\", \"2 tablespoons fresh parsley\", \"1/4 cup dry white + wine\" ],\n \"ingredients\" : [ {\n \"text\" : \"1/2 cup flour\",\n + \ \"weight\" : 62.5\n }, {\n \"text\" : \"4 chicken breasts, + cut in half and flattened\",\n \"weight\" : 696.0\n }, {\n \"text\" + : \"Salt and pepper to taste\",\n \"weight\" : 7.5693666666666655\n + \ }, {\n \"text\" : \"Salt and pepper to taste\",\n \"weight\" + : 3.7846833333333327\n }, {\n \"text\" : \"4 tablespoons vegetable + oil\",\n \"weight\" : 56.0\n }, {\n \"text\" : \"1 shallot, + minced\",\n \"weight\" : 59.111111111111114\n }, {\n \"text\" + : \"1 garlic clove, minced\",\n \"weight\" : 3.0\n }, {\n \"text\" + : \"1 cup chicken broth\",\n \"weight\" : 240.0\n }, {\n \"text\" + : \"1 lemon, cut in half\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"3 tablespoons unsalted butter, cut into 3 pieces\",\n \"weight\" + : 42.599999999999994\n }, {\n \"text\" : \"2 tablespoons fresh + parsley\",\n \"weight\" : 7.6\n }, {\n \"text\" : \"1/4 + cup dry white wine\",\n \"weight\" : 36.75\n } ],\n \"calories\" + : 2417.7225551666666,\n \"totalWeight\" : 1270.865446046861,\n \"totalTime\" + : 241.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2417.7225551666666,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 158.85689178777776,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 45.007856680888885,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.556748,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 77.3736553653889,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 25.411461473,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 76.37626165833333,\n \"unit\" : \"g\"\n + \ },\n \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 6.474380438888888,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 10.559976417777778,\n + \ \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 160.93360137611114,\n \"unit\" + : \"g\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 544.23,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 2942.536338064666,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 177.6264746623578,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 230.0073383493575,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 2268.7366247393047,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 8.458635935287976,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 6.861861827713528,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1419.903466333333,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 494.42186449999997,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 46.992888888888885,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.6767376246666665,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.8815791522222223,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 73.94038115272221,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.187589761833334,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 96.49867394444448,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 96.49867394444448,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.43882,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.423,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 15.394425151111113,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 135.15591550555556,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.88612775833333,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 244.39521813504268,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 225.0392834044444,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 25.45875388611111,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 25.897521755555555,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 321.8672027522223,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 181.41,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 122.60568075269441,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 17.76264746623578,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 57.501834587339374,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 64.821046421123,\n \"unit\" : \"%\"\n },\n + \ \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 46.992421862710984,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 45.74574551809019,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 202.84335233333329,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 54.935762722222215,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 78.32148148148147,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 45.11584164444444,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 51.85759718954249,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 369.7019057636111,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 209.3794880916667,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 24.12466848611112,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 40.647000000000006,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.85575,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 76.97212575555557,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 168.94489438194444,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 158.85689178777776,\n \"hasRDI\" + : true,\n \"daily\" : 244.39521813504268,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 45.007856680888885,\n \"hasRDI\" : true,\n \"daily\" : + 225.0392834044444,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.556748,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 77.3736553653889,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 25.411461473,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 76.37626165833333,\n \"hasRDI\" : true,\n \"daily\" : 25.45875388611111,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 69.90188121944445,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.474380438888888,\n \"hasRDI\" + : true,\n \"daily\" : 25.897521755555555,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 10.559976417777778,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 160.93360137611114,\n \"hasRDI\" : true,\n \"daily\" : 321.8672027522223,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 544.23,\n \"hasRDI\" : true,\n \"daily\" + : 181.41,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2942.536338064666,\n \"hasRDI\" : true,\n \"daily\" + : 122.60568075269441,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 177.6264746623578,\n \"hasRDI\" : true,\n \"daily\" + : 17.76264746623578,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 230.0073383493575,\n \"hasRDI\" : true,\n \"daily\" + : 57.501834587339374,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2268.7366247393047,\n \"hasRDI\" : true,\n \"daily\" + : 64.821046421123,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 8.458635935287976,\n \"hasRDI\" : true,\n \"daily\" + : 46.992421862710984,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 6.861861827713528,\n \"hasRDI\" : true,\n \"daily\" + : 45.74574551809019,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1419.903466333333,\n \"hasRDI\" : true,\n \"daily\" + : 202.84335233333329,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 494.42186449999997,\n \"hasRDI\" : true,\n + \ \"daily\" : 54.935762722222215,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 46.992888888888885,\n \"hasRDI\" : true,\n + \ \"daily\" : 78.32148148148147,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6767376246666665,\n \"hasRDI\" : true,\n + \ \"daily\" : 45.11584164444444,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.8815791522222223,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.85759718954249,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 73.94038115272221,\n + \ \"hasRDI\" : true,\n \"daily\" : 369.7019057636111,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.187589761833334,\n + \ \"hasRDI\" : true,\n \"daily\" : 209.3794880916667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 96.49867394444448,\n \"hasRDI\" : true,\n \"daily\" : 24.12466848611112,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 96.49867394444448,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.43882,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.647000000000006,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.423,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.85575,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 15.394425151111113,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.97212575555557,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 135.15591550555556,\n + \ \"hasRDI\" : true,\n \"daily\" : 168.94489438194444,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_0a0fe753e69c6df33fcbf35778c2098b\",\n + \ \"label\" : \"Chicken Cacciatore (Hunter Style Chicken)\",\n \"image\" + : \"https://www.edamam.com/web-img/a59/a59d259f1d798c64e6b52c1041bb9607.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://simplyrecipes.com/recipes/chicken_cacciatore_hunter_style_chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-cacciatore-hunter-style-chicken-0a0fe753e69c6df33fcbf35778c2098b/chicken\",\n + \ \"yield\" : 6.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"One 3 1/2 pound chicken, cut into + pieces\", \"2 Tbsp extra virgin olive oil\", \"1 cup thinly sliced onions\", + \"2 garlic cloves, thinly sliced\", \"Salt and freshly ground pepper\", \"1/3 + cup white wine\", \"2 cups peeled and chopped, firm ripe tomatoes (or canned + plum tomatoes in their juice)\" ],\n \"ingredients\" : [ {\n \"text\" + : \"One 3 1/2 pound chicken, cut into pieces\",\n \"weight\" : 1587.5732950000001\n + \ }, {\n \"text\" : \"2 Tbsp extra virgin olive oil\",\n \"weight\" + : 27.0\n }, {\n \"text\" : \"1 cup thinly sliced onions\",\n \"weight\" + : 115.0\n }, {\n \"text\" : \"2 garlic cloves, thinly sliced\",\n + \ \"weight\" : 6.0\n }, {\n \"text\" : \"Salt and freshly + ground pepper\",\n \"weight\" : 12.49543977\n }, {\n \"text\" + : \"Salt and freshly ground pepper\",\n \"weight\" : 6.247719885\n + \ }, {\n \"text\" : \"1/3 cup white wine\",\n \"weight\" + : 49.0\n }, {\n \"text\" : \"2 cups peeled and chopped, firm ripe + tomatoes (or canned plum tomatoes in their juice)\",\n \"weight\" : + 298.0\n } ],\n \"calories\" : 2724.15393420135,\n \"totalWeight\" + : 2099.3403065442644,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2724.15393420135,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 190.52488166261102,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 50.4808063906592,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.047163345382,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 87.21754070339017,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 38.05485209583231,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 29.586216866457505,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 7.237673130905,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 13.283785407264,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 205.7487084476515,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 809.66238045,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 4857.51149369477,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 220.7425115547735,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 277.37876203994267,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3057.502939338391,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.788915828709074,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 15.057470070150766,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1719.6796631002999,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 569.46231901495,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 68.4807974496,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.8320874418358,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.4083257045129998,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 75.49003609749155,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.27160530696535,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 133.05510281645002,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 133.05510281645002,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.34660450586,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.1590996812000003,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.815125808604,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 66.974765060745,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 136.2076967100675,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 293.1152025578631,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 252.404031953296,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 9.862072288819169,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 28.95069252362,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 411.49741689530293,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 269.88746015000004,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 202.39631223728207,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 22.074251155477352,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 69.34469050998567,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 87.35722683823975,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 65.49397682616151,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 100.38313380100512,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 245.66852330004286,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 63.27359100166112,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 114.13466241600001,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 55.472496122386666,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 82.8426885007647,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 377.45018048745777,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 213.58026534826752,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 33.263775704112504,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 55.77674176433333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.5397749203000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 44.07562904302,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 83.71845632593126,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 190.52488166261102,\n \"hasRDI\" + : true,\n \"daily\" : 293.1152025578631,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 50.4808063906592,\n \"hasRDI\" : true,\n \"daily\" : 252.404031953296,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 1.047163345382,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 87.21754070339017,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 38.05485209583231,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Carbs\",\n \"tag\" : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n + \ \"total\" : 29.586216866457505,\n \"hasRDI\" : true,\n \"daily\" + : 9.862072288819169,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Carbs (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.348543735552504,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 7.237673130905,\n \"hasRDI\" + : true,\n \"daily\" : 28.95069252362,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 13.283785407264,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 205.7487084476515,\n \"hasRDI\" : true,\n \"daily\" : 411.49741689530293,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 809.66238045,\n \"hasRDI\" : true,\n \"daily\" + : 269.88746015000004,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4857.51149369477,\n \"hasRDI\" : true,\n \"daily\" + : 202.39631223728207,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 220.7425115547735,\n \"hasRDI\" : true,\n \"daily\" + : 22.074251155477352,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 277.37876203994267,\n \"hasRDI\" : true,\n \"daily\" + : 69.34469050998567,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3057.502939338391,\n \"hasRDI\" : true,\n \"daily\" + : 87.35722683823975,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.788915828709074,\n \"hasRDI\" : true,\n \"daily\" + : 65.49397682616151,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 15.057470070150766,\n \"hasRDI\" : true,\n \"daily\" + : 100.38313380100512,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1719.6796631002999,\n \"hasRDI\" : true,\n \"daily\" + : 245.66852330004286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 569.46231901495,\n \"hasRDI\" : true,\n + \ \"daily\" : 63.27359100166112,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 68.4807974496,\n \"hasRDI\" : true,\n + \ \"daily\" : 114.13466241600001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.8320874418358,\n \"hasRDI\" : true,\n + \ \"daily\" : 55.472496122386666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.4083257045129998,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.8426885007647,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 75.49003609749155,\n + \ \"hasRDI\" : true,\n \"daily\" : 377.45018048745777,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.27160530696535,\n + \ \"hasRDI\" : true,\n \"daily\" : 213.58026534826752,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.05510281645002,\n \"hasRDI\" : true,\n \"daily\" : 33.263775704112504,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 133.05510281645002,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.34660450586,\n + \ \"hasRDI\" : true,\n \"daily\" : 55.77674176433333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.1590996812000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.5397749203000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.815125808604,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.07562904302,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.974765060745,\n + \ \"hasRDI\" : true,\n \"daily\" : 83.71845632593126,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_e1314ccff96e0b31cb723538b2e72168\",\n + \ \"label\" : \"Circassian Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/6fb/6fb574024daf1ea1f3b6bb1d63ca1202.jpg\",\n + \ \"source\" : \"Simply Recipes\",\n \"url\" : \"http://www.simplyrecipes.com/recipes/circassian_chicken/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/circassian-chicken-e1314ccff96e0b31cb723538b2e72168/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Alcohol-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"1 pound skinless chicken breasts\", \"4 tablespoons olive or walnut + oil\", \"4 teaspoons paprika\", \"1 ½ cups chopped walnuts\", \"3 chopped + garlic cloves\", \"2 tablespoons chopped green onions\", \"1 teaspoon cayenne, + or to taste\", \"2 tablespoons chopped parsley\", \"2 slices of bread, crusts + removed\", \"1 quart chicken stock\", \"Salt and black pepper\", \"The juice + of a lemon\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 pound + skinless chicken breasts\",\n \"weight\" : 453.59237\n }, {\n + \ \"text\" : \"4 tablespoons olive or walnut oil\",\n \"weight\" + : 54.4\n }, {\n \"text\" : \"4 teaspoons paprika\",\n \"weight\" + : 9.2\n }, {\n \"text\" : \"1 ½ cups chopped walnuts\",\n \"weight\" + : 175.5\n }, {\n \"text\" : \"3 chopped garlic cloves\",\n \"weight\" + : 9.0\n }, {\n \"text\" : \"2 tablespoons chopped green onions\",\n + \ \"weight\" : 12.0\n }, {\n \"text\" : \"1 teaspoon cayenne, + or to taste\",\n \"weight\" : 1.8\n }, {\n \"text\" : \"2 + tablespoons chopped parsley\",\n \"weight\" : 7.6\n }, {\n \"text\" + : \"2 slices of bread, crusts removed\",\n \"weight\" : 58.0\n }, + {\n \"text\" : \"1 quart chicken stock\",\n \"weight\" : 960.0\n + \ }, {\n \"text\" : \"Salt and black pepper\",\n \"weight\" + : 10.794554219999998\n }, {\n \"text\" : \"Salt and black pepper\",\n + \ \"weight\" : 5.397277109999999\n }, {\n \"text\" : \"The + juice of a lemon\",\n \"weight\" : 58.0\n } ],\n \"calories\" + : 2755.4580095461006,\n \"totalWeight\" : 1810.4355074811215,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2755.4580095461006,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 196.101401327786,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 22.162707140471195,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 0.0468314659,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 37.423482307142905,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 123.0743524743578,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 105.36430871184498,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 21.520211108829997,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 26.232492573503997,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 162.93009034172903,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 359.92243010000004,\n \"unit\" : \"mg\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 4196.304584561362,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 400.1765625863692,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 510.2866660618112,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3909.1849974215893,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.604318715605704,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.32207157398012,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1993.5894459337999,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 347.19373071970006,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 51.6875,\n \"unit\" : \"mg\"\n },\n \"THIA\" : {\n + \ \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.6979608870787999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.206813593698,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 65.41285939736731,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 5.699537197090103,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 351.4488504087,\n \"unit\" : + \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 331.7288504087,\n \"unit\" : + \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic acid\",\n + \ \"quantity\" : 11.6,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 0.952543977,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 4.535923700000001,\n + \ \"unit\" : \"IU\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 7.8718889539440005,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 185.86902736907,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 137.77290047730503,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 301.6944635812092,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 110.81353570235596,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 35.121436237281664,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 86.08084443531999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 325.86018068345805,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 119.97414336666668,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 174.84602435672343,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 40.01765625863692,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 127.5716665154528,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 111.69099992633112,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 81.13510397558724,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 75.48047715986746,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 284.79849227625715,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 38.57708119107778,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 86.14583333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 113.19739247192,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 129.81256433517646,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 327.06429698683655,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 284.97685985450516,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 87.862212602175,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 15.87573295,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.1339809250000001,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 39.35944476972,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 232.33628421133753,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 196.101401327786,\n \"hasRDI\" : true,\n \"daily\" + : 301.6944635812092,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 22.162707140471195,\n \"hasRDI\" + : true,\n \"daily\" : 110.81353570235596,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.0468314659,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 37.423482307142905,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 123.0743524743578,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 105.36430871184498,\n \"hasRDI\" : true,\n \"daily\" : 35.121436237281664,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 83.84409760301499,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 21.520211108829997,\n \"hasRDI\" + : true,\n \"daily\" : 86.08084443531999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 26.232492573503997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 162.93009034172903,\n \"hasRDI\" : true,\n \"daily\" : 325.86018068345805,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 359.92243010000004,\n \"hasRDI\" : true,\n \"daily\" + : 119.97414336666668,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 4196.304584561362,\n \"hasRDI\" : true,\n \"daily\" + : 174.84602435672343,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 400.1765625863692,\n \"hasRDI\" : true,\n \"daily\" + : 40.01765625863692,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 510.2866660618112,\n \"hasRDI\" : true,\n \"daily\" + : 127.5716665154528,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3909.1849974215893,\n \"hasRDI\" : true,\n \"daily\" + : 111.69099992633112,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 14.604318715605704,\n \"hasRDI\" : true,\n \"daily\" + : 81.13510397558724,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.32207157398012,\n \"hasRDI\" : true,\n \"daily\" + : 75.48047715986746,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1993.5894459337999,\n \"hasRDI\" : true,\n \"daily\" + : 284.79849227625715,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 347.19373071970006,\n \"hasRDI\" : true,\n + \ \"daily\" : 38.57708119107778,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 51.6875,\n \"hasRDI\" : true,\n \"daily\" + : 86.14583333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.6979608870787999,\n \"hasRDI\" : true,\n + \ \"daily\" : 113.19739247192,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.206813593698,\n \"hasRDI\" + : true,\n \"daily\" : 129.81256433517646,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" : \"NIA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 65.41285939736731,\n + \ \"hasRDI\" : true,\n \"daily\" : 327.06429698683655,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.699537197090103,\n + \ \"hasRDI\" : true,\n \"daily\" : 284.97685985450516,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 351.4488504087,\n \"hasRDI\" : true,\n \"daily\" : 87.862212602175,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 331.7288504087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 11.6,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.952543977,\n + \ \"hasRDI\" : true,\n \"daily\" : 15.87573295,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.535923700000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1339809250000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.8718889539440005,\n + \ \"hasRDI\" : true,\n \"daily\" : 39.35944476972,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 185.86902736907,\n + \ \"hasRDI\" : true,\n \"daily\" : 232.33628421133753,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_bb158d7286178b1c63d42aded1ec1b2c\",\n + \ \"label\" : \"Chicken with Rustic Sauce\",\n \"image\" : \"https://www.edamam.com/web-img/4cb/4cb254198c92acc77e03c00889162faa.png\",\n + \ \"source\" : \"Ruhlman\",\n \"url\" : \"http://ruhlman.com/2012/11/le-creuset-giveaway-roasting-technique-video-event/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-with-rustic-sauce-bb158d7286178b1c63d42aded1ec1b2c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"One 3- or 4-pound chicken\", \"Kosher + salt\", \"1 lemon and/or 1 medium onion, quartered (optional)\", \"1/2 spanish + onion, thinly sliced\", \"1 carrot, thinly sliced\", \"1/2 cup white wine\", + \"Squeeze of lemon (optional)\", \"2 teaspoons dijon mustard (optional)\" + ],\n \"ingredients\" : [ {\n \"text\" : \"One 3- or 4-pound chicken\",\n + \ \"weight\" : 920.0\n }, {\n \"text\" : \"Kosher salt\",\n + \ \"weight\" : 6.702\n }, {\n \"text\" : \"1/2 spanish onion, + thinly sliced\",\n \"weight\" : 62.5\n }, {\n \"text\" + : \"1 carrot, thinly sliced\",\n \"weight\" : 61.0\n }, {\n \"text\" + : \"1/2 cup white wine\",\n \"weight\" : 73.5\n } ],\n \"calories\" + : 2088.2799999999997,\n \"totalWeight\" : 1121.9158784250994,\n \"totalTime\" + : 290.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2088.28,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 138.76090000000002,\n \"unit\" : \"g\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 39.70082,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.8924000000000001,\n \"unit\" + : \"g\"\n },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 57.42466500000001,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 29.797995000000007,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 13.5923,\n \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n + \ \"label\" : \"Fiber\",\n \"quantity\" : 2.7705,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 6.247,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 172.42625,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : + {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 690.0000000000001,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2597.56116,\n \"unit\" : + \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 143.49981082202387,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 204.96915878425102,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 2077.8282702740084,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.808922398802828,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.397765878425101,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1405.105,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 886.55,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 22.944000000000003,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.624685,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.16728,\n \"unit\" : \"mg\"\n },\n + \ \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" + : 63.320710000000005,\n \"unit\" : \"mg\"\n },\n \"VITB6A\" + : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" : 3.4159300000000004,\n + \ \"unit\" : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" + : \"Folate equivalent (total)\",\n \"quantity\" : 79.4,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 79.4,\n \"unit\" : \"µg\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 2.8520000000000003,\n \"unit\" : \"µg\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 1.8400000000000003,\n + \ \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 3.1751000000000005,\n \"unit\" + : \"mg\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 22.396,\n \"unit\" : \"µg\"\n }\n + \ },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 104.41400000000002,\n \"unit\" + : \"%\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 213.4783076923077,\n \"unit\" : \"%\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 198.5041,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 4.530766666666667,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 11.082,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 344.8525,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 230.00000000000006,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 108.23171500000001,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 14.349981082202389,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 51.242289696062755,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 59.36652200782881,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 48.93845777112682,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 82.65177252283401,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 200.7292857142857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 98.50555555555556,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 38.24,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 41.64566666666667,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 68.66352941176471,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 316.60355000000004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 170.7965,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 19.85,\n \"unit\" : \"%\"\n },\n + \ \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n \"quantity\" + : 47.53333333333334,\n \"unit\" : \"%\"\n },\n \"VITD\" + : {\n \"label\" : \"Vitamin D\",\n \"quantity\" : 0.4600000000000001,\n + \ \"unit\" : \"%\"\n },\n \"TOCPHA\" : {\n \"label\" + : \"Vitamin E\",\n \"quantity\" : 15.875500000000002,\n \"unit\" + : \"%\"\n },\n \"VITK1\" : {\n \"label\" : \"Vitamin + K\",\n \"quantity\" : 27.994999999999997,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 138.76090000000002,\n \"hasRDI\" : true,\n \"daily\" : 213.4783076923077,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 39.70082,\n \"hasRDI\" : true,\n \"daily\" + : 198.5041,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 0.8924000000000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 57.42466500000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 29.797995000000007,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 13.5923,\n \"hasRDI\" : true,\n \"daily\" : 4.530766666666667,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 10.8218,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 2.7705,\n \"hasRDI\" : true,\n \"daily\" + : 11.082,\n \"unit\" : \"g\"\n }, {\n \"label\" : + \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" : + \"sugarContent\",\n \"total\" : 6.247,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n } ]\n }, {\n \"label\" + : \"Protein\",\n \"tag\" : \"PROCNT\",\n \"schemaOrgTag\" : + \"proteinContent\",\n \"total\" : 172.42625,\n \"hasRDI\" : + true,\n \"daily\" : 344.8525,\n \"unit\" : \"g\"\n }, {\n + \ \"label\" : \"Cholesterol\",\n \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" + : \"cholesterolContent\",\n \"total\" : 690.0000000000001,\n \"hasRDI\" + : true,\n \"daily\" : 230.00000000000006,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" + : \"sodiumContent\",\n \"total\" : 2597.56116,\n \"hasRDI\" + : true,\n \"daily\" : 108.23171500000001,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Calcium\",\n \"tag\" : \"CA\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 143.49981082202387,\n + \ \"hasRDI\" : true,\n \"daily\" : 14.349981082202389,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 204.96915878425102,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.242289696062755,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2077.8282702740084,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.36652200782881,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 8.808922398802828,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.93845777112682,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.397765878425101,\n + \ \"hasRDI\" : true,\n \"daily\" : 82.65177252283401,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1405.105,\n + \ \"hasRDI\" : true,\n \"daily\" : 200.7292857142857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 886.55,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.50555555555556,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 22.944000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.24,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.624685,\n + \ \"hasRDI\" : true,\n \"daily\" : 41.64566666666667,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.16728,\n + \ \"hasRDI\" : true,\n \"daily\" : 68.66352941176471,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.320710000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 316.60355000000004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.4159300000000004,\n + \ \"hasRDI\" : true,\n \"daily\" : 170.7965,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 79.4,\n \"hasRDI\" : true,\n \"daily\" : 19.85,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n \"tag\" + : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.4,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" : + \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n \"tag\" : + \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n }, {\n + \ \"label\" : \"Vitamin B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.8520000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 47.53333333333334,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.8400000000000003,\n \"hasRDI\" : true,\n + \ \"daily\" : 0.4600000000000001,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.1751000000000005,\n \"hasRDI\" : true,\n + \ \"daily\" : 15.875500000000002,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Vitamin K\",\n \"tag\" : \"VITK1\",\n \"schemaOrgTag\" + : null,\n \"total\" : 22.396,\n \"hasRDI\" : true,\n \"daily\" + : 27.994999999999997,\n \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" + : false,\n \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" + : \"http://www.edamam.com/ontologies/edamam.owl#recipe_090bf7a638ee7891fc85d1ca3e53ef24\",\n + \ \"label\" : \"Honey Glazed Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8d6/8d6eb1d64139f82085d3cfb4a6f6133d.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3109/honey-glazed-chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/honey-glazed-chicken-090bf7a638ee7891fc85d1ca3e53ef24/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 chicken breasts\", \"1.0 tbsp dark + soy sauce\", \"1.0 tbsp honey\", \"Half a lemon\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 chicken breasts\",\n \"weight\" : 348.0\n + \ }, {\n \"text\" : \"1.0 tbsp dark soy sauce\",\n \"weight\" + : 16.0\n }, {\n \"text\" : \"1.0 tbsp honey\",\n \"weight\" + : 21.0\n }, {\n \"text\" : \"Half a lemon\",\n \"weight\" + : 28.0\n } ],\n \"calories\" : 679.0,\n \"totalWeight\" : 413.0,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 679.0,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 32.3652,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 9.2794,\n \"unit\" : \"g\"\n },\n + \ \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.3654,\n \"unit\" : \"g\"\n },\n \"FAMS\" : {\n + \ \"label\" : \"Monounsaturated\",\n \"quantity\" : 13.31076,\n + \ \"unit\" : \"g\"\n },\n \"FAPU\" : {\n \"label\" + : \"Polyunsaturated\",\n \"quantity\" : 6.8878,\n \"unit\" + : \"g\"\n },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n + \ \"quantity\" : 20.7024,\n \"unit\" : \"g\"\n },\n + \ \"FIBTG\" : {\n \"label\" : \"Fiber\",\n \"quantity\" + : 0.9540000000000001,\n \"unit\" : \"g\"\n },\n \"SUGAR\" + : {\n \"label\" : \"Sugars\",\n \"quantity\" : 18.0092,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR.added\" : {\n \"label\" + : \"Sugars, added\",\n \"quantity\" : 17.2452,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 74.23140000000002,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.72,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 1099.5199999999998,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 52.1,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 101.5,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 884.76,\n \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 3.0634,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 2.9862,\n \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 637.4,\n \"unit\" : \"mg\"\n + \ },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n + \ \"quantity\" : 83.8,\n \"unit\" : \"µg\"\n },\n + \ \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 14.945000000000002,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 0.23571999999999999,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 0.33577999999999997,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 34.884609999999995,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 1.8955199999999999,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 19.660000000000004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 19.660000000000004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.1832,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 1.3920000000000001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 0.9816000000000001,\n + \ \"unit\" : \"mg\"\n }\n },\n \"totalDaily\" : {\n + \ \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 33.95,\n \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 49.79261538461538,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 46.397000000000006,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 6.900800000000001,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.8160000000000003,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 148.46280000000004,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 74.24,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 45.81333333333332,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 5.21,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 25.375,\n \"unit\" : \"%\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 25.27885714285714,\n \"unit\" : \"%\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 17.018888888888892,\n + \ \"unit\" : \"%\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 19.908,\n \"unit\" : \"%\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 91.05714285714286,\n \"unit\" : \"%\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 9.311111111111112,\n + \ \"unit\" : \"%\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 24.90833333333334,\n \"unit\" + : \"%\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 15.714666666666666,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 19.75176470588235,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 174.42304999999996,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 94.776,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 4.915000000000001,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 19.720000000000002,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.34800000000000003,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 4.908,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 32.3652,\n \"hasRDI\" : true,\n + \ \"daily\" : 49.79261538461538,\n \"unit\" : \"g\",\n \"sub\" + : [ {\n \"label\" : \"Saturated\",\n \"tag\" : \"FASAT\",\n + \ \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 9.2794,\n \"hasRDI\" : true,\n \"daily\" : 46.397000000000006,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.3654,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 13.31076,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.8878,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 20.7024,\n \"hasRDI\" : true,\n \"daily\" : 6.900800000000001,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.7484,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.9540000000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 3.8160000000000003,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 18.0092,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 17.2452,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 74.23140000000002,\n + \ \"hasRDI\" : true,\n \"daily\" : 148.46280000000004,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 222.72,\n \"hasRDI\" : true,\n \"daily\" : 74.24,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" : \"NA\",\n + \ \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" : 1099.5199999999998,\n + \ \"hasRDI\" : true,\n \"daily\" : 45.81333333333332,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 52.1,\n \"hasRDI\" + : true,\n \"daily\" : 5.21,\n \"unit\" : \"mg\"\n }, {\n + \ \"label\" : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" + : null,\n \"total\" : 101.5,\n \"hasRDI\" : true,\n \"daily\" + : 25.375,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 884.76,\n \"hasRDI\" : true,\n \"daily\" : 25.27885714285714,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.0634,\n + \ \"hasRDI\" : true,\n \"daily\" : 17.018888888888892,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.9862,\n \"hasRDI\" + : true,\n \"daily\" : 19.908,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 637.4,\n \"hasRDI\" : true,\n \"daily\" + : 91.05714285714286,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 83.8,\n \"hasRDI\" : true,\n \"daily\" + : 9.311111111111112,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" : + null,\n \"total\" : 14.945000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 24.90833333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.23571999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 15.714666666666666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.33577999999999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.75176470588235,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 34.884609999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 174.42304999999996,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.8955199999999999,\n + \ \"hasRDI\" : true,\n \"daily\" : 94.776,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 19.660000000000004,\n \"hasRDI\" : true,\n \"daily\" : 4.915000000000001,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 19.660000000000004,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.1832,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.720000000000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.3920000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.34800000000000003,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.9816000000000001,\n + \ \"hasRDI\" : true,\n \"daily\" : 4.908,\n \"unit\" : + \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" : + \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"µg\"\n } ]\n + \ },\n \"bookmarked\" : false,\n \"bought\" : false\n }, {\n \"recipe\" + : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_6c718af3cc9b7f7d9e6a7b4b5f4fe121\",\n + \ \"label\" : \"Chicken Marsala\",\n \"image\" : \"https://www.edamam.com/web-img/04e/04e6a0ad3ff061a3cdfe72829eee2fb3.jpg\",\n + \ \"source\" : \"Chowhound\",\n \"url\" : \"https://www.chowhound.com/recipes/chicken-marsala-31744\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-marsala-6c718af3cc9b7f7d9e6a7b4b5f4fe121/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2/3 cup all-purpose flour\", \"Kosher + salt\", \"Freshly ground black pepper\", \"4 skinless, boneless, chicken breasts + (about 1 1/2 pounds), tenders removed\", \"1/4 cup olive oil\", \"4 ounces + thinly sliced prosciutto, cut crosswise into thin strips\", \"8 ounces cremini + mushrooms, stemmed and halved\", \"1/2 cup Marsala wine\", \"1/2 cup chicken + broth\", \"2 tablespoons unsalted butter (1/4 stick)\", \"1/4 cup flat-leaf + parsley leaves\" ],\n \"ingredients\" : [ {\n \"text\" : \"2/3 + cup all-purpose flour\",\n \"weight\" : 83.33333333333333\n }, + {\n \"text\" : \"Kosher salt\",\n \"weight\" : 8.634996995\n + \ }, {\n \"text\" : \"Freshly ground black pepper\",\n \"weight\" + : 4.3174984975\n }, {\n \"text\" : \"4 skinless, boneless, chicken + breasts (about 1 1/2 pounds), tenders removed\",\n \"weight\" : 680.388555\n + \ }, {\n \"text\" : \"1/4 cup olive oil\",\n \"weight\" + : 54.0\n }, {\n \"text\" : \"4 ounces thinly sliced prosciutto, + cut crosswise into thin strips\",\n \"weight\" : 113.3980925\n }, + {\n \"text\" : \"8 ounces cremini mushrooms, stemmed and halved\",\n + \ \"weight\" : 226.796185\n }, {\n \"text\" : \"1/2 cup + Marsala wine\",\n \"weight\" : 118.0\n }, {\n \"text\" + : \"1/2 cup chicken broth\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"2 tablespoons unsalted butter (1/4 stick)\",\n \"weight\" : 28.25\n + \ }, {\n \"text\" : \"1/4 cup flat-leaf parsley leaves\",\n \"weight\" + : 15.0\n } ],\n \"calories\" : 2347.858847317058,\n \"totalWeight\" + : 1443.4836643308333,\n \"totalTime\" : 30.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2347.858847317058,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 139.43976266868518,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 40.224933133551865,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 1.4975613862000001,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 71.31458009282154,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 19.06723123902172,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 84.85718718831791,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 5.1981042298675,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 7.126176372384,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 163.53253174122364,\n \"unit\" : \"g\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 492.07510491,\n \"unit\" : \"mg\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 3605.219862061167,\n \"unit\" : \"mg\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 184.72383373392498,\n + \ \"unit\" : \"mg\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 236.40014653905834,\n \"unit\" + : \"mg\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 3271.6472590484423,\n \"unit\" : \"mg\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 12.406349583123916,\n \"unit\" : \"mg\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 11.177767751703582,\n + \ \"unit\" : \"mg\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 1748.16387233605,\n \"unit\" + : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 389.38032715432496,\n \"unit\" : \"µg\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 20.189999999999998,\n \"unit\" : \"mg\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 1.9223814569889668,\n + \ \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 2.421272071712167,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 74.22439743127143,\n \"unit\" : + \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 3.8110933524943915,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 358.20285937957505,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 139.86952604624167,\n \"unit\" + : \"µg\"\n },\n \"FOLAC\" : {\n \"label\" : \"Folic + acid\",\n \"quantity\" : 128.33333333333331,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 3.1233812686,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 3.8483723935,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.599302207340667,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 288.0432450404075,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 117.3929423658529,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 214.5227117979772,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 201.1246656677593,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 28.28572906277264,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 20.79241691947,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 327.0650634824473,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 164.02503497,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.21749425254865,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 18.4723833733925,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 59.100036634764585,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 93.47563597281264,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 68.92416435068841,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 74.51845167802388,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 249.73769604800714,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 43.264480794925,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 33.65,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 128.15876379926445,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 142.42776892424513,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 371.12198715635714,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 190.55466762471957,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 89.55071484489376,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 52.05635447666668,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.962093098375,\n \"unit\" : \"%\"\n },\n + \ \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n \"quantity\" + : 52.99651103670334,\n \"unit\" : \"%\"\n },\n \"VITK1\" + : {\n \"label\" : \"Vitamin K\",\n \"quantity\" : 360.0540563005094,\n + \ \"unit\" : \"%\"\n }\n },\n \"digest\" : [ {\n + \ \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 139.43976266868518,\n \"hasRDI\" + : true,\n \"daily\" : 214.5227117979772,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 40.224933133551865,\n \"hasRDI\" : true,\n \"daily\" : + 201.1246656677593,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 1.4975613862000001,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 71.31458009282154,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 19.06723123902172,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 84.85718718831791,\n \"hasRDI\" : true,\n \"daily\" : 28.28572906277264,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 79.65908295845041,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 5.1981042298675,\n \"hasRDI\" + : true,\n \"daily\" : 20.79241691947,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.126176372384,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 163.53253174122364,\n \"hasRDI\" : true,\n \"daily\" : 327.0650634824473,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 492.07510491,\n \"hasRDI\" : true,\n \"daily\" + : 164.02503497,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3605.219862061167,\n \"hasRDI\" : true,\n \"daily\" + : 150.21749425254865,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 184.72383373392498,\n \"hasRDI\" : true,\n \"daily\" + : 18.4723833733925,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 236.40014653905834,\n \"hasRDI\" : true,\n \"daily\" + : 59.100036634764585,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3271.6472590484423,\n \"hasRDI\" : true,\n \"daily\" + : 93.47563597281264,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 12.406349583123916,\n \"hasRDI\" : true,\n \"daily\" + : 68.92416435068841,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.177767751703582,\n \"hasRDI\" : true,\n \"daily\" + : 74.51845167802388,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1748.16387233605,\n \"hasRDI\" : true,\n \"daily\" + : 249.73769604800714,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 389.38032715432496,\n \"hasRDI\" : true,\n + \ \"daily\" : 43.264480794925,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 20.189999999999998,\n \"hasRDI\" : true,\n + \ \"daily\" : 33.65,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.9223814569889668,\n \"hasRDI\" : true,\n + \ \"daily\" : 128.15876379926445,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.421272071712167,\n + \ \"hasRDI\" : true,\n \"daily\" : 142.42776892424513,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 74.22439743127143,\n + \ \"hasRDI\" : true,\n \"daily\" : 371.12198715635714,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8110933524943915,\n + \ \"hasRDI\" : true,\n \"daily\" : 190.55466762471957,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 358.20285937957505,\n \"hasRDI\" : true,\n \"daily\" : 89.55071484489376,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 139.86952604624167,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 128.33333333333331,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n + \ \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.1233812686,\n \"hasRDI\" : true,\n \"daily\" : 52.05635447666668,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n + \ \"tag\" : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.8483723935,\n \"hasRDI\" : true,\n \"daily\" : 0.962093098375,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n + \ \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 10.599302207340667,\n \"hasRDI\" : true,\n \"daily\" : 52.99651103670334,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 288.0432450404075,\n \"hasRDI\" : true,\n \"daily\" : 360.0540563005094,\n + \ \"unit\" : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n + \ \"bought\" : false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_24443da17a9c7061763c278093eb044e\",\n + \ \"label\" : \"Tangy Chicken Breasts\",\n \"image\" : \"https://www.edamam.com/web-img/e64/e64377bf29d1798e517500a649807c11.jpg\",\n + \ \"source\" : \"BBC Good Food\",\n \"url\" : \"http://www.bbcgoodfood.com/recipes/3180/\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/tangy-chicken-breasts-24443da17a9c7061763c278093eb044e/chicken\",\n + \ \"yield\" : 2.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"3.0 tbsp barbecue + sauce\", \"50.0g cheddar , grated\", \"2 rashers streaky bacon\", \"2 skinless + chicken breasts\" ],\n \"ingredients\" : [ {\n \"text\" : \"3.0 + tbsp barbecue sauce\",\n \"weight\" : 51.0\n }, {\n \"text\" + : \"50.0g cheddar , grated\",\n \"weight\" : 50.0\n }, {\n \"text\" + : \"2 rashers streaky bacon\",\n \"weight\" : 58.0\n }, {\n \"text\" + : \"2 skinless chicken breasts\",\n \"weight\" : 544.0\n } ],\n + \ \"calories\" : 1185.38,\n \"totalWeight\" : 703.0,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 1185.38,\n \"unit\" : \"kcal\"\n + \ },\n \"FAT\" : {\n \"label\" : \"Fat\",\n \"quantity\" + : 54.50429999999999,\n \"unit\" : \"g\"\n },\n \"FASAT\" + : {\n \"label\" : \"Saturated\",\n \"quantity\" : 20.48135,\n + \ \"unit\" : \"g\"\n },\n \"FATRN\" : {\n \"label\" + : \"Trans\",\n \"quantity\" : 0.70472,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 18.118599999999997,\n \"unit\" : \"g\"\n + \ },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 6.81789,\n \"unit\" : \"g\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 22.200100000000003,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 0.459,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 17.6724,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 142.1578,\n \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n + \ \"label\" : \"Cholesterol\",\n \"quantity\" : 486.4,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 1474.53,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 384.42999999999995,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 179.41000000000003,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 2088.12,\n \"unit\" : + \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 2.657,\n \"unit\" : \"mg\"\n },\n + \ \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 6.185300000000001,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 1488.94,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 181.57000000000002,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 0.306,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 0.69616,\n \"unit\" : \"mg\"\n },\n \"RIBF\" : {\n + \ \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : 1.2544,\n + \ \"unit\" : \"mg\"\n },\n \"NIA\" : {\n \"label\" + : \"Niacin (B3)\",\n \"quantity\" : 54.88073000000001,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 4.628870000000001,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 62.980000000000004,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 62.980000000000004,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 1.8724,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.532,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" : {\n + \ \"label\" : \"Vitamin E\",\n \"quantity\" : 4.093800000000001,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 3.456,\n \"unit\" : \"µg\"\n + \ }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" : {\n + \ \"label\" : \"Energy\",\n \"quantity\" : 59.269000000000005,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 83.85276923076923,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 102.40674999999999,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 7.400033333333334,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 1.8359999999999999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 284.3156,\n \"unit\" : \"%\"\n + \ },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 162.13333333333333,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 61.43875,\n \"unit\" : \"%\"\n },\n \"CA\" : {\n + \ \"label\" : \"Calcium\",\n \"quantity\" : 38.44299999999999,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 44.852500000000006,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 59.66057142857143,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 14.761111111111111,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 41.23533333333334,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 212.7057142857143,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 20.174444444444447,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 0.51,\n \"unit\" : \"%\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 46.410666666666664,\n \"unit\" + : \"%\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 73.78823529411764,\n \"unit\" : + \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 274.40365,\n \"unit\" : \"%\"\n },\n + \ \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n \"quantity\" + : 231.44350000000006,\n \"unit\" : \"%\"\n },\n \"FOLDFE\" + : {\n \"label\" : \"Folate equivalent (total)\",\n \"quantity\" + : 15.745,\n \"unit\" : \"%\"\n },\n \"VITB12\" : {\n + \ \"label\" : \"Vitamin B12\",\n \"quantity\" : 31.206666666666667,\n + \ \"unit\" : \"%\"\n },\n \"VITD\" : {\n \"label\" + : \"Vitamin D\",\n \"quantity\" : 0.133,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 20.469,\n \"unit\" : \"%\"\n },\n + \ \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n \"quantity\" + : 4.32,\n \"unit\" : \"%\"\n }\n },\n \"digest\" + : [ {\n \"label\" : \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" + : \"fatContent\",\n \"total\" : 54.50429999999999,\n \"hasRDI\" + : true,\n \"daily\" : 83.85276923076923,\n \"unit\" : \"g\",\n + \ \"sub\" : [ {\n \"label\" : \"Saturated\",\n \"tag\" + : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n \"total\" + : 20.48135,\n \"hasRDI\" : true,\n \"daily\" : 102.40674999999999,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Trans\",\n + \ \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : \"transFatContent\",\n + \ \"total\" : 0.70472,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n + \ \"tag\" : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" + : 18.118599999999997,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n + \ \"tag\" : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" + : 6.81789,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 22.200100000000003,\n \"hasRDI\" : true,\n \"daily\" : 7.400033333333334,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 21.741100000000003,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 0.459,\n \"hasRDI\" : + true,\n \"daily\" : 1.8359999999999999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 17.6724,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 142.1578,\n \"hasRDI\" : true,\n \"daily\" : 284.3156,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 486.4,\n \"hasRDI\" : true,\n \"daily\" : 162.13333333333333,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 1474.53,\n \"hasRDI\" : true,\n \"daily\" : 61.43875,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n \"tag\" : + \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" : 384.42999999999995,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.44299999999999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n \"tag\" + : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" : 179.41000000000003,\n + \ \"hasRDI\" : true,\n \"daily\" : 44.852500000000006,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n \"tag\" + : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" : 2088.12,\n + \ \"hasRDI\" : true,\n \"daily\" : 59.66057142857143,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" : \"FE\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 2.657,\n \"hasRDI\" + : true,\n \"daily\" : 14.761111111111111,\n \"unit\" : \"mg\"\n + \ }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" + : null,\n \"total\" : 6.185300000000001,\n \"hasRDI\" : true,\n + \ \"daily\" : 41.23533333333334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1488.94,\n \"hasRDI\" : true,\n \"daily\" + : 212.7057142857143,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 181.57000000000002,\n \"hasRDI\" : true,\n + \ \"daily\" : 20.174444444444447,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.306,\n \"hasRDI\" : true,\n \"daily\" + : 0.51,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Thiamin + (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.69616,\n \"hasRDI\" : true,\n \"daily\" : 46.410666666666664,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"tag\" : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1.2544,\n \"hasRDI\" : true,\n \"daily\" : 73.78823529411764,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n + \ \"tag\" : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 54.88073000000001,\n \"hasRDI\" : true,\n \"daily\" : 274.40365,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n + \ \"tag\" : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4.628870000000001,\n \"hasRDI\" : true,\n \"daily\" : 231.44350000000006,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Folate equivalent + (total)\",\n \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 62.980000000000004,\n \"hasRDI\" : true,\n \"daily\" + : 15.745,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate + (food)\",\n \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 62.980000000000004,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic + acid\",\n \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 0.0,\n \"hasRDI\" : false,\n \"daily\" : + 0.0,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + B12\",\n \"tag\" : \"VITB12\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1.8724,\n \"hasRDI\" : true,\n \"daily\" + : 31.206666666666667,\n \"unit\" : \"µg\"\n }, {\n \"label\" + : \"Vitamin D\",\n \"tag\" : \"VITD\",\n \"schemaOrgTag\" : + null,\n \"total\" : 0.532,\n \"hasRDI\" : true,\n \"daily\" + : 0.133,\n \"unit\" : \"µg\"\n }, {\n \"label\" : \"Vitamin + E\",\n \"tag\" : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 4.093800000000001,\n \"hasRDI\" : true,\n \"daily\" : 20.469,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n + \ \"tag\" : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" + : 3.456,\n \"hasRDI\" : true,\n \"daily\" : 4.32,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_489eab58ba890b3da95c37ba3cd148d4\",\n + \ \"label\" : \"Chicken Roulade\",\n \"image\" : \"https://www.edamam.com/web-img/d0d/d0d8952a22d112f8e55a832d13f1d527.jpg\",\n + \ \"source\" : \"Bon Appetit\",\n \"url\" : \"http://www.bonappetit.com/recipes/2012/08/chicken-roulade\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-roulade-489eab58ba890b3da95c37ba3cd148d4/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ \"Gluten\", \"Wheat\" ],\n \"ingredientLines\" : [ \"2 tablespoons + extra-virgin olive oil plus more for brushing\", \"4 6-8-ounce skinless, boneless + chicken breasts, pounded to 1/8-inch thickness\", \"Kosher salt and freshly + ground black pepper\", \"4 ounces feta, crumbled\", \"2 tablespoons minced + fresh oregano\", \"4 garlic cloves, minced\", \"1/2 teaspoon finely grated + lemon zest\", \"1/2 cup dry white wine\", \"1/2 cup low-salt chicken broth\", + \"2 tablespoons fresh lemon juice\", \"Lemon wedges\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 tablespoons extra-virgin olive oil plus more + for brushing\",\n \"weight\" : 27.0\n }, {\n \"text\" : + \"4 6-8-ounce skinless, boneless chicken breasts, pounded to 1/8-inch thickness\",\n + \ \"weight\" : 793.7866475000001\n }, {\n \"text\" : \"Kosher + salt and freshly ground black pepper\",\n \"weight\" : 7.126108440000001\n + \ }, {\n \"text\" : \"Kosher salt and freshly ground black pepper\",\n + \ \"weight\" : 3.5630542200000006\n }, {\n \"text\" : \"4 + ounces feta, crumbled\",\n \"weight\" : 113.3980925\n }, {\n \"text\" + : \"2 tablespoons minced fresh oregano\",\n \"weight\" : 12.0\n }, + {\n \"text\" : \"4 garlic cloves, minced\",\n \"weight\" : 12.0\n + \ }, {\n \"text\" : \"1/2 teaspoon finely grated lemon zest\",\n + \ \"weight\" : 1.0\n }, {\n \"text\" : \"1/2 cup dry white + wine\",\n \"weight\" : 73.5\n }, {\n \"text\" : \"1/2 cup + low-salt chicken broth\",\n \"weight\" : 120.0\n }, {\n \"text\" + : \"2 tablespoons fresh lemon juice\",\n \"weight\" : 28.0\n }, + {\n \"text\" : \"Lemon wedges\",\n \"weight\" : 7.0\n } + ],\n \"calories\" : 1777.0546572522005,\n \"totalWeight\" : 1194.5602621778248,\n + \ \"totalTime\" : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 1777.0546572522005,\n + \ \"unit\" : \"kcal\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 111.372281566572,\n \"unit\" + : \"g\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 38.043936478592414,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 0.6667807839000001,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.64491473456081,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 16.3518866405906,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 25.249555156940005,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 6.6394527176599984,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 7.055485530258,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 153.37233308070807,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 507.34306584500007,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 2770.2229205027256,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 875.370143509478,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 232.76891447077827,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1910.064304970426,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 11.08725826347282,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.082712421175826,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1581.5622107125998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 305.41667658439997,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 19.856,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 0.6375846313476001,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 1.6332533185960003,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 66.48386563384963,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 4.1992617853802,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 98.32928153739999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 98.32928153739999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 4.1955274444500015,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.9937096420000007,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 8.086051488988,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 99.22988542313999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 88.85273286261003,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 171.34197164088,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 190.21968239296206,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 8.416518385646668,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 26.55781087063999,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 306.74466616141615,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 169.1143552816667,\n \"unit\" : \"%\"\n + \ },\n \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 115.4259550209469,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 87.5370143509478,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.19222861769456,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 54.57326585629789,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 61.59587924151567,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 60.55141614117217,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 225.93745867322855,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 33.93518628715555,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 33.093333333333334,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 42.50564208984001,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 96.07372462329414,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 332.41932816924816,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 209.96308926901,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 24.582320384349995,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 69.92545740750002,\n \"unit\" : \"%\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.7484274105000002,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 40.43025744494,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 124.03735677892499,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 111.372281566572,\n \"hasRDI\" : true,\n \"daily\" + : 171.34197164088,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 38.043936478592414,\n \"hasRDI\" + : true,\n \"daily\" : 190.21968239296206,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 0.6667807839000001,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 49.64491473456081,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 16.3518866405906,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 25.249555156940005,\n \"hasRDI\" : true,\n \"daily\" : 8.416518385646668,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 18.610102439280006,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 6.6394527176599984,\n \"hasRDI\" + : true,\n \"daily\" : 26.55781087063999,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 7.055485530258,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 153.37233308070807,\n \"hasRDI\" : true,\n \"daily\" : 306.74466616141615,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 507.34306584500007,\n \"hasRDI\" : true,\n \"daily\" + : 169.1143552816667,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 2770.2229205027256,\n \"hasRDI\" : true,\n \"daily\" + : 115.4259550209469,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 875.370143509478,\n \"hasRDI\" : true,\n \"daily\" + : 87.5370143509478,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 232.76891447077827,\n \"hasRDI\" : true,\n \"daily\" + : 58.19222861769456,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1910.064304970426,\n \"hasRDI\" : true,\n \"daily\" + : 54.57326585629789,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11.08725826347282,\n \"hasRDI\" : true,\n \"daily\" + : 61.59587924151567,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.082712421175826,\n \"hasRDI\" : true,\n \"daily\" + : 60.55141614117217,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 1581.5622107125998,\n \"hasRDI\" : true,\n \"daily\" + : 225.93745867322855,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 305.41667658439997,\n \"hasRDI\" : true,\n + \ \"daily\" : 33.93518628715555,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 19.856,\n \"hasRDI\" : true,\n \"daily\" + : 33.093333333333334,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 0.6375846313476001,\n \"hasRDI\" : true,\n + \ \"daily\" : 42.50564208984001,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 1.6332533185960003,\n + \ \"hasRDI\" : true,\n \"daily\" : 96.07372462329414,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.48386563384963,\n + \ \"hasRDI\" : true,\n \"daily\" : 332.41932816924816,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1992617853802,\n + \ \"hasRDI\" : true,\n \"daily\" : 209.96308926901,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.32928153739999,\n \"hasRDI\" : true,\n \"daily\" : 24.582320384349995,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 98.32928153739999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.1955274444500015,\n + \ \"hasRDI\" : true,\n \"daily\" : 69.92545740750002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.9937096420000007,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.7484274105000002,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.086051488988,\n + \ \"hasRDI\" : true,\n \"daily\" : 40.43025744494,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 99.22988542313999,\n + \ \"hasRDI\" : true,\n \"daily\" : 124.03735677892499,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_72a742681559bac8ad962ef3dd1fc85c\",\n + \ \"label\" : \"Chicken Galliano\",\n \"image\" : \"https://www.edamam.com/web-img/4c1/4c1e8e1a9a7a93bb66609491f02303cd.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Galliano\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-galliano-72a742681559bac8ad962ef3dd1fc85c/chicken\",\n + \ \"yield\" : 4.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" : [ ],\n \"ingredientLines\" + : [ \"6 boneless, skinless chicken breast halves, pounded ⅛\\\" thick\", \"Kosher + salt and freshly ground black pepper, to taste\", \"12 tbsp. herbed goat cheese, + softened\", \"6 thin slices prosciutto\", \"6 tbsp. unsalted butter, chilled\", + \"10 oz. cremini mushrooms, sliced\", \"Flour, for dredging\", \"2 tbsp. canola + oil\", \"1½ cups chicken broth\", \"¼ cup Galliano liqueur\", \"1 tbsp. finely + chopped parsley\", \"4 cups cooked rice, for serving\" ],\n \"ingredients\" + : [ {\n \"text\" : \"6 boneless, skinless chicken breast halves, pounded + ⅛\\\" thick\",\n \"weight\" : 522.0\n }, {\n \"text\" : + \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 9.1925713875\n }, {\n \"text\" : \"Kosher salt and freshly ground + black pepper, to taste\",\n \"weight\" : 4.59628569375\n }, {\n + \ \"text\" : \"12 tbsp. herbed goat cheese, softened\",\n \"weight\" + : 135.0\n }, {\n \"text\" : \"6 thin slices prosciutto\",\n \"weight\" + : 45.0\n }, {\n \"text\" : \"6 tbsp. unsalted butter, chilled\",\n + \ \"weight\" : 85.19999999999999\n }, {\n \"text\" : \"10 + oz. cremini mushrooms, sliced\",\n \"weight\" : 283.49523125\n }, + {\n \"text\" : \"Flour, for dredging\",\n \"weight\" : 13.788857081249997\n + \ }, {\n \"text\" : \"2 tbsp. canola oil\",\n \"weight\" + : 28.0\n }, {\n \"text\" : \"1½ cups chicken broth\",\n \"weight\" + : 360.0\n }, {\n \"text\" : \"¼ cup Galliano liqueur\",\n \"weight\" + : 69.6\n }, {\n \"text\" : \"1 tbsp. finely chopped parsley\",\n + \ \"weight\" : 3.8\n } ],\n \"calories\" : 2417.8750677420626,\n + \ \"totalWeight\" : 1553.0301401430459,\n \"totalTime\" : 0.0,\n + \ \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 2417.8750677420626,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 148.1114049442625,\n \"unit\" : \"g\"\n + \ },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 71.05328035770795,\n \"unit\" : \"g\"\n + \ },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n \"quantity\" + : 2.9399959999999994,\n \"unit\" : \"g\"\n },\n \"FAMS\" + : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" : + 49.606006761562504,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 14.865004908094186,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 71.35935648360498,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 3.3615308092125,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 37.37098412005937,\n \"unit\" : \"g\"\n + \ },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 173.92998380132377,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 668.64,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3605.611100187657,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 330.85895967883107,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 235.53526556786798,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 3794.561331236319,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 7.796324121903302,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 9.970535109192422,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 2086.936374543875,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 1028.9469971373123,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 5.774,\n \"unit\" : \"mg\"\n + \ },\n \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n + \ \"quantity\" : 1.26747308673425,\n \"unit\" : \"mg\"\n + \ },\n \"RIBF\" : {\n \"label\" : \"Riboflavin (B2)\",\n + \ \"quantity\" : 3.2957994902062504,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 69.32496704649517,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 5.316783042859562,\n \"unit\" : \"mg\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 167.00227922156253,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 167.00227922156253,\n \"unit\" + : \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 2.17703523125,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.5064952312499997,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 10.378564208588749,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 100.0074862519125,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 120.89375338710313,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 227.86369991425,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 355.2664017885397,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 23.786452161201662,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 13.44612323685,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 347.85996760264754,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 222.88,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 150.23379584115239,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 33.08589596788311,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 58.883816391966995,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 108.4160380353234,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 43.31291178835168,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 66.47023406128281,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 298.13376779198217,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 114.32744412636804,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 9.623333333333333,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 84.49820578228334,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 193.87055824742652,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 346.6248352324759,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 265.8391521429781,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 41.75056980539063,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 36.283920520833334,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 0.6266238078124999,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 51.89282104294374,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 125.0093578148906,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 148.1114049442625,\n \"hasRDI\" : true,\n \"daily\" : 227.86369991425,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 71.05328035770795,\n \"hasRDI\" : true,\n \"daily\" + : 355.2664017885397,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.9399959999999994,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 49.606006761562504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 14.865004908094186,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 71.35935648360498,\n \"hasRDI\" : true,\n \"daily\" : 23.786452161201662,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 67.99782567439249,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 3.3615308092125,\n \"hasRDI\" + : true,\n \"daily\" : 13.44612323685,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 37.37098412005937,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 173.92998380132377,\n \"hasRDI\" : true,\n \"daily\" : 347.85996760264754,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 668.64,\n \"hasRDI\" : true,\n \"daily\" + : 222.88,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 3605.611100187657,\n \"hasRDI\" : true,\n \"daily\" + : 150.23379584115239,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 330.85895967883107,\n \"hasRDI\" : true,\n \"daily\" + : 33.08589596788311,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 235.53526556786798,\n \"hasRDI\" : true,\n \"daily\" + : 58.883816391966995,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 3794.561331236319,\n \"hasRDI\" : true,\n \"daily\" + : 108.4160380353234,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 7.796324121903302,\n \"hasRDI\" : true,\n \"daily\" + : 43.31291178835168,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9.970535109192422,\n \"hasRDI\" : true,\n \"daily\" + : 66.47023406128281,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 2086.936374543875,\n \"hasRDI\" : true,\n \"daily\" + : 298.13376779198217,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1028.9469971373123,\n \"hasRDI\" : true,\n + \ \"daily\" : 114.32744412636804,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 5.774,\n \"hasRDI\" : true,\n \"daily\" + : 9.623333333333333,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1.26747308673425,\n \"hasRDI\" : true,\n + \ \"daily\" : 84.49820578228334,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.2957994902062504,\n + \ \"hasRDI\" : true,\n \"daily\" : 193.87055824742652,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 69.32496704649517,\n + \ \"hasRDI\" : true,\n \"daily\" : 346.6248352324759,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 5.316783042859562,\n + \ \"hasRDI\" : true,\n \"daily\" : 265.8391521429781,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 167.00227922156253,\n \"hasRDI\" : true,\n \"daily\" : 41.75056980539063,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 167.00227922156253,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.17703523125,\n + \ \"hasRDI\" : true,\n \"daily\" : 36.283920520833334,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.5064952312499997,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6266238078124999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.378564208588749,\n + \ \"hasRDI\" : true,\n \"daily\" : 51.89282104294374,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 100.0074862519125,\n + \ \"hasRDI\" : true,\n \"daily\" : 125.0093578148906,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_11611704a162171b74def292122249cd\",\n + \ \"label\" : \"Chicken With Dates\",\n \"image\" : \"https://www.edamam.com/web-img/67a/67ad208d24b7f672f5bdc1482ca7f69d.jpg\",\n + \ \"source\" : \"NY Magazine\",\n \"url\" : \"http://nymag.com/restaurants/articles/recipes/chickendates.htm\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-with-dates-11611704a162171b74def292122249cd/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ ],\n \"healthLabels\" + : [ \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"2 large chickens, cut into quarters\", + \"Salt and freshly ground black pepper\", \"1/3 cup olive oil\", \"3 large + onions, peeled and chopped\", \"1 tablespoon cinnamon\", \"1/2 teaspoon nutmeg\", + \"2 tablespoon honey\", \"3 cups light chicken stock\", \"1 pound dates, halved + lengthwise\", \"Juice of 2 lemons\", \"1 teaspoon saffron\" ],\n \"ingredients\" + : [ {\n \"text\" : \"2 large chickens, cut into quarters\",\n \"weight\" + : 2300.0\n }, {\n \"text\" : \"Salt and freshly ground black pepper\",\n + \ \"weight\" : 24.979154219999998\n }, {\n \"text\" : \"Salt + and freshly ground black pepper\",\n \"weight\" : 12.489577109999999\n + \ }, {\n \"text\" : \"1/3 cup olive oil\",\n \"weight\" + : 72.0\n }, {\n \"text\" : \"3 large onions, peeled and chopped\",\n + \ \"weight\" : 450.0\n }, {\n \"text\" : \"1 tablespoon + cinnamon\",\n \"weight\" : 7.8\n }, {\n \"text\" : \"1/2 + teaspoon nutmeg\",\n \"weight\" : 1.1\n }, {\n \"text\" + : \"2 tablespoon honey\",\n \"weight\" : 42.0\n }, {\n \"text\" + : \"3 cups light chicken stock\",\n \"weight\" : 720.0\n }, {\n + \ \"text\" : \"1 pound dates, halved lengthwise\",\n \"weight\" + : 453.59237\n }, {\n \"text\" : \"Juice of 2 lemons\",\n \"weight\" + : 116.0\n }, {\n \"text\" : \"1 teaspoon saffron\",\n \"weight\" + : 0.7\n } ],\n \"calories\" : 7497.0107034461,\n \"totalWeight\" + : 4193.841808339277,\n \"totalTime\" : 125.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 7497.0107034461,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 429.442628768786,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 112.1144069133712,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.231,\n \"unit\" : \"g\"\n },\n + \ \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n \"quantity\" + : 200.4634889748429,\n \"unit\" : \"g\"\n },\n \"FAPU\" + : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" : + 83.72816897955781,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 468.19628435084496,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 48.93045179883,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 369.631331632504,\n \"unit\" : \"g\"\n },\n + \ \"SUGAR.added\" : {\n \"label\" : \"Sugars, added\",\n \"quantity\" + : 34.4904,\n \"unit\" : \"g\"\n },\n \"PROCNT\" : {\n + \ \"label\" : \"Protein\",\n \"quantity\" : 462.25915895872896,\n + \ \"unit\" : \"g\"\n },\n \"CHOLE\" : {\n \"label\" + : \"Cholesterol\",\n \"quantity\" : 1746.6,\n \"unit\" : + \"mg\"\n },\n \"NA\" : {\n \"label\" : \"Sodium\",\n + \ \"quantity\" : 9710.464854365364,\n \"unit\" : \"mg\"\n + \ },\n \"CA\" : {\n \"label\" : \"Calcium\",\n \"quantity\" + : 842.4433100923267,\n \"unit\" : \"mg\"\n },\n \"MG\" + : {\n \"label\" : \"Magnesium\",\n \"quantity\" : 818.9396552703927,\n + \ \"unit\" : \"mg\"\n },\n \"K\" : {\n \"label\" + : \"Potassium\",\n \"quantity\" : 9316.618163890244,\n \"unit\" + : \"mg\"\n },\n \"FE\" : {\n \"label\" : \"Iron\",\n + \ \"quantity\" : 30.547696809437614,\n \"unit\" : \"mg\"\n + \ },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n \"quantity\" + : 34.401612256838284,\n \"unit\" : \"mg\"\n },\n \"P\" + : {\n \"label\" : \"Phosphorus\",\n \"quantity\" : 4036.1998012338,\n + \ \"unit\" : \"mg\"\n },\n \"VITA_RAE\" : {\n \"label\" + : \"Vitamin A\",\n \"quantity\" : 987.8976517196999,\n \"unit\" + : \"µg\"\n },\n \"VITC\" : {\n \"label\" : \"Vitamin + C\",\n \"quantity\" : 134.125,\n \"unit\" : \"mg\"\n },\n + \ \"THIA\" : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" + : 2.1320119282788004,\n \"unit\" : \"mg\"\n },\n \"RIBF\" + : {\n \"label\" : \"Riboflavin (B2)\",\n \"quantity\" : + 3.8329906607980004,\n \"unit\" : \"mg\"\n },\n \"NIA\" + : {\n \"label\" : \"Niacin (B3)\",\n \"quantity\" : 176.09061802336728,\n + \ \"unit\" : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" + : \"Vitamin B6\",\n \"quantity\" : 10.319023670690102,\n \"unit\" + : \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 345.2170836087,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 345.2170836087,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 7.13,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.6000000000000005,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 18.022851601943998,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 116.21003171906999,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 374.850535172305,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 660.6809673365939,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 560.572034566856,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 156.0654281169483,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 195.72180719532,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 924.5183179174579,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 582.2,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 404.6027022652235,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 84.24433100923267,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 204.73491381759817,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 266.1890903968641,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 169.70942671909788,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 229.34408171225522,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 576.5999716048285,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 109.76640574663332,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 223.54166666666666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 142.13412855192004,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 225.47003887047063,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 880.4530901168364,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 515.9511835345052,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 86.304270902175,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 118.83333333333333,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.1500000000000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 90.11425800971999,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 145.2625396488375,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 429.442628768786,\n \"hasRDI\" : true,\n \"daily\" : 660.6809673365939,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 112.1144069133712,\n \"hasRDI\" : true,\n \"daily\" + : 560.572034566856,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" : + \"transFatContent\",\n \"total\" : 2.231,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 200.4634889748429,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 83.72816897955781,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 468.19628435084496,\n \"hasRDI\" : true,\n \"daily\" : 156.0654281169483,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 419.26583255201496,\n \"hasRDI\" : + false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" + : \"fiberContent\",\n \"total\" : 48.93045179883,\n \"hasRDI\" + : true,\n \"daily\" : 195.72180719532,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 369.631331632504,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 34.4904,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 462.25915895872896,\n \"hasRDI\" : true,\n \"daily\" : 924.5183179174579,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1746.6,\n \"hasRDI\" : true,\n \"daily\" + : 582.2,\n \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n + \ \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 9710.464854365364,\n \"hasRDI\" : true,\n \"daily\" + : 404.6027022652235,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 842.4433100923267,\n \"hasRDI\" : true,\n \"daily\" + : 84.24433100923267,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 818.9396552703927,\n \"hasRDI\" : true,\n \"daily\" + : 204.73491381759817,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 9316.618163890244,\n \"hasRDI\" : true,\n \"daily\" + : 266.1890903968641,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 30.547696809437614,\n \"hasRDI\" : true,\n \"daily\" + : 169.70942671909788,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 34.401612256838284,\n \"hasRDI\" : true,\n \"daily\" + : 229.34408171225522,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4036.1998012338,\n \"hasRDI\" : true,\n \"daily\" + : 576.5999716048285,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 987.8976517196999,\n \"hasRDI\" : true,\n + \ \"daily\" : 109.76640574663332,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 134.125,\n \"hasRDI\" : true,\n \"daily\" + : 223.54166666666666,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.1320119282788004,\n \"hasRDI\" : true,\n + \ \"daily\" : 142.13412855192004,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.8329906607980004,\n + \ \"hasRDI\" : true,\n \"daily\" : 225.47003887047063,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 176.09061802336728,\n + \ \"hasRDI\" : true,\n \"daily\" : 880.4530901168364,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 10.319023670690102,\n + \ \"hasRDI\" : true,\n \"daily\" : 515.9511835345052,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 345.2170836087,\n \"hasRDI\" : true,\n \"daily\" : 86.304270902175,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 345.2170836087,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 7.13,\n + \ \"hasRDI\" : true,\n \"daily\" : 118.83333333333333,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.6000000000000005,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.1500000000000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 18.022851601943998,\n + \ \"hasRDI\" : true,\n \"daily\" : 90.11425800971999,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 116.21003171906999,\n + \ \"hasRDI\" : true,\n \"daily\" : 145.2625396488375,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_150fc321f7c4bc1a5d602baf33e63b4d\",\n + \ \"label\" : \"The Neglected Chicken\",\n \"image\" : \"https://www.edamam.com/web-img/8bb/8bb29482b8b9f939204564d1eea3c31a.jpg\",\n + \ \"source\" : \"Food52\",\n \"url\" : \"http://www.food52.com/recipes/3306_the_neglected_chicken\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/the-neglected-chicken-150fc321f7c4bc1a5d602baf33e63b4d/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\", \"Alcohol-Free\" + ],\n \"cautions\" : [ ],\n \"ingredientLines\" : [ \"1 3-lb free-range + chicken\", \"1 tablespoon fresh herbs (I like tarragon or herbes de Provence) + or 1 scant teaspoon dried\", \"2 teaspoons sea salt\", \"3 tablespoons butter\", + \"1/2 lemon\" ],\n \"ingredients\" : [ {\n \"text\" : \"1 3-lb + free-range chicken\",\n \"weight\" : 1360.77711\n }, {\n \"text\" + : \"1 tablespoon fresh herbs (I like tarragon or herbes de Provence) or 1 + scant teaspoon dried\",\n \"weight\" : 3.8\n }, {\n \"text\" + : \"2 teaspoons sea salt\",\n \"weight\" : 9.708333333333334\n }, + {\n \"text\" : \"3 tablespoons butter\",\n \"weight\" : 42.599999999999994\n + \ }, {\n \"text\" : \"1/2 lemon\",\n \"weight\" : 29.0\n + \ } ],\n \"calories\" : 2304.6761348199993,\n \"totalWeight\" + : 1443.10387928996,\n \"totalTime\" : 0.0,\n \"totalNutrients\" + : {\n \"ENERC_KCAL\" : {\n \"label\" : \"Energy\",\n \"quantity\" + : 2304.6761348199993,\n \"unit\" : \"kcal\"\n },\n \"FAT\" + : {\n \"label\" : \"Fat\",\n \"quantity\" : 174.02434228087998,\n + \ \"unit\" : \"g\"\n },\n \"FASAT\" : {\n \"label\" + : \"Saturated\",\n \"quantity\" : 61.78074953987999,\n \"unit\" + : \"g\"\n },\n \"FATRN\" : {\n \"label\" : \"Trans\",\n + \ \"quantity\" : 2.2939965817559997,\n \"unit\" : \"g\"\n + \ },\n \"FAMS\" : {\n \"label\" : \"Monounsaturated\",\n + \ \"quantity\" : 66.70984033152,\n \"unit\" : \"g\"\n },\n + \ \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n \"quantity\" + : 31.214948444039997,\n \"unit\" : \"g\"\n },\n \"CHOCDF\" + : {\n \"label\" : \"Carbs\",\n \"quantity\" : 2.9688999999999997,\n + \ \"unit\" : \"g\"\n },\n \"FIBTG\" : {\n \"label\" + : \"Fiber\",\n \"quantity\" : 0.9373999999999999,\n \"unit\" + : \"g\"\n },\n \"SUGAR\" : {\n \"label\" : \"Sugars\",\n + \ \"quantity\" : 0.78286,\n \"unit\" : \"g\"\n },\n + \ \"PROCNT\" : {\n \"label\" : \"Protein\",\n \"quantity\" + : 172.9050488728,\n \"unit\" : \"g\"\n },\n \"CHOLE\" + : {\n \"label\" : \"Cholesterol\",\n \"quantity\" : 785.5863261,\n + \ \"unit\" : \"mg\"\n },\n \"NA\" : {\n \"label\" + : \"Sodium\",\n \"quantity\" : 3339.8011457628004,\n \"unit\" + : \"mg\"\n },\n \"CA\" : {\n \"label\" : \"Calcium\",\n + \ \"quantity\" : 126.45655245759045,\n \"unit\" : \"mg\"\n + \ },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n \"quantity\" + : 190.2069546528996,\n \"unit\" : \"mg\"\n },\n \"K\" + : {\n \"label\" : \"Potassium\",\n \"quantity\" : 1820.7208833151967,\n + \ \"unit\" : \"mg\"\n },\n \"FE\" : {\n \"label\" + : \"Iron\",\n \"quantity\" : 8.76893425185687,\n \"unit\" + : \"mg\"\n },\n \"ZN\" : {\n \"label\" : \"Zinc\",\n + \ \"quantity\" : 12.22512926516996,\n \"unit\" : \"mg\"\n + \ },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n \"quantity\" + : 1377.3007991559998,\n \"unit\" : \"mg\"\n },\n \"VITA_RAE\" + : {\n \"label\" : \"Vitamin A\",\n \"quantity\" : 687.0566582679999,\n + \ \"unit\" : \"µg\"\n },\n \"VITC\" : {\n \"label\" + : \"Vitamin C\",\n \"quantity\" : 35.2292549568,\n \"unit\" + : \"mg\"\n },\n \"THIA\" : {\n \"label\" : \"Thiamin + (B1)\",\n \"quantity\" : 0.5721950608799999,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 1.13440212176,\n \"unit\" : \"mg\"\n + \ },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 63.028372850748006,\n \"unit\" : \"mg\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 3.2665475218,\n \"unit\" : \"mg\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 65.76370608799999,\n \"unit\" : \"µg\"\n + \ },\n \"FOLFD\" : {\n \"label\" : \"Folate (food)\",\n + \ \"quantity\" : 65.76370608799999,\n \"unit\" : \"µg\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 2.94093814788,\n \"unit\" : \"µg\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 2.4896568695999997,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 3.8363053043999997,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 79.181926522,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 115.23380674099997,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 267.7297573552,\n \"unit\" : + \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 308.90374769939996,\n \"unit\" : \"%\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 0.9896333333333333,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 3.7495999999999996,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 345.8100977456,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 261.8621087,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 139.15838107345002,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 12.645655245759045,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 47.5517386632249,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 52.02059666614848,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 48.71630139920483,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 81.50086176779973,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 196.7572570222857,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 76.33962869644444,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 58.715424928,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 38.146337392,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 66.72953657411765,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 315.14186425374004,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 163.32737609,\n \"unit\" : \"%\"\n },\n + \ \"FOLDFE\" : {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"quantity\" : 16.440926521999998,\n \"unit\" : \"%\"\n + \ },\n \"VITB12\" : {\n \"label\" : \"Vitamin B12\",\n + \ \"quantity\" : 49.015635798,\n \"unit\" : \"%\"\n },\n + \ \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 0.6224142173999999,\n \"unit\" : \"%\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 19.181526522,\n + \ \"unit\" : \"%\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 98.97740815249999,\n \"unit\" + : \"%\"\n }\n },\n \"digest\" : [ {\n \"label\" : + \"Fat\",\n \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n + \ \"total\" : 174.02434228087998,\n \"hasRDI\" : true,\n \"daily\" + : 267.7297573552,\n \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" + : \"Saturated\",\n \"tag\" : \"FASAT\",\n \"schemaOrgTag\" + : \"saturatedFatContent\",\n \"total\" : 61.78074953987999,\n \"hasRDI\" + : true,\n \"daily\" : 308.90374769939996,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n + \ \"schemaOrgTag\" : \"transFatContent\",\n \"total\" : 2.2939965817559997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Monounsaturated\",\n \"tag\" + : \"FAMS\",\n \"schemaOrgTag\" : null,\n \"total\" : 66.70984033152,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 31.214948444039997,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 2.9688999999999997,\n \"hasRDI\" : true,\n \"daily\" : 0.9896333333333333,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 2.0315,\n \"hasRDI\" : false,\n \"daily\" + : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" : \"Fiber\",\n + \ \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : \"fiberContent\",\n + \ \"total\" : 0.9373999999999999,\n \"hasRDI\" : true,\n + \ \"daily\" : 3.7495999999999996,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n \"schemaOrgTag\" + : \"sugarContent\",\n \"total\" : 0.78286,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Sugars, added\",\n \"tag\" : \"SUGAR.added\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 0.0,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n } + ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" : \"PROCNT\",\n + \ \"schemaOrgTag\" : \"proteinContent\",\n \"total\" : 172.9050488728,\n + \ \"hasRDI\" : true,\n \"daily\" : 345.8100977456,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n \"tag\" + : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n \"total\" + : 785.5863261,\n \"hasRDI\" : true,\n \"daily\" : 261.8621087,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Sodium\",\n \"tag\" + : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n \"total\" + : 3339.8011457628004,\n \"hasRDI\" : true,\n \"daily\" : 139.15838107345002,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Calcium\",\n + \ \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n \"total\" + : 126.45655245759045,\n \"hasRDI\" : true,\n \"daily\" : 12.645655245759045,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Magnesium\",\n + \ \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n \"total\" + : 190.2069546528996,\n \"hasRDI\" : true,\n \"daily\" : 47.5517386632249,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Potassium\",\n + \ \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n \"total\" + : 1820.7208833151967,\n \"hasRDI\" : true,\n \"daily\" : 52.02059666614848,\n + \ \"unit\" : \"mg\"\n }, {\n \"label\" : \"Iron\",\n \"tag\" + : \"FE\",\n \"schemaOrgTag\" : null,\n \"total\" : 8.76893425185687,\n + \ \"hasRDI\" : true,\n \"daily\" : 48.71630139920483,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Zinc\",\n \"tag\" : \"ZN\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 12.22512926516996,\n + \ \"hasRDI\" : true,\n \"daily\" : 81.50086176779973,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Phosphorus\",\n \"tag\" + : \"P\",\n \"schemaOrgTag\" : null,\n \"total\" : 1377.3007991559998,\n + \ \"hasRDI\" : true,\n \"daily\" : 196.7572570222857,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin A\",\n \"tag\" + : \"VITA_RAE\",\n \"schemaOrgTag\" : null,\n \"total\" : 687.0566582679999,\n + \ \"hasRDI\" : true,\n \"daily\" : 76.33962869644444,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin C\",\n \"tag\" + : \"VITC\",\n \"schemaOrgTag\" : null,\n \"total\" : 35.2292549568,\n + \ \"hasRDI\" : true,\n \"daily\" : 58.715424928,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" + : \"THIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 0.5721950608799999,\n + \ \"hasRDI\" : true,\n \"daily\" : 38.146337392,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" + : \"RIBF\",\n \"schemaOrgTag\" : null,\n \"total\" : 1.13440212176,\n + \ \"hasRDI\" : true,\n \"daily\" : 66.72953657411765,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 63.028372850748006,\n + \ \"hasRDI\" : true,\n \"daily\" : 315.14186425374004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.2665475218,\n + \ \"hasRDI\" : true,\n \"daily\" : 163.32737609,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 65.76370608799999,\n \"hasRDI\" : true,\n \"daily\" : 16.440926521999998,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 65.76370608799999,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.94093814788,\n + \ \"hasRDI\" : true,\n \"daily\" : 49.015635798,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 2.4896568695999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 0.6224142173999999,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 3.8363053043999997,\n + \ \"hasRDI\" : true,\n \"daily\" : 19.181526522,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 79.181926522,\n + \ \"hasRDI\" : true,\n \"daily\" : 98.97740815249999,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n }, {\n \"recipe\" : {\n \"uri\" : \"http://www.edamam.com/ontologies/edamam.owl#recipe_49a9caf82601ea4e2df87ad9e40755ba\",\n + \ \"label\" : \"Chicken Vesuvio\",\n \"image\" : \"https://www.edamam.com/web-img/9c3/9c37c9b77041396987a30596eca08e52.jpg\",\n + \ \"source\" : \"Saveur\",\n \"url\" : \"http://www.saveur.com/article/Recipes/Chicken-Vesuvio\",\n + \ \"shareAs\" : \"http://www.edamam.com/recipe/chicken-vesuvio-49a9caf82601ea4e2df87ad9e40755ba/chicken\",\n + \ \"yield\" : 8.0,\n \"dietLabels\" : [ \"Low-Carb\" ],\n \"healthLabels\" + : [ \"Sugar-Conscious\", \"Peanut-Free\", \"Tree-Nut-Free\" ],\n \"cautions\" + : [ ],\n \"ingredientLines\" : [ \"1 cup olive oil\", \"10 cloves garlic\", + \"4 large russet potatoes, peeled and quartered lengthwise\", \"2 3–4-lb. + whole chickens, each cut into 8 pieces\", \"1 ½ cups white wine\", \"â\N\x93 + cup finely chopped parsley\", \"1 tbsp. dried oregano\", \"Kosher salt and + freshly ground black pepper, to taste\", \"1 ½ cups chicken stock\", \"1 + cup frozen peas, thawed\" ],\n \"ingredients\" : [ {\n \"text\" + : \"1 cup olive oil\",\n \"weight\" : 216.0\n }, {\n \"text\" + : \"10 cloves garlic\",\n \"weight\" : 30.0\n }, {\n \"text\" + : \"4 large russet potatoes, peeled and quartered lengthwise\",\n \"weight\" + : 1476.0\n }, {\n \"text\" : \"2 3–4-lb. whole chickens, each + cut into 8 pieces\",\n \"weight\" : 3175.1465900000003\n }, {\n + \ \"text\" : \"1 ½ cups white wine\",\n \"weight\" : 147.0\n + \ }, {\n \"text\" : \"â\N\x93 cup finely chopped parsley\",\n \"weight\" + : 60.0\n }, {\n \"text\" : \"1 tbsp. dried oregano\",\n \"weight\" + : 6.0\n }, {\n \"text\" : \"Kosher salt and freshly ground black + pepper, to taste\",\n \"weight\" : 32.90487954\n }, {\n \"text\" + : \"Kosher salt and freshly ground black pepper, to taste\",\n \"weight\" + : 16.45243977\n }, {\n \"text\" : \"1 ½ cups chicken stock\",\n + \ \"weight\" : 240.0\n }, {\n \"text\" : \"1 cup frozen + peas, thawed\",\n \"weight\" : 134.0\n } ],\n \"calories\" + : 8151.1599384027,\n \"totalWeight\" : 5528.111498852398,\n \"totalTime\" + : 0.0,\n \"totalNutrients\" : {\n \"ENERC_KCAL\" : {\n \"label\" + : \"Energy\",\n \"quantity\" : 8151.1599384027,\n \"unit\" + : \"kcal\"\n },\n \"FAT\" : {\n \"label\" : \"Fat\",\n + \ \"quantity\" : 547.174361525222,\n \"unit\" : \"g\"\n },\n + \ \"FASAT\" : {\n \"label\" : \"Saturated\",\n \"quantity\" + : 124.55305422131839,\n \"unit\" : \"g\"\n },\n \"FATRN\" + : {\n \"label\" : \"Trans\",\n \"quantity\" : 2.094326690764,\n + \ \"unit\" : \"g\"\n },\n \"FAMS\" : {\n \"label\" + : \"Monounsaturated\",\n \"quantity\" : 294.1389636367803,\n \"unit\" + : \"g\"\n },\n \"FAPU\" : {\n \"label\" : \"Polyunsaturated\",\n + \ \"quantity\" : 94.24441505166459,\n \"unit\" : \"g\"\n + \ },\n \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 325.630535232915,\n \"unit\" : \"g\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 34.54046726181,\n + \ \"unit\" : \"g\"\n },\n \"SUGAR\" : {\n \"label\" + : \"Sugars\",\n \"quantity\" : 22.215095614528,\n \"unit\" + : \"g\"\n },\n \"PROCNT\" : {\n \"label\" : \"Protein\",\n + \ \"quantity\" : 452.264049195303,\n \"unit\" : \"g\"\n },\n + \ \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n \"quantity\" + : 1626.5247609,\n \"unit\" : \"mg\"\n },\n \"NA\" : + {\n \"label\" : \"Sodium\",\n \"quantity\" : 12791.533031749539,\n + \ \"unit\" : \"mg\"\n },\n \"CA\" : {\n \"label\" + : \"Calcium\",\n \"quantity\" : 793.8582656928754,\n \"unit\" + : \"mg\"\n },\n \"MG\" : {\n \"label\" : \"Magnesium\",\n + \ \"quantity\" : 912.5487329375242,\n \"unit\" : \"mg\"\n + \ },\n \"K\" : {\n \"label\" : \"Potassium\",\n \"quantity\" + : 11548.322319537892,\n \"unit\" : \"mg\"\n },\n \"FE\" + : {\n \"label\" : \"Iron\",\n \"quantity\" : 44.412520180438904,\n + \ \"unit\" : \"mg\"\n },\n \"ZN\" : {\n \"label\" + : \"Zinc\",\n \"quantity\" : 35.5505023260654,\n \"unit\" + : \"mg\"\n },\n \"P\" : {\n \"label\" : \"Phosphorus\",\n + \ \"quantity\" : 4302.3913862006,\n \"unit\" : \"mg\"\n },\n + \ \"VITA_RAE\" : {\n \"label\" : \"Vitamin A\",\n \"quantity\" + : 1287.7930280299,\n \"unit\" : \"µg\"\n },\n \"VITC\" + : {\n \"label\" : \"Vitamin C\",\n \"quantity\" : 232.57559489919998,\n + \ \"unit\" : \"mg\"\n },\n \"THIA\" : {\n \"label\" + : \"Thiamin (B1)\",\n \"quantity\" : 3.0841784436716004,\n \"unit\" + : \"mg\"\n },\n \"RIBF\" : {\n \"label\" : \"Riboflavin + (B2)\",\n \"quantity\" : 3.5911440090260007,\n \"unit\" + : \"mg\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin + (B3)\",\n \"quantity\" : 169.85040070498312,\n \"unit\" + : \"mg\"\n },\n \"VITB6A\" : {\n \"label\" : \"Vitamin + B6\",\n \"quantity\" : 13.515185483930697,\n \"unit\" : + \"mg\"\n },\n \"FOLDFE\" : {\n \"label\" : \"Folate + equivalent (total)\",\n \"quantity\" : 529.7928956329,\n \"unit\" + : \"µg\"\n },\n \"FOLFD\" : {\n \"label\" : \"Folate + (food)\",\n \"quantity\" : 529.7928956329,\n \"unit\" : + \"µg\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 6.69320901172,\n \"unit\" : \"µg\"\n + \ },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n \"quantity\" + : 4.318199362400001,\n \"unit\" : \"µg\"\n },\n \"TOCPHA\" + : {\n \"label\" : \"Vitamin E\",\n \"quantity\" : 39.46040441720801,\n + \ \"unit\" : \"mg\"\n },\n \"VITK1\" : {\n \"label\" + : \"Vitamin K\",\n \"quantity\" : 1276.18513912149,\n \"unit\" + : \"µg\"\n }\n },\n \"totalDaily\" : {\n \"ENERC_KCAL\" + : {\n \"label\" : \"Energy\",\n \"quantity\" : 407.55799692013505,\n + \ \"unit\" : \"%\"\n },\n \"FAT\" : {\n \"label\" + : \"Fat\",\n \"quantity\" : 841.8067100388032,\n \"unit\" + : \"%\"\n },\n \"FASAT\" : {\n \"label\" : \"Saturated\",\n + \ \"quantity\" : 622.765271106592,\n \"unit\" : \"%\"\n },\n + \ \"CHOCDF\" : {\n \"label\" : \"Carbs\",\n \"quantity\" + : 108.543511744305,\n \"unit\" : \"%\"\n },\n \"FIBTG\" + : {\n \"label\" : \"Fiber\",\n \"quantity\" : 138.16186904724,\n + \ \"unit\" : \"%\"\n },\n \"PROCNT\" : {\n \"label\" + : \"Protein\",\n \"quantity\" : 904.528098390606,\n \"unit\" + : \"%\"\n },\n \"CHOLE\" : {\n \"label\" : \"Cholesterol\",\n + \ \"quantity\" : 542.1749203,\n \"unit\" : \"%\"\n },\n + \ \"NA\" : {\n \"label\" : \"Sodium\",\n \"quantity\" + : 532.9805429895641,\n \"unit\" : \"%\"\n },\n \"CA\" + : {\n \"label\" : \"Calcium\",\n \"quantity\" : 79.38582656928754,\n + \ \"unit\" : \"%\"\n },\n \"MG\" : {\n \"label\" + : \"Magnesium\",\n \"quantity\" : 228.13718323438104,\n \"unit\" + : \"%\"\n },\n \"K\" : {\n \"label\" : \"Potassium\",\n + \ \"quantity\" : 329.9520662725112,\n \"unit\" : \"%\"\n + \ },\n \"FE\" : {\n \"label\" : \"Iron\",\n \"quantity\" + : 246.7362232246606,\n \"unit\" : \"%\"\n },\n \"ZN\" + : {\n \"label\" : \"Zinc\",\n \"quantity\" : 237.003348840436,\n + \ \"unit\" : \"%\"\n },\n \"P\" : {\n \"label\" + : \"Phosphorus\",\n \"quantity\" : 614.6273408858,\n \"unit\" + : \"%\"\n },\n \"VITA_RAE\" : {\n \"label\" : \"Vitamin + A\",\n \"quantity\" : 143.08811422554442,\n \"unit\" : \"%\"\n + \ },\n \"VITC\" : {\n \"label\" : \"Vitamin C\",\n \"quantity\" + : 387.6259914986666,\n \"unit\" : \"%\"\n },\n \"THIA\" + : {\n \"label\" : \"Thiamin (B1)\",\n \"quantity\" : 205.61189624477336,\n + \ \"unit\" : \"%\"\n },\n \"RIBF\" : {\n \"label\" + : \"Riboflavin (B2)\",\n \"quantity\" : 211.24376523682358,\n \"unit\" + : \"%\"\n },\n \"NIA\" : {\n \"label\" : \"Niacin (B3)\",\n + \ \"quantity\" : 849.2520035249156,\n \"unit\" : \"%\"\n + \ },\n \"VITB6A\" : {\n \"label\" : \"Vitamin B6\",\n + \ \"quantity\" : 675.7592741965349,\n \"unit\" : \"%\"\n + \ },\n \"FOLDFE\" : {\n \"label\" : \"Folate equivalent + (total)\",\n \"quantity\" : 132.448223908225,\n \"unit\" + : \"%\"\n },\n \"VITB12\" : {\n \"label\" : \"Vitamin + B12\",\n \"quantity\" : 111.55348352866666,\n \"unit\" : + \"%\"\n },\n \"VITD\" : {\n \"label\" : \"Vitamin D\",\n + \ \"quantity\" : 1.0795498406000001,\n \"unit\" : \"%\"\n + \ },\n \"TOCPHA\" : {\n \"label\" : \"Vitamin E\",\n + \ \"quantity\" : 197.30202208604004,\n \"unit\" : \"%\"\n + \ },\n \"VITK1\" : {\n \"label\" : \"Vitamin K\",\n + \ \"quantity\" : 1595.2314239018626,\n \"unit\" : \"%\"\n + \ }\n },\n \"digest\" : [ {\n \"label\" : \"Fat\",\n + \ \"tag\" : \"FAT\",\n \"schemaOrgTag\" : \"fatContent\",\n \"total\" + : 547.174361525222,\n \"hasRDI\" : true,\n \"daily\" : 841.8067100388032,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Saturated\",\n + \ \"tag\" : \"FASAT\",\n \"schemaOrgTag\" : \"saturatedFatContent\",\n + \ \"total\" : 124.55305422131839,\n \"hasRDI\" : true,\n + \ \"daily\" : 622.765271106592,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Trans\",\n \"tag\" : \"FATRN\",\n \"schemaOrgTag\" + : \"transFatContent\",\n \"total\" : 2.094326690764,\n \"hasRDI\" + : false,\n \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, + {\n \"label\" : \"Monounsaturated\",\n \"tag\" : \"FAMS\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 294.1389636367803,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Polyunsaturated\",\n \"tag\" + : \"FAPU\",\n \"schemaOrgTag\" : null,\n \"total\" : 94.24441505166459,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Carbs\",\n \"tag\" + : \"CHOCDF\",\n \"schemaOrgTag\" : \"carbohydrateContent\",\n \"total\" + : 325.630535232915,\n \"hasRDI\" : true,\n \"daily\" : 108.543511744305,\n + \ \"unit\" : \"g\",\n \"sub\" : [ {\n \"label\" : \"Carbs + (net)\",\n \"tag\" : \"CHOCDF.net\",\n \"schemaOrgTag\" + : null,\n \"total\" : 291.090067971105,\n \"hasRDI\" : false,\n + \ \"daily\" : 0.0,\n \"unit\" : \"g\"\n }, {\n \"label\" + : \"Fiber\",\n \"tag\" : \"FIBTG\",\n \"schemaOrgTag\" : + \"fiberContent\",\n \"total\" : 34.54046726181,\n \"hasRDI\" + : true,\n \"daily\" : 138.16186904724,\n \"unit\" : \"g\"\n + \ }, {\n \"label\" : \"Sugars\",\n \"tag\" : \"SUGAR\",\n + \ \"schemaOrgTag\" : \"sugarContent\",\n \"total\" : 22.215095614528,\n + \ \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n }, {\n \"label\" : \"Sugars, added\",\n \"tag\" + : \"SUGAR.added\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"g\"\n } ]\n }, {\n \"label\" : \"Protein\",\n \"tag\" + : \"PROCNT\",\n \"schemaOrgTag\" : \"proteinContent\",\n \"total\" + : 452.264049195303,\n \"hasRDI\" : true,\n \"daily\" : 904.528098390606,\n + \ \"unit\" : \"g\"\n }, {\n \"label\" : \"Cholesterol\",\n + \ \"tag\" : \"CHOLE\",\n \"schemaOrgTag\" : \"cholesterolContent\",\n + \ \"total\" : 1626.5247609,\n \"hasRDI\" : true,\n \"daily\" + : 542.1749203,\n \"unit\" : \"mg\"\n }, {\n \"label\" : + \"Sodium\",\n \"tag\" : \"NA\",\n \"schemaOrgTag\" : \"sodiumContent\",\n + \ \"total\" : 12791.533031749539,\n \"hasRDI\" : true,\n \"daily\" + : 532.9805429895641,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Calcium\",\n \"tag\" : \"CA\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 793.8582656928754,\n \"hasRDI\" : true,\n \"daily\" + : 79.38582656928754,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Magnesium\",\n \"tag\" : \"MG\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 912.5487329375242,\n \"hasRDI\" : true,\n \"daily\" + : 228.13718323438104,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Potassium\",\n \"tag\" : \"K\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 11548.322319537892,\n \"hasRDI\" : true,\n \"daily\" + : 329.9520662725112,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Iron\",\n \"tag\" : \"FE\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 44.412520180438904,\n \"hasRDI\" : true,\n \"daily\" + : 246.7362232246606,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Zinc\",\n \"tag\" : \"ZN\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 35.5505023260654,\n \"hasRDI\" : true,\n \"daily\" + : 237.003348840436,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Phosphorus\",\n \"tag\" : \"P\",\n \"schemaOrgTag\" : null,\n + \ \"total\" : 4302.3913862006,\n \"hasRDI\" : true,\n \"daily\" + : 614.6273408858,\n \"unit\" : \"mg\"\n }, {\n \"label\" + : \"Vitamin A\",\n \"tag\" : \"VITA_RAE\",\n \"schemaOrgTag\" + : null,\n \"total\" : 1287.7930280299,\n \"hasRDI\" : true,\n + \ \"daily\" : 143.08811422554442,\n \"unit\" : \"µg\"\n }, + {\n \"label\" : \"Vitamin C\",\n \"tag\" : \"VITC\",\n \"schemaOrgTag\" + : null,\n \"total\" : 232.57559489919998,\n \"hasRDI\" : true,\n + \ \"daily\" : 387.6259914986666,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Thiamin (B1)\",\n \"tag\" : \"THIA\",\n \"schemaOrgTag\" + : null,\n \"total\" : 3.0841784436716004,\n \"hasRDI\" : true,\n + \ \"daily\" : 205.61189624477336,\n \"unit\" : \"mg\"\n }, + {\n \"label\" : \"Riboflavin (B2)\",\n \"tag\" : \"RIBF\",\n + \ \"schemaOrgTag\" : null,\n \"total\" : 3.5911440090260007,\n + \ \"hasRDI\" : true,\n \"daily\" : 211.24376523682358,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Niacin (B3)\",\n \"tag\" + : \"NIA\",\n \"schemaOrgTag\" : null,\n \"total\" : 169.85040070498312,\n + \ \"hasRDI\" : true,\n \"daily\" : 849.2520035249156,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin B6\",\n \"tag\" + : \"VITB6A\",\n \"schemaOrgTag\" : null,\n \"total\" : 13.515185483930697,\n + \ \"hasRDI\" : true,\n \"daily\" : 675.7592741965349,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Folate equivalent (total)\",\n + \ \"tag\" : \"FOLDFE\",\n \"schemaOrgTag\" : null,\n \"total\" + : 529.7928956329,\n \"hasRDI\" : true,\n \"daily\" : 132.448223908225,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folate (food)\",\n + \ \"tag\" : \"FOLFD\",\n \"schemaOrgTag\" : null,\n \"total\" + : 529.7928956329,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n + \ \"unit\" : \"µg\"\n }, {\n \"label\" : \"Folic acid\",\n + \ \"tag\" : \"FOLAC\",\n \"schemaOrgTag\" : null,\n \"total\" + : 0.0,\n \"hasRDI\" : false,\n \"daily\" : 0.0,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin B12\",\n \"tag\" + : \"VITB12\",\n \"schemaOrgTag\" : null,\n \"total\" : 6.69320901172,\n + \ \"hasRDI\" : true,\n \"daily\" : 111.55348352866666,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin D\",\n \"tag\" + : \"VITD\",\n \"schemaOrgTag\" : null,\n \"total\" : 4.318199362400001,\n + \ \"hasRDI\" : true,\n \"daily\" : 1.0795498406000001,\n \"unit\" + : \"µg\"\n }, {\n \"label\" : \"Vitamin E\",\n \"tag\" + : \"TOCPHA\",\n \"schemaOrgTag\" : null,\n \"total\" : 39.46040441720801,\n + \ \"hasRDI\" : true,\n \"daily\" : 197.30202208604004,\n \"unit\" + : \"mg\"\n }, {\n \"label\" : \"Vitamin K\",\n \"tag\" + : \"VITK1\",\n \"schemaOrgTag\" : null,\n \"total\" : 1276.18513912149,\n + \ \"hasRDI\" : true,\n \"daily\" : 1595.2314239018626,\n \"unit\" + : \"µg\"\n } ]\n },\n \"bookmarked\" : false,\n \"bought\" : + false\n } ]\n}" + http_version: + recorded_at: Sun, 06 May 2018 18:00:55 GMT recorded_with: VCR 4.0.0 From e07cebed7ff2c83e168590179970af45069fdc9d Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 16:43:45 -0700 Subject: [PATCH 18/21] Updated test for recipe initialization responding to url --- app/assets/stylesheets/application.css | 1 - app/views/recipes/show.html.erb | 6 ++++++ config/initializers/array_paginate.rb | 1 + test/lib/recipe_test.rb | 5 ++++- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 config/initializers/array_paginate.rb diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 938446407..d8f393657 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -116,7 +116,6 @@ nav ul { .pagination a { border: 1px solid #ddd; - padding: 8px 16px; display: inline; } diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 232f33cf1..89090f88b 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -57,6 +57,11 @@

Health Labels

+ <% if @recipe.health_labels.empty? %> +

+ None +

+ <% else %>
    <% @recipe.health_labels.each do |label| %>
  • @@ -64,6 +69,7 @@
  • <% end %>
+ <% end %>
diff --git a/config/initializers/array_paginate.rb b/config/initializers/array_paginate.rb new file mode 100644 index 000000000..dfed3fe9e --- /dev/null +++ b/config/initializers/array_paginate.rb @@ -0,0 +1 @@ +require 'will_paginate/array' diff --git a/test/lib/recipe_test.rb b/test/lib/recipe_test.rb index 912b0fb98..837a0a9b9 100644 --- a/test/lib/recipe_test.rb +++ b/test/lib/recipe_test.rb @@ -20,7 +20,9 @@ ], "healthLabels" => [ "Sugar-Conscious", - "Peanut-Free"] + "Peanut-Free" + ], + "url" => "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/" } @new_recipe = Recipe.new(recipe) @@ -49,5 +51,6 @@ "Sugar-Conscious", "Peanut-Free" ] + @new_recipe.url.must_equal "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/" end end From 86b215b1091ca9a0003e83e37bea6735717bc64d Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 18:58:26 -0700 Subject: [PATCH 19/21] Revised method find recipe --- lib/edamam_api_wrapper.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/lib/edamam_api_wrapper.rb b/lib/edamam_api_wrapper.rb index 5bd8f2814..086e33580 100644 --- a/lib/edamam_api_wrapper.rb +++ b/lib/edamam_api_wrapper.rb @@ -24,6 +24,31 @@ def self.list_recipes(search) end def self.find_recipe(id) + + + @recipe_list.find {|recipe| recipe.id == id } end + + def self.find_recipe(id) + recipe_id_list = [] + + @recipe_list.each do |recipe| + recipe_id_list << recipe.id + end + + if !recipe_id_list.include?(id) + encoded_uri = URI.encode("#{URL}?r=http://www.edamam.com/ontologies/edamam.owl#recipe_#{id}&app_id=#{APP_ID}&app_key=#{APP_KEY}") + + response = HTTParty.get(encoded_uri) + + return Recipe.new(response[0]) + end + + @recipe_list.each do |recipe| + if recipe.id == id + return recipe + end + end + end end From 7655a02ceb6480db2ed116c7c4cf27dcad9da768 Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 19:39:30 -0700 Subject: [PATCH 20/21] Updated code in find recipe to pass controller tests and consider invalid ids --- lib/edamam_api_wrapper.rb | 21 +- test/cassettes/recipes.yml | 1302 +++++++++++++++++++ test/controllers/recipes_controller_test.rb | 1 + 3 files changed, 1310 insertions(+), 14 deletions(-) diff --git a/lib/edamam_api_wrapper.rb b/lib/edamam_api_wrapper.rb index 086e33580..b53a6b8c2 100644 --- a/lib/edamam_api_wrapper.rb +++ b/lib/edamam_api_wrapper.rb @@ -24,25 +24,18 @@ def self.list_recipes(search) end def self.find_recipe(id) + searched_recipe = @recipe_list.find {|recipe| recipe.id == id } - - - @recipe_list.find {|recipe| recipe.id == id } - end - - def self.find_recipe(id) - recipe_id_list = [] - - @recipe_list.each do |recipe| - recipe_id_list << recipe.id - end - - if !recipe_id_list.include?(id) + if searched_recipe == nil encoded_uri = URI.encode("#{URL}?r=http://www.edamam.com/ontologies/edamam.owl#recipe_#{id}&app_id=#{APP_ID}&app_key=#{APP_KEY}") response = HTTParty.get(encoded_uri) + if !response.empty? + return Recipe.new(response[0]) + else + return nil + end - return Recipe.new(response[0]) end @recipe_list.each do |recipe| diff --git a/test/cassettes/recipes.yml b/test/cassettes/recipes.yml index fad6b0916..ea9bdeca3 100644 --- a/test/cassettes/recipes.yml +++ b/test/cassettes/recipes.yml @@ -28043,4 +28043,1306 @@ http_interactions: } http_version: recorded_at: Sun, 06 May 2018 18:00:58 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&r=http://www.edamam.com/ontologies/edamam.owl%23recipe_not_valid_recipe + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Mon, 07 May 2018 01:58:46 GMT + Content-Type: + - application/json;charset=UTF-8 + Content-Length: + - '2' + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + body: + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 07 May 2018 01:58:47 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&r=http://www.edamam.com/ontologies/edamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Mon, 07 May 2018 02:04:34 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + [{ + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2", + "label" : "Teriyaki Chicken", + "image" : "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg", + "source" : "David Lebovitz", + "url" : "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/", + "shareAs" : "http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/-", + "yield" : 6.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup (125ml) mirin", "1/2 cup (125ml) soy sauce", "One 2-inch (5cm) piece of fresh ginger, peeled and grated", "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)" ], + "ingredients" : [ { + "text" : "1/2 cup (125ml) mirin", + "weight" : 122.99850757795392 + }, { + "text" : "1/2 cup (125ml) soy sauce", + "weight" : 134.72774670265568 + }, { + "text" : "One 2-inch (5cm) piece of fresh ginger, peeled and grated", + "weight" : 15.0 + }, { + "text" : "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)", + "weight" : 907.18474 + } ], + "calories" : 2253.101981306866, + "totalWeight" : 1179.9109942806097, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 2253.101981306866, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 151.56383347020517, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 41.169838892692944, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.7711070290000002, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 63.10028137309835, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 31.82952890962799, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.72546514133862, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3778219736212456, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.7939109868106228, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 161.72175016748596, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 889.0410452000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 8139.824735928436, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 116.51301359077408, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 276.82169621464243, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2529.722194651041, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 8.335407066766463, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.950414243828696, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1660.4080117810859, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 208.65249020000002, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.75, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.7104550166118764, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.542818655059382, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 45.028415542590324, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.3713281129199304, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.6245453880000005, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.9071847400000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.944087954, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.065879540000005, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 112.6550990653433, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 233.17512841570027, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 205.8491944634647, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 5.908488380446207, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.511287894484982, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 323.44350033497193, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 296.3470150666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 339.1593639970182, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 11.651301359077408, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 69.20542405366061, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 72.27777699002974, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 46.307817037591455, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 86.33609495885797, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 237.20114454015513, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 23.183610022222226, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 1.25, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 47.3636677741251, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 90.75403853290483, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 225.1420777129516, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 168.56640564599653, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 11.93185668459295, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 93.74242313333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.22679618500000004, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 9.72043977, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 23.832349425000007, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 151.56383347020517, + "hasRDI" : true, + "daily" : 233.17512841570027, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 41.169838892692944, + "hasRDI" : true, + "daily" : 205.8491944634647, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.7711070290000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 63.10028137309835, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 31.82952890962799, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 17.72546514133862, + "hasRDI" : true, + "daily" : 5.908488380446207, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 16.347643167717376, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3778219736212456, + "hasRDI" : true, + "daily" : 5.511287894484982, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.7939109868106228, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 161.72175016748596, + "hasRDI" : true, + "daily" : 323.44350033497193, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 889.0410452000001, + "hasRDI" : true, + "daily" : 296.3470150666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 8139.824735928436, + "hasRDI" : true, + "daily" : 339.1593639970182, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 116.51301359077408, + "hasRDI" : true, + "daily" : 11.651301359077408, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 276.82169621464243, + "hasRDI" : true, + "daily" : 69.20542405366061, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2529.722194651041, + "hasRDI" : true, + "daily" : 72.27777699002974, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 8.335407066766463, + "hasRDI" : true, + "daily" : 46.307817037591455, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.950414243828696, + "hasRDI" : true, + "daily" : 86.33609495885797, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1660.4080117810859, + "hasRDI" : true, + "daily" : 237.20114454015513, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 208.65249020000002, + "hasRDI" : true, + "daily" : 23.183610022222226, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.75, + "hasRDI" : true, + "daily" : 1.25, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.7104550166118764, + "hasRDI" : true, + "daily" : 47.3636677741251, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.542818655059382, + "hasRDI" : true, + "daily" : 90.75403853290483, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 45.028415542590324, + "hasRDI" : true, + "daily" : 225.1420777129516, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.3713281129199304, + "hasRDI" : true, + "daily" : 168.56640564599653, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : true, + "daily" : 11.93185668459295, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.6245453880000005, + "hasRDI" : true, + "daily" : 93.74242313333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.9071847400000002, + "hasRDI" : true, + "daily" : 0.22679618500000004, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.944087954, + "hasRDI" : true, + "daily" : 9.72043977, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 19.065879540000005, + "hasRDI" : true, + "daily" : 23.832349425000007, + "unit" : "µg" + } ] + }] + http_version: + recorded_at: Mon, 07 May 2018 02:04:34 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&r=http://www.edamam.com/ontologies/edamam.owl%23recipe_7bf4a371c6884d809682a72808da7dc2 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Mon, 07 May 2018 02:16:37 GMT + Content-Type: + - application/json;charset=UTF-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Set-Cookie: + - route=272f54237f8ce06ebc267f46f9de4658; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-150-7-77/10.150.7.77 + Vary: + - Accept-Encoding + body: + encoding: UTF-8 + string: |- + [{ + "uri" : "http://www.edamam.com/ontologies/edamam.owl#recipe_7bf4a371c6884d809682a72808da7dc2", + "label" : "Teriyaki Chicken", + "image" : "https://www.edamam.com/web-img/262/262b4353ca25074178ead2a07cdf7dc1.jpg", + "source" : "David Lebovitz", + "url" : "http://www.davidlebovitz.com/2012/12/chicken-teriyaki-recipe-japanese-farm-food/", + "shareAs" : "http://www.edamam.com/recipe/teriyaki-chicken-7bf4a371c6884d809682a72808da7dc2/-", + "yield" : 6.0, + "dietLabels" : [ "Low-Carb" ], + "healthLabels" : [ "Sugar-Conscious", "Peanut-Free", "Tree-Nut-Free", "Alcohol-Free" ], + "cautions" : [ ], + "ingredientLines" : [ "1/2 cup (125ml) mirin", "1/2 cup (125ml) soy sauce", "One 2-inch (5cm) piece of fresh ginger, peeled and grated", "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)" ], + "ingredients" : [ { + "text" : "1/2 cup (125ml) mirin", + "weight" : 122.99850757795392 + }, { + "text" : "1/2 cup (125ml) soy sauce", + "weight" : 134.72774670265568 + }, { + "text" : "One 2-inch (5cm) piece of fresh ginger, peeled and grated", + "weight" : 15.0 + }, { + "text" : "2-pounds (900g) boneless chicken thighs (4-8 thighs, depending on size)", + "weight" : 907.18474 + } ], + "calories" : 2253.101981306866, + "totalWeight" : 1179.9109942806097, + "totalTime" : 0.0, + "totalNutrients" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 2253.101981306866, + "unit" : "kcal" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 151.56383347020517, + "unit" : "g" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 41.169838892692944, + "unit" : "g" + }, + "FATRN" : { + "label" : "Trans", + "quantity" : 0.7711070290000002, + "unit" : "g" + }, + "FAMS" : { + "label" : "Monounsaturated", + "quantity" : 63.10028137309835, + "unit" : "g" + }, + "FAPU" : { + "label" : "Polyunsaturated", + "quantity" : 31.82952890962799, + "unit" : "g" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 17.72546514133862, + "unit" : "g" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 1.3778219736212456, + "unit" : "g" + }, + "SUGAR" : { + "label" : "Sugars", + "quantity" : 0.7939109868106228, + "unit" : "g" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 161.72175016748596, + "unit" : "g" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 889.0410452000001, + "unit" : "mg" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 8139.824735928436, + "unit" : "mg" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 116.51301359077408, + "unit" : "mg" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 276.82169621464243, + "unit" : "mg" + }, + "K" : { + "label" : "Potassium", + "quantity" : 2529.722194651041, + "unit" : "mg" + }, + "FE" : { + "label" : "Iron", + "quantity" : 8.335407066766463, + "unit" : "mg" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 12.950414243828696, + "unit" : "mg" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 1660.4080117810859, + "unit" : "mg" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 208.65249020000002, + "unit" : "µg" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 0.75, + "unit" : "mg" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 0.7104550166118764, + "unit" : "mg" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 1.542818655059382, + "unit" : "mg" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 45.028415542590324, + "unit" : "mg" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 3.3713281129199304, + "unit" : "mg" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "FOLFD" : { + "label" : "Folate (food)", + "quantity" : 47.7274267383718, + "unit" : "µg" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 5.6245453880000005, + "unit" : "µg" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.9071847400000002, + "unit" : "µg" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 1.944087954, + "unit" : "mg" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 19.065879540000005, + "unit" : "µg" + } + }, + "totalDaily" : { + "ENERC_KCAL" : { + "label" : "Energy", + "quantity" : 112.6550990653433, + "unit" : "%" + }, + "FAT" : { + "label" : "Fat", + "quantity" : 233.17512841570027, + "unit" : "%" + }, + "FASAT" : { + "label" : "Saturated", + "quantity" : 205.8491944634647, + "unit" : "%" + }, + "CHOCDF" : { + "label" : "Carbs", + "quantity" : 5.908488380446207, + "unit" : "%" + }, + "FIBTG" : { + "label" : "Fiber", + "quantity" : 5.511287894484982, + "unit" : "%" + }, + "PROCNT" : { + "label" : "Protein", + "quantity" : 323.44350033497193, + "unit" : "%" + }, + "CHOLE" : { + "label" : "Cholesterol", + "quantity" : 296.3470150666667, + "unit" : "%" + }, + "NA" : { + "label" : "Sodium", + "quantity" : 339.1593639970182, + "unit" : "%" + }, + "CA" : { + "label" : "Calcium", + "quantity" : 11.651301359077408, + "unit" : "%" + }, + "MG" : { + "label" : "Magnesium", + "quantity" : 69.20542405366061, + "unit" : "%" + }, + "K" : { + "label" : "Potassium", + "quantity" : 72.27777699002974, + "unit" : "%" + }, + "FE" : { + "label" : "Iron", + "quantity" : 46.307817037591455, + "unit" : "%" + }, + "ZN" : { + "label" : "Zinc", + "quantity" : 86.33609495885797, + "unit" : "%" + }, + "P" : { + "label" : "Phosphorus", + "quantity" : 237.20114454015513, + "unit" : "%" + }, + "VITA_RAE" : { + "label" : "Vitamin A", + "quantity" : 23.183610022222226, + "unit" : "%" + }, + "VITC" : { + "label" : "Vitamin C", + "quantity" : 1.25, + "unit" : "%" + }, + "THIA" : { + "label" : "Thiamin (B1)", + "quantity" : 47.3636677741251, + "unit" : "%" + }, + "RIBF" : { + "label" : "Riboflavin (B2)", + "quantity" : 90.75403853290483, + "unit" : "%" + }, + "NIA" : { + "label" : "Niacin (B3)", + "quantity" : 225.1420777129516, + "unit" : "%" + }, + "VITB6A" : { + "label" : "Vitamin B6", + "quantity" : 168.56640564599653, + "unit" : "%" + }, + "FOLDFE" : { + "label" : "Folate equivalent (total)", + "quantity" : 11.93185668459295, + "unit" : "%" + }, + "VITB12" : { + "label" : "Vitamin B12", + "quantity" : 93.74242313333333, + "unit" : "%" + }, + "VITD" : { + "label" : "Vitamin D", + "quantity" : 0.22679618500000004, + "unit" : "%" + }, + "TOCPHA" : { + "label" : "Vitamin E", + "quantity" : 9.72043977, + "unit" : "%" + }, + "VITK1" : { + "label" : "Vitamin K", + "quantity" : 23.832349425000007, + "unit" : "%" + } + }, + "digest" : [ { + "label" : "Fat", + "tag" : "FAT", + "schemaOrgTag" : "fatContent", + "total" : 151.56383347020517, + "hasRDI" : true, + "daily" : 233.17512841570027, + "unit" : "g", + "sub" : [ { + "label" : "Saturated", + "tag" : "FASAT", + "schemaOrgTag" : "saturatedFatContent", + "total" : 41.169838892692944, + "hasRDI" : true, + "daily" : 205.8491944634647, + "unit" : "g" + }, { + "label" : "Trans", + "tag" : "FATRN", + "schemaOrgTag" : "transFatContent", + "total" : 0.7711070290000002, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Monounsaturated", + "tag" : "FAMS", + "schemaOrgTag" : null, + "total" : 63.10028137309835, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Polyunsaturated", + "tag" : "FAPU", + "schemaOrgTag" : null, + "total" : 31.82952890962799, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Carbs", + "tag" : "CHOCDF", + "schemaOrgTag" : "carbohydrateContent", + "total" : 17.72546514133862, + "hasRDI" : true, + "daily" : 5.908488380446207, + "unit" : "g", + "sub" : [ { + "label" : "Carbs (net)", + "tag" : "CHOCDF.net", + "schemaOrgTag" : null, + "total" : 16.347643167717376, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Fiber", + "tag" : "FIBTG", + "schemaOrgTag" : "fiberContent", + "total" : 1.3778219736212456, + "hasRDI" : true, + "daily" : 5.511287894484982, + "unit" : "g" + }, { + "label" : "Sugars", + "tag" : "SUGAR", + "schemaOrgTag" : "sugarContent", + "total" : 0.7939109868106228, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + }, { + "label" : "Sugars, added", + "tag" : "SUGAR.added", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "g" + } ] + }, { + "label" : "Protein", + "tag" : "PROCNT", + "schemaOrgTag" : "proteinContent", + "total" : 161.72175016748596, + "hasRDI" : true, + "daily" : 323.44350033497193, + "unit" : "g" + }, { + "label" : "Cholesterol", + "tag" : "CHOLE", + "schemaOrgTag" : "cholesterolContent", + "total" : 889.0410452000001, + "hasRDI" : true, + "daily" : 296.3470150666667, + "unit" : "mg" + }, { + "label" : "Sodium", + "tag" : "NA", + "schemaOrgTag" : "sodiumContent", + "total" : 8139.824735928436, + "hasRDI" : true, + "daily" : 339.1593639970182, + "unit" : "mg" + }, { + "label" : "Calcium", + "tag" : "CA", + "schemaOrgTag" : null, + "total" : 116.51301359077408, + "hasRDI" : true, + "daily" : 11.651301359077408, + "unit" : "mg" + }, { + "label" : "Magnesium", + "tag" : "MG", + "schemaOrgTag" : null, + "total" : 276.82169621464243, + "hasRDI" : true, + "daily" : 69.20542405366061, + "unit" : "mg" + }, { + "label" : "Potassium", + "tag" : "K", + "schemaOrgTag" : null, + "total" : 2529.722194651041, + "hasRDI" : true, + "daily" : 72.27777699002974, + "unit" : "mg" + }, { + "label" : "Iron", + "tag" : "FE", + "schemaOrgTag" : null, + "total" : 8.335407066766463, + "hasRDI" : true, + "daily" : 46.307817037591455, + "unit" : "mg" + }, { + "label" : "Zinc", + "tag" : "ZN", + "schemaOrgTag" : null, + "total" : 12.950414243828696, + "hasRDI" : true, + "daily" : 86.33609495885797, + "unit" : "mg" + }, { + "label" : "Phosphorus", + "tag" : "P", + "schemaOrgTag" : null, + "total" : 1660.4080117810859, + "hasRDI" : true, + "daily" : 237.20114454015513, + "unit" : "mg" + }, { + "label" : "Vitamin A", + "tag" : "VITA_RAE", + "schemaOrgTag" : null, + "total" : 208.65249020000002, + "hasRDI" : true, + "daily" : 23.183610022222226, + "unit" : "µg" + }, { + "label" : "Vitamin C", + "tag" : "VITC", + "schemaOrgTag" : null, + "total" : 0.75, + "hasRDI" : true, + "daily" : 1.25, + "unit" : "mg" + }, { + "label" : "Thiamin (B1)", + "tag" : "THIA", + "schemaOrgTag" : null, + "total" : 0.7104550166118764, + "hasRDI" : true, + "daily" : 47.3636677741251, + "unit" : "mg" + }, { + "label" : "Riboflavin (B2)", + "tag" : "RIBF", + "schemaOrgTag" : null, + "total" : 1.542818655059382, + "hasRDI" : true, + "daily" : 90.75403853290483, + "unit" : "mg" + }, { + "label" : "Niacin (B3)", + "tag" : "NIA", + "schemaOrgTag" : null, + "total" : 45.028415542590324, + "hasRDI" : true, + "daily" : 225.1420777129516, + "unit" : "mg" + }, { + "label" : "Vitamin B6", + "tag" : "VITB6A", + "schemaOrgTag" : null, + "total" : 3.3713281129199304, + "hasRDI" : true, + "daily" : 168.56640564599653, + "unit" : "mg" + }, { + "label" : "Folate equivalent (total)", + "tag" : "FOLDFE", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : true, + "daily" : 11.93185668459295, + "unit" : "µg" + }, { + "label" : "Folate (food)", + "tag" : "FOLFD", + "schemaOrgTag" : null, + "total" : 47.7274267383718, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Folic acid", + "tag" : "FOLAC", + "schemaOrgTag" : null, + "total" : 0.0, + "hasRDI" : false, + "daily" : 0.0, + "unit" : "µg" + }, { + "label" : "Vitamin B12", + "tag" : "VITB12", + "schemaOrgTag" : null, + "total" : 5.6245453880000005, + "hasRDI" : true, + "daily" : 93.74242313333333, + "unit" : "µg" + }, { + "label" : "Vitamin D", + "tag" : "VITD", + "schemaOrgTag" : null, + "total" : 0.9071847400000002, + "hasRDI" : true, + "daily" : 0.22679618500000004, + "unit" : "µg" + }, { + "label" : "Vitamin E", + "tag" : "TOCPHA", + "schemaOrgTag" : null, + "total" : 1.944087954, + "hasRDI" : true, + "daily" : 9.72043977, + "unit" : "mg" + }, { + "label" : "Vitamin K", + "tag" : "VITK1", + "schemaOrgTag" : null, + "total" : 19.065879540000005, + "hasRDI" : true, + "daily" : 23.832349425000007, + "unit" : "µg" + } ] + }] + http_version: + recorded_at: Mon, 07 May 2018 02:16:37 GMT +- request: + method: get + uri: https://api.edamam.com/search?app_id=&app_key=&r=http://www.edamam.com/ontologies/edamam.owl%23recipe_not_valid_recipe + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Server: + - ngx_openresty + Date: + - Mon, 07 May 2018 02:38:38 GMT + Content-Type: + - application/json;charset=UTF-8 + Content-Length: + - '2' + Connection: + - keep-alive + Set-Cookie: + - route=ee37ea0cbec446fe0dc609c7b4a6323b; Path=/ + Cache-Control: + - private + Expires: + - Thu, 01 Jan 1970 00:00:00 UTC + X-Served-By: + - ip-10-149-22-246/10.149.22.246 + body: + encoding: UTF-8 + string: "[]" + http_version: + recorded_at: Mon, 07 May 2018 02:38:38 GMT recorded_with: VCR 4.0.0 diff --git a/test/controllers/recipes_controller_test.rb b/test/controllers/recipes_controller_test.rb index 52a638d9d..47e896c74 100644 --- a/test/controllers/recipes_controller_test.rb +++ b/test/controllers/recipes_controller_test.rb @@ -35,6 +35,7 @@ recipe_id = "not_valid_recipe" EdamamApiWrapper.find_recipe(recipe_id) + end must_respond_with :redirect end From 542e9941cc0421fb686deefc976aa65808d6682c Mon Sep 17 00:00:00 2001 From: Jackie Date: Sun, 6 May 2018 19:50:26 -0700 Subject: [PATCH 21/21] Added targets to link to open new tab --- app/views/recipes/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/recipes/show.html.erb b/app/views/recipes/show.html.erb index 89090f88b..407c7ab80 100644 --- a/app/views/recipes/show.html.erb +++ b/app/views/recipes/show.html.erb @@ -16,7 +16,7 @@ <% end %> -

<%= link_to @recipe.name, @recipe.url %>

+

<%= link_to @recipe.name, @recipe.url, target: :_blank %>

By: <%= @recipe.contributor %>